/* =========================
   CLOVER DESIGN SYSTEM BASE
   ========================= */

:root {
  /* Colours */
  --bg: #ffffff;
  --text: #0b1f33;
  --muted: #5f6b7a;

  --primary: #0b1f33;
  --border: #e6edf3;

  --btn-bg: #e66a2c;
  --btn-bg-hover: #bf8268;

  /* Typography */
  --font-body: 'Inter', system-ui, sans-serif;
  --font-heading: 'Playfair Display', serif;

  --fs-body: 16px;
  --fs-small: 14px;

  --fs-h1: clamp(36px, 5vw, 56px);
  --fs-h2: clamp(28px, 3.5vw, 40px);
  --fs-h3: 20px;

  /* Layout */
  --max: 1200px;

  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 40px;
  --space-xl: 80px;

  /* UI */
  --radius: 12px;
}

/* GLOBAL BOX SIZING */

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

/* =========================
   BASE RESET / GLOBAL
   ========================= */

html {
  overflow-y: scroll;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.thank-you-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

/* LINKS */

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.lightbox {
  display: none;
}

.lightbox.is-open {
  display: block;
}

/* =========================
   TYPOGRAPHY
   ========================= */

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.3px;
}

h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.2;
}

h3 {
  font-size: var(--fs-h3);
}

p {
  margin: 0 0 var(--space-md);
  color: var(--muted);
}

.lead {
  font-size: 18px;
  color: var(--text);
}

/* GENERIC BULLETS */

.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullets li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 10px;
}

.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
}

/* =========================
   LAYOUT
   ========================= */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* UTILITIES */

.hidden {
  display: none !important;
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  background: var(--btn-bg);
  color: #ffffff;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--btn-bg-hover);
  color: #ffffff;
  text-decoration: none;
}

/* FORM INPUTS */

input,
textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* PLACEHOLDER TEXT */

input::placeholder,
textarea::placeholder {
  font-size: 14px;
  color: var(--muted);
}

/* =========================
   SIMPLE GRID
   ========================= */

.grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 860px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   HEADER
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 8px 0;
  background: rgba(11, 31, 51, 0.92);
  backdrop-filter: blur(8px);
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto;
  height: 34px;
}

.navlinks {
  display: none;
  align-items: center;
  gap: 28px;
}

.navlinks a {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.navlinks a:hover {
  color: #ffffff;
}

.navlink-featured {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
}

.navlink-featured:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.22);
  text-decoration: none;
}

.navcta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 0 auto;
  background: #ffffff;
}

.mobile-nav {
  display: none;
  margin-top: 20px;
  padding: 20px 0 0;
}

.mobile-nav.is-open {
  display: grid;
  gap: 16px;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: none;
}

.mobile-nav-cta {
  margin-top: 8px;
  justify-self: start;
}

@media (min-width: 960px) {
  .navlinks {
    display: flex;
  }

  .navcta {
    display: block;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  background: rgba(11, 31, 51, 0.92); /* same as header */
  backdrop-filter: blur(8px);
  padding: 60px 20px;
  color: #ffffff;
}

.site-footer .container {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  gap: 8px;
  text-align: center;
  justify-items: center;
}

.footer-inner p,
.footer-inner a {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-inner a:hover {
  color: #ffffff;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
}

.footer-meta {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  min-height: calc(100svh - 50px);
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1f33 0%, #1a2f45 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay for readability */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.45);
  z-index: 1;
}

/* HERO CONTENT */

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-inner {
  max-width: 720px;
  min-height: calc(100svh - 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.3px;
  max-width: 18ch;
}

.hero .lead {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 20px;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.85);
}

.hero-footnote {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  max-width: 320px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  text-align: right;
}

/* =========================
   CLEAN TEXT SECTION
   ========================= */

.clean-text-section {
  background: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.clean-text-inner {
  max-width: 720px;
  margin: 0 auto;
}

.clean-text-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.3px;
  color: #3f4a46;
  margin-bottom: 20px;
}

.clean-text-section p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: #4a5a55;
}

.clean-text-section .bullets {
  list-style: none;
  padding: 0;
  margin: 28px auto 0;
  max-width: 520px;
  text-align: left;
}

.clean-text-section .bullets li {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5a55;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.clean-text-section .bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9aa6a0;
}

/* =========================
   CLEAN TEXT SECTION - DARK
   ========================= */

.clean-text-section--dark {
  background: #4f5f5b;
  text-align: center;
  padding: 80px 20px;
}

.clean-text-section--dark .clean-text-inner {
  max-width: 720px;
  margin: 0 auto;
}

.clean-text-section--dark h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.3px;
  color: #ffffff;
  margin-bottom: 20px;
}

