:root {
  --ink: #17201b;
  --muted: #667069;
  --paper: #fff8ea;
  --paper-2: #f5ecd8;
  --cream: #fffdf5;
  --line: rgba(23, 32, 27, .14);
  --teal: #0e5b55;
  --teal-2: #083d39;
  --gold: #f3b63f;
  --tomato: #df6848;
  --sage: #b8c99d;
  --shadow: 0 24px 70px rgba(26, 37, 32, .14);
  --radius: 28px;
  --radius-sm: 18px;
  --display: "Fraunces", Georgia, serif;
  --body: "DM Sans", Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(243, 182, 63, .28), transparent 24rem),
    radial-gradient(circle at 92% 10%, rgba(14, 91, 85, .16), transparent 26rem),
    linear-gradient(135deg, #fff8ea 0%, #f7efe0 44%, #fffdf6 100%);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .42;
  background-image:
    linear-gradient(rgba(23, 32, 27, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 27, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.top-note {
  background: var(--teal-2);
  color: #fef5dd;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.top-note .site-shell {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 32, 27, .1);
  background: rgba(255, 248, 234, .82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 15px;
  background: linear-gradient(135deg, var(--gold), #fff0b8);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--display);
}

.brand span:last-child {
  font-family: var(--display);
  font-size: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(23, 32, 27, .76);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(14, 91, 85, .1);
  color: var(--teal-2);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 11px 17px;
  background: var(--ink);
  color: #fffaf0;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--gold);
  transition: transform .18s ease, box-shadow .18s ease;
}

.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--gold);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 34px;
  align-items: center;
  padding: 72px 0 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  border: 1px solid rgba(14, 91, 85, .2);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 253, 245, .82);
  color: var(--teal-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tomato);
  box-shadow: 0 0 0 5px rgba(223, 104, 72, .16);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -.055em;
  line-height: .96;
}

h1 {
  max-width: 12ch;
  font-size: clamp(54px, 9vw, 122px);
}

h2 {
  font-size: clamp(36px, 5.4vw, 72px);
}

h3 {
  font-size: clamp(24px, 3vw, 38px);
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #3c4740;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.42;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 13px 19px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.button.secondary {
  background: #fffdf5;
  box-shadow: 5px 5px 0 rgba(14, 91, 85, .26);
}

.button.dark {
  background: var(--teal-2);
  color: #fff8ea;
  box-shadow: 5px 5px 0 var(--gold);
}

.hero-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 38px;
  background: var(--cream);
  box-shadow: var(--shadow), 10px 10px 0 var(--ink);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(280px, calc(100% - 40px));
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 248, 234, .9);
  backdrop-filter: blur(12px);
  box-shadow: 6px 6px 0 var(--ink);
}

.hero-badge strong {
  display: block;
  font-size: 27px;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 64px;
}

.trust-pill {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px;
  background: rgba(255, 253, 245, .7);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: 66px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .58fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.story-card,
.guide-card,
.detail-card,
.deal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, .86);
  box-shadow: 0 20px 45px rgba(23, 32, 27, .08);
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-card:hover img,
.story-card:hover img {
  transform: scale(1.045);
}

.product-media,
.story-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / .76;
  background: var(--paper-2);
}

