:root {
    --evergreen: #415B4D;
    --sage: #708A78;
    --sage-light: color-mix(in srgb, #708A78 16%, #FAF7F1);
    --cream: #FAF7F1;
    --beige: #EEE6DA;
    --peach: #EFB28F;
    --peach-soft: color-mix(in srgb, #EFB28F 28%, #FAF7F1);
    --white: #FFFFFF;
    --text: #415B4D;
    --text-muted: #708A78;
    --shadow: 0 4px 20px color-mix(in srgb, #415B4D 12%, transparent);
    --radius: 18px;
    --radius-sm: 12px;
    --pill: 999px;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

h1, h2, h3, h4 {
    font-family: Lora, Georgia, serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--evergreen);
    margin: 0;
}

a { color: var(--evergreen); text-decoration: none; }
a:hover { color: var(--sage); }

html, body { overflow-x: hidden; }

.container {
    width: min(100% - 2.5rem, 1080px);
    margin-inline: auto;
}

main {
    flex: 1;
    padding-bottom: 3rem;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    display: block;
}

.heading-heart {
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    vertical-align: middle;
    margin-left: 0.3rem;
    color: var(--peach);
}

.heading-display {
    font-size: clamp(1.7rem, 7vw, 3rem);
    letter-spacing: -0.02em;
}

.heading-display--center { text-align: center; }

.heading-section { font-size: clamp(1.4rem, 2.6vw, 1.85rem); }

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.7rem;
}

/* Header */

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--beige);
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "brand"
        "nav";
    align-items: center;
    gap: 0.35rem;
    padding-block: 0.7rem 0.45rem;
    position: relative;
}

.site-header .brand { grid-area: brand; }
.site-nav { grid-area: nav; }

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: inherit;
    min-width: 0;
}

.brand__logo {
    height: 2.6rem;
    width: auto;
    max-width: 2.6rem;
}

.brand__name {
    font-family: Lora, Georgia, serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--evergreen);
    white-space: nowrap;
}

.site-nav {
    display: flex;
    justify-content: flex-end;
    gap: 0.15rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.45rem 0.7rem 0.55rem;
    border-radius: 0;
    white-space: nowrap;
}

.nav-link:hover {
    background: transparent;
    color: var(--evergreen);
}

.nav-link--active,
.nav-link--active:hover {
    background: transparent;
    color: var(--evergreen);
    box-shadow: inset 0 -2px 0 var(--evergreen);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    min-height: 44px;
    font: 600 0.92rem Inter, sans-serif;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn--primary,
.btn--primary:hover {
    background: var(--evergreen);
    color: var(--white);
}

.btn--secondary,
.btn--secondary:hover {
    background: var(--peach);
    color: var(--evergreen);
    border-color: var(--peach);
}

.btn--outline {
    background: var(--white);
    color: var(--evergreen);
    border-color: var(--beige);
}

.btn--disabled { opacity: 0.8; pointer-events: none; }

/* Hero */

.hero { padding: 1.5rem 0 1.5rem; }

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 1rem;
    align-items: center;
}

.hero__grid > * { min-width: 0; }

.hero__lead {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0.75rem 0 1.1rem;
    max-width: 34ch;
}

.hero__visual {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.hero__image {
    width: 100%;
    max-width: 160px;
    max-height: 170px;
    object-fit: contain;
    border-radius: 16px;
}

.page-hero {
    padding: 1.75rem 0 1rem;
    text-align: center;
}

.page-hero__lead {
    color: var(--text-muted);
    max-width: 40rem;
    margin: 0.85rem auto 0;
}

.legal-updated {
    margin: 0.75rem 0 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
}

.article__body .legal-updated {
    margin: 1.75rem 0 0;
    padding-top: 1.1rem;
    border-top: 1px solid var(--beige);
    font-size: 0.88rem;
}

/* Featured guide */

.featured-guide {
    padding: 0.25rem 0 2rem;
}

.featured-guide__card {
    background: var(--peach-soft);
    border: 1px solid var(--beige);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 1.25rem 1.15rem;
}

.featured-guide__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(140px, 180px);
    gap: 1rem;
    align-items: center;
}