.clean-text-section--dark p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Inline CTA nudge */
.inline-cta {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  border-left: 3px solid var(--btn-bg);
  text-align: left;
}

.inline-cta p {
  margin: 0;
  font-size: 18px;
  color: var(--text);
}

.inline-cta a {
  color: var(--btn-bg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================
   EDITORIAL CARDS SECTION
   ========================= */

.editorial-section {
  background: #ffffff;
  padding: 80px 20px;
}

.editorial-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.editorial-section__heading {
  margin-bottom: 56px;
  text-align: center;
}

.editorial-section__heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.3px;
  color: #3f4a46;
}

.editorial-section__intro {
  max-width: 56ch;
  margin: 16px auto 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: #5f6b66;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.editorial-card {
  text-align: center;
}

.editorial-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 24px;
  background: #f3f4f4;
}

.editorial-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial-card__title {
  margin: 0 auto 20px;
  max-width: 22ch;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  font-weight: 400;
  color: #2f3d4a;
}

.editorial-card__desc {
  max-width: 40ch;
  margin: 0 auto 20px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #5f6b66;
}

.editorial-card__link {
  font-family: var(--font-body);
  font-size: 16px;
  color: #d08f73;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.editorial-card__link:hover {
  color: var(--btn-bg-hover);
  text-decoration: none;
}

@media (min-width: 860px) {
  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 34px;
  }
}

/* =========================
   INSIGHTS PAGE
   ========================= */

.insights-category {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.insights-category:last-child {
  border-bottom: none;
}

.insights-category__header {
  display: grid;
  gap: 32px;
  margin-bottom: 36px;
  align-items: start;
}

.insights-category__image {
  aspect-ratio: 16 / 7; /* wider, less tall than the card default of 4/3 */
}

.insights-category__intro {
  text-align: left;
  max-width: 60ch;
}

.insights-category__intro .editorial-card__title,
.insights-category__intro .editorial-card__desc {
  margin-left: 0;
  max-width: none;
}

@media (min-width: 860px) {
  .insights-category__header {
    grid-template-columns: 340px 1fr;
  }
}

/* Article list */

.article-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

@media (min-width: 860px) {
  .article-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.article-list__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.article-list__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease;
}

.article-list__link:hover {
  background: #f3f0ec;
  text-decoration: none;
}

.article-list__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}

.article-list__meta {
  font-size: var(--fs-small);
  color: var(--muted);
  margin-bottom: 8px;
}

.article-list__desc {
  font-size: var(--fs-small);
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.article-list__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--btn-bg);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-list__empty {
  font-size: var(--fs-small);
  color: var(--muted);
  padding: 16px 0;
}

/* =========================
   ARTICLE PAGE
   ========================= */

.article-page {
  max-width: 100%;
}

.article-header {
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.article-header__inner {
  max-width: 720px;
  margin: 0 auto;
}

.article-header__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.article-feature-image {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  background: #0b1f33;
}

.article-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.article__inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--text);
  margin: 48px 0 16px;
}

.article__inner h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 10px;
}

.article__inner ul {
  padding-left: 20px;
  margin: 0 0 var(--space-md);
  color: var(--muted);
}