.product-media img,
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.media-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(23, 32, 27, .18);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 253, 245, .84);
  color: var(--teal-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.category-card .story-media {
  aspect-ratio: 1 / .68;
}

.tag {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(23, 32, 27, .18);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff7de;
  color: var(--teal-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.product-body,
.story-body,
.guide-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.product-body h3,
.story-body h3,
.guide-body h3 {
  font-size: 30px;
}

.product-body p,
.story-body p,
.guide-body p {
  margin: 0;
  color: #536158;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.metric {
  border-radius: 15px;
  padding: 10px;
  background: rgba(14, 91, 85, .08);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.split-panel {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 20px;
  align-items: stretch;
}

.proof-panel {
  border: 2px solid var(--ink);
  border-radius: 34px;
  padding: 28px;
  background: var(--teal-2);
  color: #fff8ea;
  box-shadow: 8px 8px 0 var(--gold);
}

.proof-panel h2 {
  color: #fff8ea;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  border: 1px solid rgba(255, 248, 234, .18);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 248, 234, .08);
}

.banner-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 34px;
  background: #ddd;
  box-shadow: var(--shadow);
}

.banner-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.banner-copy {
  position: absolute;
  inset: auto 22px 22px 22px;
  border-radius: 24px;
  padding: 20px;
  background: rgba(255, 253, 245, .88);
  backdrop-filter: blur(14px);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.filter-bar input,
.filter-bar select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(255, 253, 245, .88);
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

.filter-bar input {
  flex: 1 1 260px;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 245, .82);
  box-shadow: 0 20px 45px rgba(23, 32, 27, .08);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 840px;
}

th,
td {
  border-bottom: 1px solid rgba(23, 32, 27, .1);
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(14, 91, 85, .1);
  color: var(--teal-2);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

td strong {
  display: block;
}

.page-hero {
  padding: 64px 0 26px;
}

.page-hero h1 {
  max-width: 13ch;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .55fr);
  gap: 24px;
  align-items: start;
  padding: 30px 0 70px;
}

.detail-card {
  padding: 24px;
}

.detail-card img {
  overflow: hidden;
  border-radius: 22px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  border-radius: 16px;
  padding: 13px 13px 13px 38px;
  background: rgba(184, 201, 157, .24);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 13px;
  color: var(--teal);
  font-weight: 950;
}

.warning {
  border-left: 5px solid var(--tomato);
  border-radius: 18px;
  padding: 16px;
  background: rgba(223, 104, 72, .1);
}

.daily-stack {
  display: grid;
  gap: 16px;
}

.update-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.update-panel .metric {
  border: 1px solid rgba(23, 32, 27, .1);
  background: rgba(255, 253, 245, .75);
}

.daily-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 12px;
  background: rgba(255, 253, 245, .86);
}

.daily-item img {
  width: 120px;
  height: 90px;
  border-radius: 16px;
  object-fit: cover;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(23, 32, 27, .95);
  color: #fff8ea;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr .8fr .8fr;
  gap: 24px;
  padding: 42px 0;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 248, 234, .76);
  text-decoration: none;
}

.disclosure {
  color: rgba(255, 248, 234, .68);
  font-size: 13px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 360px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 14px 16px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  font-weight: 900;
  transform: translateY(150%);
  transition: transform .22s ease;
}

.toast.is-visible {
  transform: translateY(0);
}

.reveal {
  animation: lift .6s ease both;
}

.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
.delay-3 { animation-delay: .24s; }

@keyframes lift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .hero,
  .section-head,
  .split-panel,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .card-grid,
  .update-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px 0;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 22px, 1180px);
  }

  h1 {
    font-size: 54px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-card,
  .hero-card img {
    min-height: 380px;
  }

  .trust-strip,
  .card-grid,
  .update-panel,
  .daily-item {
    grid-template-columns: 1fr;
  }

  .daily-item img {
    width: 100%;
    height: 180px;
  }

  .top-note .site-shell {
    flex-direction: column;
  }
}

/* STF_MONETIZATION_START */
.stf-monetize-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 22px;
  margin-bottom: 28px;
}

.stf-monetize-copy,
.stf-decision-grid,
.stf-related-strip,
.stf-revenue-paths {
  border: 1px solid rgba(23, 32, 27, .13);
  border-radius: 24px;
  background: rgba(255, 253, 245, .9);
  box-shadow: 0 18px 52px rgba(26, 37, 32, .09);
}

.stf-monetize-copy {
  padding: clamp(20px, 3vw, 32px);
}

.stf-monetize-copy h2 {
  max-width: 760px;
  font-size: clamp(32px, 4.4vw, 58px);
}

.stf-monetize-copy p {
  max-width: 780px;
  color: #3c4740;
}

.stf-micro-disclosure {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.stf-decision-grid {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2.5vw, 26px);
}

.stf-decision-grid div {
  border: 1px solid rgba(14, 91, 85, .16);
  border-radius: 18px;
  background: rgba(184, 201, 157, .18);
  padding: 14px;
}