.featured-guide__grid > * { min-width: 0; }

.featured-guide__content p {
    color: var(--text-muted);
    margin: 0.55rem 0 1rem;
    max-width: 38ch;
    font-size: 0.92rem;
}

.featured-guide__visual {
    position: relative;
    display: flex;
    justify-content: center;
    justify-self: center;
    width: fit-content;
    max-width: 100%;
    overflow: visible;
}

.featured-guide__cover {
    width: min(100%, 168px);
    max-height: 190px;
    object-fit: contain;
}

.featured-guide__badge {
    position: absolute;
    top: -0.45rem;
    right: -0.35rem;
    background: var(--peach);
    color: var(--evergreen);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.3rem 0.5rem;
    border-radius: var(--pill);
    box-shadow: var(--shadow);
    white-space: nowrap;
}

/* Sections */

.section { padding: 2rem 0; }

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-link {
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--evergreen);
}

.section-link:hover { color: var(--sage); }

.section-empty { color: var(--text-muted); font-style: italic; }

/* Article cards */

.article-grid {
    display: grid;
    gap: 1.25rem;
}

.article-grid--featured,
.article-grid--related {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.article-grid--featured .article-card,
.article-grid--related .article-card {
    flex: 0 0 min(68vw, 230px);
    scroll-snap-align: start;
}

.article-grid--list {
    grid-template-columns: 1fr;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-width: 0;
}

.article-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.article-card--horizontal .article-card__link {
    flex-direction: row;
    align-items: stretch;
}

.article-card__image-wrap {
    background: var(--cream);
    height: 150px;
    overflow: hidden;
    flex-shrink: 0;
}

.article-card--horizontal .article-card__image-wrap {
    width: 92px;
    min-width: 92px;
    height: 92px;
    min-height: 92px;
    border-radius: 12px;
    margin: 0.75rem 0 0.75rem 0.75rem;
}

.article-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.75rem;
}

.article-card__body {
    padding: 1rem 1.15rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
}

.article-card--horizontal .article-card__body {
    padding: 0.85rem 0.9rem 0.9rem 0.75rem;
}

.article-card--horizontal .article-card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card__title {
    font-family: Lora, Georgia, serif;
    font-size: 1.05rem;
    color: var(--evergreen);
}

.article-card__excerpt {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.article-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.article-card__read-more {
    margin-top: auto;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--evergreen);
}

.meta-dot {
    width: 4px;
    height: 4px;
    background: var(--peach);
    border-radius: 50%;
}

/* Category chips */

.category-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.2rem;
}

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

.category-nav__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--white);
    padding: 0.5rem 0.95rem;
    border-radius: var(--pill);
    border: 1px solid var(--beige);
    white-space: nowrap;
    flex-shrink: 0;
}

.category-nav__link--active,
.category-nav__link--active:hover {
    background: var(--evergreen);
    color: var(--white);
    border-color: var(--evergreen);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.category-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 0.45rem 0.75rem;
    min-height: 10.25rem;
    color: inherit;
    background: var(--beige);
    border: 1px solid color-mix(in srgb, var(--beige) 70%, var(--evergreen) 8%);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.category-chip:hover {
    color: inherit;
    box-shadow: var(--shadow-hover, var(--shadow));
}

.category-chip__icon-wrap {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-chip__icon {
    width: 6.5rem;
    height: 6.5rem;
    max-width: none;
    object-fit: contain;
}

.category-chip__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--evergreen);
    text-align: center;
}

/* Trust */

.trust-strip { padding: 0 0 2rem; }

.trust-strip__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.trust-strip__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1rem;
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--evergreen);
}

.trust-strip__item .icon { color: var(--peach); width: 1.1rem; height: 1.1rem; }

/* Social */

.social-follow { padding: 0 0 2rem; }