.article__inner ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.article__inner a:not(.btn):not(.article-list__link) {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article__inner a:not(.btn):not(.article-list__link):hover {
  color: var(--btn-bg);
}

.article-figure {
  margin: 32px 0;
}

.article-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 12px;
  justify-content: center;
}

.article-meta__item {
  font-size: var(--fs-small);
  color: var(--muted);
}

/* Article end-matter bands */

.article-band {
  padding: 60px 20px;
}

.article-band__inner {
  max-width: 720px;
  margin: 0 auto;
}

.article-band__inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: inherit;
  margin: 0 0 24px;
}

/* Sources — white, continuation of article */
.article-band--sources {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.sources-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.sources-list li {
  font-size: var(--fs-small);
  color: var(--muted);
}

.sources-list a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sources-list a:hover {
  color: var(--btn-bg);
  text-decoration: none;
}

/* FAQ — dark */
.article-band--faq {
  background: #4f5f5b;
  color: #ffffff;
}

.article-band--faq h2 {
  color: #ffffff;
}

/* Author — warm grey */
.article-band--author {
  background: #cdc9c0;
}

.author-card {
  display: grid;
  gap: 24px;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.author-label {
  font-size: var(--fs-small);
  color: var(--muted);
  margin-bottom: 4px;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 12px;
}

.author-name a {
  color: inherit;
  text-decoration: none;
}

.author-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 8px;
}

@media (min-width: 600px) {
  .author-card {
    grid-template-columns: 80px 1fr;
    align-items: start;
  }
}

/* Related articles — white */
.article-band--related {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

/* CTA — dark */
.article-band--cta {
  background: #4f5f5b;
  color: #ffffff;
  text-align: center;
}

.article-band--cta .btn {
  color: #ffffff;
}

.article-band--cta .btn:hover {
  text-decoration: none;
}

.article-band--cta h2 {
  color: #ffffff;
}

.article-band--cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 2px;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 20px;
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* =========================
   TESTIMONIALS
   ========================= */

.testimonials-wrap {
  position: relative;
  max-width: 1120px;
  margin: 48px auto 0;
  overflow: hidden;
}

.testimonials {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 20px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonials::-webkit-scrollbar {
  height: 10px;
}

.testimonials::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
}

.testimonials::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-card {
  flex: 0 0 min(320px, calc(100vw - 40px));
  scroll-snap-align: start;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
}

.testimonial-card blockquote {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.35;
  font-weight: 400;
  color: #ffffff;
}

.testimonial-card cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

.testimonial-nav--prev {
  left: 0;
}

.testimonial-nav--next {
  right: 0;
}

@media (min-width: 860px) {
  .testimonial-card {
    flex-basis: 360px;
  }
}

/* =========================
   CONTACT
   ========================= */

.contact-band {
  background: #cdc9c0;
  text-align: center;
  padding: 80px 20px;
}

.contact-band .clean-text-inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.3px;
  color: #2f3d4a;
  margin-bottom: 20px;
}

.contact-band p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: #4a5a55;
}

.contact-band .contact-details {
  text-align: left;
}

.contact-band .contact-form {
  text-align: left;
}

.contact-band label {
  display: block;
  margin: 0;
  font-size: 14px;
  color: #2f3d4a;
  text-align: left;
}

.field input,
.field textarea {
  width: 100%;
}

.contact-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-grid.two {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* =========================
   RESPONSIVE IMAGES
   ========================= */

@media (max-width: 1024px) {
  .hero {
    background-image: var(--hero-image-tablet);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: calc(100svh - 50px);
    background-image: var(--hero-image-mobile);
    background-position: center top;
  }

  .hero-inner {
    min-height: calc(100svh - 50px);
  }

  .hero-footnote {
    right: 16px;
    bottom: 20px;
    max-width: 280px;
    text-align: right;
    font-size: 12px;
  }
}

/* Full-bleed homepage hero override */
main.container {
  max-width: none;
  padding: 0;
}