.stf-decision-grid span {
  display: block;
  color: var(--teal-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.stf-decision-grid strong {
  display: block;
  margin-top: 5px;
  line-height: 1.38;
}

.stf-related-strip,
.stf-revenue-paths {
  margin-top: 30px;
  padding: clamp(20px, 3.5vw, 34px);
}

.stf-related-strip h2,
.stf-revenue-paths h2 {
  max-width: 820px;
  font-size: clamp(31px, 4vw, 56px);
}

.stf-related-links,
.stf-revenue-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.stf-related-links a,
.stf-revenue-grid a {
  border: 1px solid rgba(23, 32, 27, .12);
  border-radius: 18px;
  background: #fff8ea;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.3;
  padding: 16px;
  text-decoration: none;
}

.stf-related-links a:hover,
.stf-revenue-grid a:hover {
  border-color: var(--teal);
  color: var(--teal-2);
}

@media (max-width: 820px) {
  .stf-monetize-panel,
  .stf-related-links,
  .stf-revenue-grid {
    grid-template-columns: 1fr;
  }
}
/* STF_MONETIZATION_END */

/* STF_MONETIZATION_READINESS_20260710_START */
@media (max-width: 640px) {
  .top-note .site-shell {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    padding: 6px 0;
  }

  .top-note .site-shell span:last-child {
    display: none;
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    min-height: 0;
    padding: 9px 0 7px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
    letter-spacing: 0;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .brand span:last-child {
    font-size: 18px;
    letter-spacing: 0;
  }

  .nav-cta {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    box-shadow: 2px 2px 0 var(--gold);
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    flex-wrap: nowrap;
    gap: 2px;
    overflow-x: auto;
    padding: 2px 0 1px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 6px 9px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
  }

  .page-hero {
    padding: 28px 0 16px;
  }

  .page-hero h1 {
    max-width: 16ch;
    font-size: 40px;
    letter-spacing: 0;
    line-height: 1.05;
  }

  .lead {
    font-size: 18px;
    line-height: 1.45;
  }

  .stf-monetize-panel {
    margin-top: 12px;
  }

  .stf-monetize-copy {
    padding: 18px;
  }

  .stf-monetize-copy h2 {
    font-size: 30px;
    letter-spacing: 0;
    line-height: 1.08;
  }

  .action-row {
    margin-top: 20px;
  }

  .action-row .button {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 8px;
    box-shadow: 3px 3px 0 var(--ink);
  }
}
/* STF_MONETIZATION_READINESS_20260710_END */

/* STF_ABOVE_FOLD_CTA_20260710_START */
.stf-hero-cta {
  margin-top: 20px;
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  .top-note {
    font-size: 11px;
    line-height: 1.25;
  }

  .top-note .site-shell {
    height: 30px;
  }

  .top-note .site-shell span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .stf-hero-cta {
    margin-top: 18px;
    margin-bottom: 10px;
  }
}
/* STF_ABOVE_FOLD_CTA_20260710_END */

/* STF_PAGE_HERO_COMPACT_20260710_START */
.page-hero {
  padding: 48px 0 22px;
}

.page-hero h1 {
  max-width: 14ch;
  font-size: 72px;
  letter-spacing: 0;
  line-height: 1.02;
}

@media (max-width: 640px) {
  .page-hero {
    padding: 28px 0 16px;
  }

  .page-hero h1 {
    max-width: 16ch;
    font-size: 40px;
    letter-spacing: 0;
    line-height: 1.05;
  }
}
/* STF_PAGE_HERO_COMPACT_20260710_END */

/* STF_READER_EXPERIENCE_START */
.stf-reading-progress {
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: transparent;
  pointer-events: none;
}

.stf-reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #f0b429;
  transition: width 120ms linear;
}

.stf-reader-band {
  border-top: 1px solid rgba(21, 20, 17, .14);
  border-bottom: 1px solid rgba(21, 20, 17, .14);
  background: #eef5ef;
}

.stf-reader-band-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.stf-reader-details,
.stf-reader-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stf-reader-details {
  flex-wrap: wrap;
  color: #3d4842;
  font-size: 14px;
}

.stf-reader-details strong {
  color: #151411;
}

.stf-reader-details a {
  color: #155f48;
  font-weight: 800;
}

.stf-reader-actions {
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.stf-reader-button,
.stf-return-all {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid #151411;
  border-radius: 6px;
  background: #ffffff;
  color: #151411;
  font: inherit;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.stf-reader-button:hover,
.stf-reader-button:focus-visible,
.stf-return-all:hover,
.stf-return-all:focus-visible {
  outline: 3px solid rgba(240, 180, 41, .34);
  outline-offset: 2px;
}

.stf-save-guide[aria-pressed="true"],
.stf-feedback-button[aria-pressed="true"] {
  border-color: #f0b429;
  background: #f0b429;
  color: #151411;
}

.stf-reader-status {
  max-width: 220px;
  color: #3d4842;
  font-size: 13px;
}

.stf-return-band {
  margin-top: 52px;
  padding: 42px 0 24px;
  background: #151411;
  color: #f7f5ef;
}

.stf-return-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 1fr) minmax(180px, 1fr);
  gap: 30px;
}

.stf-return-band h2,
.stf-return-band h3,
.stf-return-band p,
.stf-return-band .eyebrow {
  color: inherit;
}

.stf-return-band h2 {
  margin: 4px 0 10px;
  font-size: 34px;
  letter-spacing: 0;
  line-height: 1.08;
}

.stf-return-band h3 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 0;
}

.stf-return-intro p {
  max-width: 48ch;
}

.stf-return-all {
  margin-top: 8px;
  border-color: #f0b429;
  background: #f0b429;
}

.stf-reader-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stf-reader-link-list li + li {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.stf-reader-link-list a {
  display: block;
  padding: 9px 0;
  color: inherit;
  font-weight: 750;
  line-height: 1.35;
  text-decoration-color: #f0b429;
  text-underline-offset: 4px;
}

.stf-reader-empty {
  margin: 0;
  color: #c8cec9 !important;
  font-size: 14px;
}

.stf-feedback {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.stf-feedback-actions {
  display: flex;
  gap: 8px;
}

.stf-feedback > span {
  color: #c8cec9;
  font-size: 13px;
}

.stf-guide-finder {
  margin: 34px 0;
  border-top: 1px solid rgba(21, 20, 17, .14);
  border-bottom: 1px solid rgba(21, 20, 17, .14);
  background: #ffffff;
}

.stf-guide-finder-inner {
  display: grid;
  grid-template-columns: minmax(210px, .8fr) minmax(280px, 1.2fr);
  gap: 22px 34px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.stf-guide-finder h2,
.stf-guide-finder h3 {
  letter-spacing: 0;
}

.stf-guide-finder h2 {
  margin: 6px 0 8px;
  font-size: 34px;
  line-height: 1.08;
}

.stf-guide-finder h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.stf-guide-finder-copy p {
  margin: 0;
}

.stf-guide-search label {
  display: block;
  margin-bottom: 8px;
  color: #151411;
  font-weight: 850;
}

.stf-guide-search input {
  width: 100%;
  min-height: 52px;
  padding: 10px 14px;
  border: 2px solid #151411;
  border-radius: 6px;
  background: #ffffff;
  color: #151411;
  font: inherit;
}

.stf-guide-search input:focus {
  border-color: #155f48;
  outline: 3px solid rgba(21, 95, 72, .18);
  outline-offset: 2px;
}

.stf-guide-search p {
  min-height: 20px;
  margin: 8px 0 0;
  color: #8a2f25;
  font-size: 14px;
}

.stf-hub-personal {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(21, 20, 17, .14);
}

.stf-hub-personal .stf-reader-link-list li + li {
  border-color: rgba(21, 20, 17, .12);
}

.stf-hub-personal .stf-reader-link-list a {
  color: #155f48;
}

.stf-hub-personal .stf-reader-empty {
  color: #5d665f !important;
}

.guide-card[hidden] {
  display: none !important;
}

@media (max-width: 780px) {
  .stf-reader-band-inner,
  .stf-reader-details,
  .stf-reader-actions,
  .stf-feedback {
    align-items: flex-start;
  }

  .stf-reader-band-inner {
    flex-direction: column;
  }

  .stf-reader-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .stf-reader-details {
    flex-direction: column;
    gap: 4px;
  }

  .stf-return-inner,
  .stf-guide-finder-inner,
  .stf-hub-personal {
    grid-template-columns: 1fr;
  }

  .stf-return-band h2,
  .stf-guide-finder h2 {
    font-size: 28px;
  }

  .stf-feedback {
    flex-wrap: wrap;
  }
}
/* STF_READER_EXPERIENCE_END */