.social-follow__card {
    display: grid;
    gap: 1.35rem;
    text-align: center;
    padding: 1.5rem 1.15rem;
    background: var(--peach-soft);
    border: 1px solid var(--beige);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.social-follow__lead {
    margin: 0.65rem 0 0;
    color: var(--text-muted);
    white-space: nowrap;
    font-size: clamp(0.72rem, 2.35vw, 1rem);
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.social-link__icon-wrap {
    display: grid;
    place-items: center;
}

.social-link__icon {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
}

.social-link--follow {
    gap: 0.55rem;
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: var(--pill);
    color: var(--evergreen);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.social-link--follow .social-link__icon-wrap {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: var(--pill);
    background: var(--peach-soft);
}

.social-link--follow .social-link__icon {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--evergreen);
}

.social-link--follow:hover {
    color: var(--evergreen);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.social-link__label {
    font-size: 0.85rem;
    font-weight: 600;
}

.site-footer__social {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
}

.social-link--footer {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: var(--pill);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
}

.social-link--footer .social-link__icon {
    width: 1.15rem;
    height: 1.15rem;
}

.social-link--footer:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Article page */

.back-link {
    display: inline-flex;
    gap: 0.35rem;
    font-weight: 600;
    margin: 1.4rem 0 1rem;
}

.article {
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: var(--radius);
    padding: 1.35rem 1.1rem;
    margin-bottom: 2rem;
}

.article__title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 0.9rem; }

.article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
}

.tag {
    display: inline-flex;
    padding: 0.28rem 0.7rem;
    border-radius: var(--pill);
    background: var(--cream);
    border: 1px solid var(--beige);
    font-size: 0.78rem;
    font-weight: 600;
}

.article__hero-image { margin: 1.4rem 0 1.75rem; }

.article__featured-image {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    background: var(--cream);
    border-radius: var(--radius);
}

.article__layout { display: grid; gap: 1.5rem; }

.article__body { font-size: 1.05rem; line-height: 1.85; }
.article__body p { margin: 0 0 1.15rem; }
.article__body h2, .article__body h3 { margin: 1.6rem 0 0.7rem; }
.article__body ul, .article__body ol { margin: 0 0 1.15rem; padding-left: 1.3rem; }
.article__body img {
    margin: 0 auto 1.15rem;
    border-radius: var(--radius-sm);
    max-height: 28rem;
    object-fit: contain;
}

.takeaway-box {
    background: #FAF7F1;
    border: none;
    border-radius: 20px;
    padding: 1.4rem 1.3rem 1.25rem;
    color: #415B4D;
}

.takeaway-box__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.takeaway-box__star {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
}

.takeaway-box__header h2 {
    font-family: Lora, Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #415B4D;
}

.takeaway-box__lead {
    margin: 0 0 0.9rem;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #415B4D;
}

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

.takeaway-box__list li {
    position: relative;
    margin: 0 0 0.55rem;
    padding-left: 1.45rem;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #415B4D;
}

.takeaway-box__list li:last-child { margin-bottom: 0; }

.takeaway-box__list li::before {
    content: "";
    position: absolute;
    left: 0.15rem;
    top: 0.4em;
    width: 0.55rem;
    height: 0.28rem;
    border-left: 2px solid #415B4D;
    border-bottom: 2px solid #415B4D;
    transform: rotate(-45deg);
}

.related-posts .heading-section { margin-bottom: 1.1rem; }

.empty-state {
    text-align: center;
    padding: 3rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.empty-state p { color: var(--text-muted); }
.empty-state__actions { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }

/* Footer */

.site-footer {
    background: var(--evergreen);
    color: rgba(255, 255, 255, 0.88);
    padding: 2.25rem 0 1.75rem;
    margin-top: auto;
}

.site-footer__inner {
    display: grid;
    gap: 1.25rem;
    text-align: center;
}

.site-footer__brand {
    display: flex;
    justify-content: center;
}

.brand--footer {
    align-items: center;
    gap: 0.75rem;
    max-width: 22rem;
}

.site-footer__logo {
    height: 3.025rem;
    width: 3.025rem;
    max-width: 3.025rem;
    flex-shrink: 0;
    object-fit: contain;
}

.site-footer__brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    min-width: 0;
    text-align: left;
}

.brand--footer .brand__name {
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.2;
}

.site-footer__tagline {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__nav,
.site-footer__legal {
    display: flex;
    justify-content: center;
    gap: 1rem 1.4rem;
    flex-wrap: wrap;
}

.site-footer a { color: rgba(255,255,255,0.88); font-size: 0.9rem; font-weight: 500; }
.site-footer a:hover { color: var(--white); }
.site-footer__copyright { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.62); }

/* Store / picks */

.category-section { margin-bottom: 3rem; }
.category-section__title {
    font-size: 1.15rem;
    margin: 0 0 1.1rem;
}

.pick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1.15rem;
}

