:root {
  --green: #33b86c;
  --green-dark: #2aa05d;
  --blue: #29b6f6;
  --blue-dark: #1a9edb;
  --orange: #ffb400;
  --orange-dark: #e6a200;
  --yellow: #ffb400;
  --red: #ff3300;
  --nav: #111111;
  --footer: #222222;
  --footer-bottom: #111111;
  --topbar: #eaebef;
  --grey: #f6f6f6;
  --text: #444444;
  --heading: #101010;
  --muted: #777777;
  --border: #d7d7d7;
  --white: #ffffff;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: 0.25s linear; }
a:hover { color: var(--orange); }
h1, h2, h3, h4, h5 { color: var(--heading); font-weight: 700; margin: 0 0 12px; line-height: 1.3; }
p { margin: 0 0 14px; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font-family: inherit; }

.container {
  width: min(1170px, calc(100% - 32px));
  margin: 0 auto;
}

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 12px 22px;
  border-radius: 3px;
  color: var(--white) !important;
  font-size: 13px;
  text-align: center;
}
.btn-yellow, .btn-orange { background: var(--orange); }
.btn-yellow:hover, .btn-orange:hover { background: var(--orange-dark); }
.btn-green { background: var(--green); }
.btn-green:hover { background: var(--green-dark); }
.btn-blue { background: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); }
.btn-dark { background: #111; color: #fff !important; }
.btn-dark:hover { background: #000; }

.header-top {
  background: var(--topbar);
  padding: 10px 0 8px;
  font-size: 13px;
  color: #333;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.welcome { margin: 0; color: #666; }
.top-links { display: flex; gap: 18px; }
.top-links a { color: #333; }
.top-links a:hover { color: var(--green); }
.top-links .fa { margin-right: 4px; }

.header-main { padding: 14px 0; background: #fff; }
.header-main-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo { width: 420px; flex-shrink: 0; }
.logo img { height: 110px; width: auto; max-width: 100%; object-fit: contain; object-position: left center; }

.search-form {
  flex: 1;
  display: flex;
  align-items: stretch;
  height: 48px;
  max-width: 680px;
  margin-left: auto;
  border: 2px solid var(--border);
  border-right: none;
  background: #fff;
  overflow: hidden;
}
.search-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 180px;
  max-width: 210px;
  margin: 0;
  border: 0;
  border-right: 1px solid var(--border);
  border-radius: 0;
  padding: 0 36px 0 16px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  color: #444;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23444444' d='M1.4 0.6L6 5.2L10.6 0.6L12 2L6 8L0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px 7px;
  outline: none;
  cursor: pointer;
}
.search-form select::-ms-expand { display: none; }
.search-form input {
  flex: 1;
  min-width: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0 16px;
  text-transform: uppercase;
  font-size: 13px;
  color: #777;
  background: #fff;
  outline: none;
}
.search-btn {
  flex: 0 0 52px;
  width: 52px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-btn:hover { background: var(--green-dark); }

.cart-link {
  position: relative;
  color: #444;
  font-size: 28px;
  margin-left: 12px;
  padding-top: 6px;
}
.cart-link:hover { color: var(--green); }
.cart-badge {
  position: absolute;
  top: -2px;
  right: -14px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-holder { background: var(--nav); }
.nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 22px;
  padding: 12px 0;
}
#nav > ul { display: flex; }
#nav > ul > li > a {
  display: block;
  color: #fff;
  padding: 20px 14px 22px;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 14px;
}
#nav > ul > li.active > a,
#nav > ul > li > a:hover {
  background: var(--orange);
  color: #fff;
}
#nav .has-drop { position: relative; }
#nav .drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #111;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
#nav .has-drop:hover .drop { display: block; }
#nav .drop a {
  display: block;
  color: #fff;
  padding: 12px 18px;
  border-top: 1px solid #2a2a2a;
}
#nav .drop a:hover { background: var(--orange); color: #fff; }
.btn-submit-nav {
  background: var(--blue);
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
  padding: 22px 28px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.btn-submit-nav:hover { background: var(--blue-dark); color: #fff !important; }

.hero {
  position: relative;
  min-height: 78vh;
  background: url("../images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.hero-inner, .page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 40px 16px;
}
.hero h1 {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 1px;
  max-width: 900px;
  margin: 0 auto 18px;
  text-transform: uppercase;
}
.scroll-hint {
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 12px;
}

.page-hero {
  position: relative;
  min-height: 300px;
  background: url("../images/hero-inner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
  margin: 0;
}

.section { padding: 70px 0; }
.section-grey { background: var(--grey); }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2 { font-size: 32px; }
.section-head p { color: var(--muted); max-width: 640px; margin: 0 auto; }

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.coupon-card {
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
}
.coupon-card .thumb { display: block; height: 180px; overflow: hidden; }
.coupon-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.coupon-card .body { padding: 16px 16px 20px; text-align: center; }
.coupon-card h3 { font-size: 15px; min-height: 44px; }
.coupon-card h3 a { color: var(--heading); }
.coupon-card h3 a:hover { color: var(--green); }
.store-name { color: var(--muted); font-size: 13px; margin-bottom: 12px; }

.store-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  background: var(--grey);
  padding: 28px;
}
.store-logo-tile {
  background: #fff;
  border: 1px solid #ececec;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.store-logo-tile img { max-height: 70px; width: auto; margin: 0 auto; }
.center { text-align: center; margin-top: 28px; }

.cat-overlays {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-overlay {
  min-height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.cat-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}
.cat-inner { position: relative; z-index: 1; padding: 24px; }
.cat-inner h3, .cat-photo h3 { color: #fff; margin: 10px 0 4px; }
.cat-inner p, .cat-photo p { color: #eee; }
.cat-icon {
  width: 72px;
  height: 72px;
  background: #fff;
  color: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.cta-band {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 48px 16px;
}
.cta-band h2 { color: #fff; font-size: 30px; margin-bottom: 18px; }

.offer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.offer-tabs a {
  padding: 8px 16px;
  border: 1px solid #ddd;
  color: #444;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
}
.offer-tabs a.active,
.offer-tabs a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.deal-card {
  background: #fff;
  border: 1px solid #ececec;
  padding: 22px 20px 18px;
  text-align: center;
}
.deal-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.store-logo {
  width: 92px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}
.discount-box {
  border: 1px solid #d4d4d4;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 13px;
  color: #333;
  min-width: 88px;
}
.deal-card h3 { font-size: 16px; text-align: left; min-height: 52px; }
.deal-card h3 a { color: var(--heading); }
.see-all { display: block; text-align: left; color: var(--green); font-size: 13px; margin-bottom: 16px; }
.deal-card .btn { width: 100%; }
.expires { color: var(--red); font-size: 13px; margin: 12px 0 0; }

.app-band {
  background: var(--green);
  color: #fff;
  padding: 50px 0;
}
.app-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.app-band h2 { color: #fff; font-size: 32px; }
.app-band p { color: #f3fff8; }
.app-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.app-badge {
  background: #111;
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.2;
}
.app-badge strong { display: block; font-size: 14px; }
.app-phones { max-height: 320px; margin: 0 auto; object-fit: contain; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card { background: #fff; border: 1px solid #eee; }
.blog-card .thumb { position: relative; display: block; height: 220px; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 10px;
  z-index: 1;
}
.blog-card .body { padding: 18px; }
.blog-card h3 { font-size: 18px; }
.blog-card h3 a { color: var(--heading); }

.newsletter-band { background: var(--green); padding: 28px 0; }
.newsletter-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.newsletter-inner h3 { color: #fff; margin: 0; }
.newsletter-form { display: flex; max-width: 520px; flex: 1; }
.newsletter-form input { flex: 1; border: 0; height: 46px; padding: 0 16px; }
.newsletter-form .btn { border-radius: 0; }

#footer { background: var(--footer); color: #bdbdbd; padding-top: 56px; }
#footer h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1.1fr;
  gap: 30px;
  padding-bottom: 40px;
}
.footer-links a, .footer-deals a { color: #bdbdbd; }
.footer-links li, .footer-deals li { margin-bottom: 8px; }
.footer-deals span { display: block; font-size: 12px; color: #888; }
.footer-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-tags a {
  border: 1px solid #444;
  color: #ccc;
  padding: 4px 10px;
  font-size: 12px;
}
.footer-tags a:hover { border-color: var(--orange); color: var(--orange); }
.follow-title { margin-top: 22px; }
.social { display: flex; gap: 8px; }
.social a {
  width: 36px;
  height: 36px;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social a:hover { background: var(--orange); color: #fff; }
.footer-bottom { background: var(--footer-bottom); padding: 14px 0; font-size: 13px; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-bottom p { margin: 0; color: #aaa; }
.footer-bottom ul { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom a { color: var(--orange); }

.two-col {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 36px;
  align-items: start;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.kicker {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.feature-box { background: var(--grey); padding: 24px; }
.feature-box .fa { color: var(--green); font-size: 28px; margin-bottom: 10px; display: block; }

.long-copy h2 { margin-top: 28px; }
.long-copy h3 { margin-top: 22px; font-size: 20px; }
.long-copy ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.long-copy li { margin-bottom: 6px; }

.cat-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card { background: #fff; overflow: hidden; }
.cat-photo {
  min-height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.cat-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.cat-photo > * { position: relative; z-index: 1; }
.cat-bar {
  display: block;
  background: var(--orange);
  color: #fff !important;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}

.alpha-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0 28px;
}
.alpha-nav a {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  background: #fff;
  font-weight: 600;
}
.alpha-nav a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.alpha-head {
  background: #eee;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.alpha-head span { color: var(--orange); font-weight: 600; }
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.store-tile {
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #333;
  min-height: 110px;
  justify-content: center;
}
.store-tile img { max-height: 56px; }
.alpha-block { scroll-margin-top: 20px; }

.sidebar { display: grid; gap: 22px; }
.widget { background: #fff; border: 1px solid #ececec; padding: 18px; }
.widget h3 { font-size: 16px; margin-bottom: 14px; }
.side-search { display: flex; }
.side-search input { flex: 1; border: 1px solid #ddd; height: 42px; padding: 0 10px; }
.side-search .btn { border-radius: 0; }
.widget-cats a {
  display: flex;
  justify-content: space-between;
  color: #444;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.widget-cats span { color: var(--muted); }
.side-store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.side-store-grid img { height: 70px; width: 100%; object-fit: cover; }
.side-news { display: flex; gap: 10px; margin-bottom: 12px; }
.side-news img { width: 70px; height: 70px; object-fit: cover; }
.side-news h4 { font-size: 13px; margin: 0 0 4px; }
.side-news h4 a { color: #333; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
  border: 1px solid #ddd;
  color: #555;
  padding: 4px 10px;
  font-size: 12px;
}
.promo-box {
  background: #1b1b1b;
  color: #fff;
  padding: 24px;
  text-align: center;
}
.promo-box h3 { color: #fff; }
.promo-box .fa { font-size: 32px; color: var(--orange); margin-bottom: 8px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-weight: 600; font-size: 13px; color: #333; }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="file"],
select,
textarea {
  width: 100%;
  border: 1px solid #c6c6c6;
  background: #f7f7f7;
  padding: 10px 12px;
  margin-top: 6px;
  margin-bottom: 4px;
  outline: none;
}
.search-form select,
.search-form input[type="text"] {
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.search-form select {
  flex: 0 0 180px;
  width: 180px;
  max-width: 210px;
  padding: 0 36px 0 16px;
  border-right: 1px solid var(--border);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23444444' d='M1.4 0.6L6 5.2L10.6 0.6L12 2L6 8L0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px 7px;
}
.search-form input[type="text"] {
  flex: 1 1 auto;
  width: 0;
  min-width: 0;
  padding: 0 16px;
}
.side-search input[type="text"] {
  margin: 0;
  height: 42px;
  padding: 0 10px;
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.is-invalid { border-color: var(--red) !important; }
.field-error { color: var(--red); font-size: 12px; display: block; margin-bottom: 8px; }
.form-success {
  background: #e8f8ee;
  border: 1px solid var(--green);
  color: #1b5e20;
  padding: 12px 14px;
  margin-top: 12px;
}

.contact-points { display: grid; gap: 18px; }
.contact-point { display: flex; gap: 14px; align-items: flex-start; }
.contact-point .icon {
  width: 54px;
  height: 54px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.coupon-hero-img { width: 100%; max-height: 420px; object-fit: cover; margin-bottom: 18px; }
.coupon-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.coupon-meta img { width: 80px; height: 44px; object-fit: contain; }
.share { display: flex; gap: 8px; margin-top: 16px; }
.share a {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}
.comment { display: flex; gap: 14px; margin-bottom: 18px; }
.comment img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.comment h4 span { color: var(--muted); font-weight: 400; font-size: 13px; }

.pager {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}
.pager a {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.pager a.active, .pager a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.cart-table { width: 100%; border-collapse: collapse; background: #fff; }
.cart-table th, .cart-table td {
  border-bottom: 1px solid #eee;
  padding: 14px 10px;
  text-align: left;
  vertical-align: middle;
}
.cart-table td img { width: 80px; height: 56px; object-fit: cover; float: left; margin-right: 12px; }
.cart-table input[type="number"] { width: 70px; background: #fff; }
.checkout-box {
  background: #e8f8ee;
  border: 1px solid var(--green);
  padding: 28px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #1b5e20;
}
.link-btn {
  background: none;
  border: 0;
  color: var(--red);
  cursor: pointer;
  font-weight: 600;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal[hidden] { display: none !important; }
.modal-card {
  background: #fff;
  width: min(420px, 100%);
  padding: 28px 24px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: #888;
}
.coupon-code-box {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  border: 2px dashed var(--green);
  padding: 16px;
  color: var(--heading);
}
.modal-card .btn { width: 100%; margin-top: 8px; }
.filter-note { text-align: center; margin-bottom: 20px; color: var(--muted); }
.article-block { scroll-margin-top: 24px; margin-bottom: 48px; }
.article-block img.lead { width: 100%; max-height: 360px; object-fit: cover; margin: 12px 0 18px; }
input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
  display: inline-block;
}
html { overflow-x: hidden; }
#nav.is-open > ul { display: flex; width: 100%; }