.pick-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    height: 100%;
    background: transparent;
    border: none;
}

.pick-card__visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: var(--beige);
    border-radius: 20px;
    overflow: hidden;
}

.pick-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1.75rem 1.4rem 1.35rem;
    color: inherit;
}

.pick-card__media:hover { color: inherit; }

.pick-card__image {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.pick-card__placeholder {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    background: color-mix(in srgb, var(--sage) 18%, var(--beige));
}

.pick-card__wish {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 1.15rem;
    height: 1.15rem;
    color: var(--evergreen);
    pointer-events: none;
}

.pick-card__wish svg {
    display: block;
    width: 100%;
    height: 100%;
}

.pick-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    width: 100%;
    padding: 0.85rem 0.1rem 0;
    flex: 1;
}

.pick-card__title {
    margin: 0;
    font-family: Lora, Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--evergreen);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}

.pick-card__title,
.pick-card__title a {
    font-family: Lora, Georgia, serif;
    font-size: inherit;
    font-weight: 600;
    color: inherit;
}

.pick-card__title a:hover { color: var(--sage); }

.pick-card__cta,
.pick-card__cta:hover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.85rem;
    padding: 0.52rem 1.2rem;
    min-height: 2.35rem;
    border-radius: var(--pill);
    background: var(--evergreen);
    color: var(--white);
    font: 600 0.84rem Inter, sans-serif;
    letter-spacing: 0.01em;
}

.affiliate-disclosure {
    margin-top: 2rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.guide-list {
    display: grid;
    gap: 1.25rem;
}

.guide-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(140px, 180px);
    gap: 1.1rem;
    align-items: center;
    background: var(--peach-soft);
    border: 1px solid var(--beige);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 1.35rem 1.2rem;
}

.guide-card--detail {
    grid-template-columns: 1fr;
    justify-items: start;
    margin: 1rem 0 3rem;
    padding: 1.5rem 1.25rem 1.75rem;
}

.guide-card__content { min-width: 0; }

.guide-card__content .heading-section a {
    color: inherit;
}

.guide-card__content .heading-section a:hover { color: var(--sage); }

.guide-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin: 0.55rem 0 1.1rem;
    font-family: Lora, Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--evergreen);
}

.guide-card__price-original {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: line-through;
}

.guide-card__description {
    margin: 0 0 1.25rem;
}

.guide-card__hint {
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.purchase-result .heading-section { margin-bottom: 0.75rem; }

.purchase-result__disclaimer {
    margin: 1.25rem auto 1.4rem;
    max-width: 36rem;
    padding: 0.95rem 1.1rem;
    text-align: left;
    background: var(--peach-soft);
    border: 1px solid var(--beige);
    border-radius: var(--radius-sm);
}

.purchase-result__disclaimer p {
    margin: 0;
    color: var(--evergreen);
    font-size: 0.92rem;
}

.guide-card__visual {
    display: flex;
    justify-content: center;
    justify-self: center;
    width: fit-content;
    max-width: 100%;
}

.guide-card__cover {
    width: min(100%, 168px);
    max-height: 190px;
    object-fit: contain;
}

.guide-card--detail .guide-card__cover {
    width: min(100%, 220px);
    max-height: 220px;
}

@media (min-width: 720px) {
    .article__layout { grid-template-columns: minmax(0, 1fr) 250px; }
    .article { padding: 2.4rem; }
    .site-footer__inner {
        grid-template-columns: 1.4fr auto auto;
        text-align: left;
        align-items: start;
    }
    .site-footer__brand { justify-content: flex-start; }
    .site-footer__social,
    .site-footer__copyright { grid-column: 1 / -1; text-align: center; }
    .trust-strip__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .guide-card,
    .guide-card--detail {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        padding: 2.25rem 2.5rem;
        gap: 2rem;
    }
    .guide-card--detail { align-items: start; }
    .guide-card__cover,
    .guide-card--detail .guide-card__cover {
        width: min(100%, 300px);
        max-height: 280px;
    }
}

@media (min-width: 861px) {
    .site-header__inner {
        grid-template-columns: auto 1fr;
        grid-template-areas: "brand nav";
        min-height: 4.5rem;
        padding-block: 0.85rem;
        gap: 1rem;
    }

    .brand__logo { height: 3rem; max-width: 3rem; }
    .brand__name { font-size: 1.05rem; }

    .site-nav {
        justify-content: flex-end;
        overflow: visible;
    }

    .nav-link {
        border-radius: var(--pill);
        padding: 0.45rem 0.9rem;
    }

    .nav-link:hover {
        background: var(--sage-light);
        color: var(--evergreen);
    }

    .nav-link--active,
    .nav-link--active:hover {
        background: var(--evergreen);
        color: var(--white);
        box-shadow: none;
    }

    .hero { padding: 2.5rem 0 2rem; }

    .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 2.5rem;
    }

    .hero__lead { font-size: 1.05rem; margin: 1rem 0 1.4rem; }

    .hero__image {
        max-width: 420px;
        max-height: 380px;
        border-radius: 0;
    }

    .featured-guide { padding: 0.5rem 0 2.75rem; }

    .featured-guide__card { padding: 2.25rem 2.5rem; }

    .social-follow__card {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 2rem;
        text-align: left;
        padding: 2rem 2.4rem;
    }

    .social-follow__lead { margin-top: 0.7rem; }

    .social-links { justify-content: flex-end; }

    .featured-guide__grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 2rem;
    }

    .featured-guide__content p { font-size: 1rem; margin: 0.75rem 0 1.35rem; }

    .featured-guide__cover {
        width: min(100%, 300px);
        max-height: 280px;
    }

    .featured-guide__badge {
        top: -0.35rem;
        right: -0.45rem;
        font-size: 0.72rem;
        padding: 0.4rem 0.7rem;
    }

    .section { padding: 2.75rem 0; }

    .article-grid--featured,
    .article-grid--related {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        overflow: visible;
        padding-bottom: 0;
    }

    .article-grid--featured .article-card,
    .article-grid--related .article-card { flex: unset; }

    .article-grid--list { grid-template-columns: 1fr 1fr; }

    .pick-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem 1.6rem;
    }

    .pick-card__title { font-size: 1.12rem; }

    .article-card__image-wrap { height: 170px; }

    .article-card--horizontal .article-card__image-wrap {
        width: 180px;
        min-width: 180px;
        height: auto;
        min-height: 140px;
        margin: 0;
        border-radius: 0;
    }

    .category-nav { flex-wrap: wrap; overflow: visible; }

    .category-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .category-chip {
        padding: 1.1rem 0.55rem 0.95rem;
        min-height: 13.25rem;
    }

    .category-chip__icon-wrap,
    .category-chip__icon {
        width: 8.25rem;
        height: 8.25rem;
    }
}

@media (max-width: 380px) {
    .hero__grid,
    .featured-guide__grid,
    .guide-card,
    .guide-card--detail { grid-template-columns: 1fr; }

    .hero__image {
        max-width: 240px;
        max-height: 220px;
        margin-inline: auto;
    }

    .featured-guide__cover {
        width: min(100%, 200px);
        max-height: 180px;
        margin-inline: auto;
    }
}

