/* ============================================
   BASE TYPOGRAPHY & GLOBAL ELEMENTS
   ============================================ */

html,
body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #FFFFFF;
}

/* Media defaults */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   LINKS (GLOBAL)
   ============================================ */

a {
    color: #2F4E79;
    font-weight: 600;
    text-decoration: none;
    text-underline-offset: 3px;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #243C5C;
}

/* Footer links on dark background */
.site-footer a,
.site-footer a:visited {
    color: #E6F2E6;
}

.site-footer a:hover {
    color: #FFFFFF;
}
.back-link {
  margin-top: 1.5em;
}
/* ============================================
   TYPOGRAPHY SCALE (GLOBAL)
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #174F42;
}

h1 {
    font-size: 2rem;
    color: #3F5E82;
}

p {
    margin: 0 0 20px 0;
}

ul,
ol {
    margin: 0 0 20px 20px;
}
/* --------------------------------
   Horizontal rule
   Used to separate birding locations
-------------------------------- */

hr {
    border: none;
    border-top: 2px solid #CCCCCC;
    margin: 2.5rem 0 1.2rem;
}
/* ============================================
   HOME INTRO — TYPOGRAPHIC (NO QUOTE CUE)
   ============================================ */

.home-intro-body {
    margin: 2rem 0 2.5rem 0;

    padding-left: 0;
    border-left: none;

    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;

    color: #00291D;
    max-width: 900px;
}

/* Home follow-up links block */
.home-followups {
    margin-top: 2.5rem;
    max-width: 900px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.home-followups p {
    margin: 0 0 1rem 0;
}
.browse-all-links {
    margin-top: 1rem;
}

.browse-all-links p {
    margin: 0;
}
.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.article-prev,
.article-next {
    max-width: 45%;
}

.article-next {
    text-align: right;
}

.browse-section {
    margin-top: 1.2rem;
}
/* ============================================
   BLOCKQUOTE — SUPPORTING EVIDENCE ONLY
   Use for quoted outside sources (not pull quotes).
   ============================================ */

article blockquote {
    margin: 1.25rem 0;
padding: 1rem 1.25rem;

    border: 2px solid #C1D0BE;
    background: #FBFCFA;

    font-size: 0.95rem;
    line-height: 1.65;
    font-weight: 400;

    color: #00291D;
    text-align: left;
}

/* Remove decorative quote marks */
article blockquote::before,
article blockquote::after {
    content: none;
}

/* Internal spacing */
article blockquote p {
    margin: 0 0 0.85rem 0;
}

article blockquote p:last-child {
    margin-bottom: 0;
}

/* Optional attribution inside blockquote */
article blockquote cite {
    display: block;
    margin-top: 1rem;

    font-size: 0.85rem;
    font-style: normal;
    font-weight: 500;

    color: #4A698E;
}

/* -------------------------------------------------------
   Pull Quotes

   Editorial convention for this site:

   h1  → page title
   h2  → section headings
   h3  → subsection headings
   h4  → pull quotes / authorial emphasis
   blockquote → actual quotations from other sources

   We use <h4> for pull quotes because the editor strips
   custom classes and wrappers. This provides a reliable,
   editor-safe element that can be styled as a graphic
   statement within articles.

   IMPORTANT: <h4> should NOT be used for structural
   headings anywhere on the site.
------------------------------------------------------- */

article h4 {
    position: relative;

    margin: 2rem auto;
    max-width: 46rem;

    padding: 1rem 1rem;
    border-top: 1px solid #427C3B;
    border-bottom: 1px solid #427C3B;
    text-align: center;

    font-size: 1.7rem;
    line-height: 1.3;
    font-weight: 600;

    color: #427C3B;
}

article h4::before {
    content: "“";
    position: absolute;
    left: -1rem;
    top: -0.6rem;

    font-size: 3rem;
    color: #427C3B;
    opacity: 0.45;
}

article h4::after {
    content: "”";
    position: absolute;
    right: -1rem;
    bottom: -0.8rem;

    font-size: 3rem;
    color: #427C3B;
    opacity: 0.45;
}

/* Source note (bio / attribution line) */
article p.source-note {
    margin: 1.5rem 0 2.5rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #3A5248;
}

/* ============================================
   CALLOUT PANELS — RESOURCE INTRO + ISSUE SUMMARY
   Works in both article-body (posts) and basic pages (resources).
   ============================================ */

.article-body .resource-intro,
.basic-page .resource-intro,
article .resource-intro {
    margin: 2rem 0 2.5rem 0;
    padding: 1.5rem 1.75rem;

    border-left: 3px solid #4A698E;
    background-color: #F6F8F5;

    font-size: 1rem;
    line-height: 1.65;
}

.article-body .issue-summary,
.basic-page .issue-summary,
article .issue-summary {
    margin: 2rem 0;
    padding: 1.4rem 1.6rem;

    border-left: 3px solid #4A698E;
    background-color: #F4F7F9;

    font-size: 0.95rem;
    line-height: 1.6;
}

/* Lists inside callouts */
.article-body .issue-summary ul,
.article-body .issue-summary ol,
.article-body .resource-intro ul,
.article-body .resource-intro ol,
.basic-page .issue-summary ul,
.basic-page .issue-summary ol,
.basic-page .resource-intro ul,
.basic-page .resource-intro ol,
article .issue-summary ul,
article .issue-summary ol,
article .resource-intro ul,
article .resource-intro ol {
    margin: 0.75rem 0 0 1.25rem;
}

/* Prevent extra bottom air */
.article-body .issue-summary p:last-child,
.article-body .resource-intro p:last-child,
.basic-page .issue-summary p:last-child,
.basic-page .resource-intro p:last-child,
article .issue-summary p:last-child,
article .resource-intro p:last-child {
    margin-bottom: 0;
}

/* ============================================
   NATIVE PLANT GUIDES (SCOPED)
   ============================================ */

.native-plant-guides h2 {
    margin-bottom: 10px;
}

/* Keep the intro paragraphs un-indented */
.native-plant-guides h2 + p,
.native-plant-guides h2 + p + p {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.native-plant-guides h3 {
    margin: 34px 0 6px 0;
}

.native-plant-guides h3 ~ p {
    margin-left: 20px;
    padding-left: 14px;
    border-left: 3px solid rgba(47, 78, 121, 0.22);
    margin-top: 0;
    margin-bottom: 10px;
}

.native-plant-guides p em {
    font-style: italic;
}

/* Native plant guides – index directory */
.native-plant-guides-index h3 {
    margin-top: 16px;
    margin-bottom: 4px;
    padding-left: 14px;
    border-left: 3px solid rgba(47, 78, 121, 0.25);
}
/* ============================================
   HEADER
   ============================================ */

.site-header-outer {
    width: 100%;
    background: #F7F7F3;
    padding: 15px 0;
    border-bottom: 5px solid #DEE4E0;
    position: relative;
    z-index: 1000;
}

.site-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-logo img {
    height: 100px;
}


/* ============================================
   NAVIGATION
   ============================================ */

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav .nav-level-1 {
    display: flex;
    gap: 20px;
}

.site-nav li {
    position: relative;
}

.site-nav a {
    color: #4f6f63;
    font-weight: 600;
    padding: 0.35rem 0.6rem;
    display: block;
}

.site-nav a:hover {
    text-decoration: underline;
}

/* Donate button */
.site-nav .nav-donate a {
    padding: 0.35rem 1.75rem;
    border-radius: 4px;
    border: 1px solid #00291D;
    color: #F7F6F3;
    background: #005639;
}

.site-nav .nav-donate a:hover {
    background: #004030;
    border-color: #004030;
}

/* Dropdowns */
.site-nav .nav-level-2 {
    position: absolute;
    top: 100%;
    left: 0;
    background: #F7F7F3;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    padding: 6px 0;

    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;

    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}

.site-nav li:hover > .nav-level-2,
.site-nav li:focus-within > .nav-level-2 {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.site-nav .nav-level-2 a {
    padding: 6px 14px;
    font-weight: 500;
}

.site-nav .nav-level-2 a:hover {
    background: #EFEDE6;
}


/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

.breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.breadcrumbs li {
    margin: 0;
    padding: 0;
}

.breadcrumbs li::after {
    content: "›";
    margin-left: 0.4rem;
}

.breadcrumbs li:last-child::after {
    content: "";
}
.site-footer .footer-legal {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.site-footer .footer-legal a {
    color: inherit;
    text-decoration: none;
}

.site-footer .footer-legal a:hover {
    text-decoration: underline;
}

/* ============================================
   MAIN LAYOUT — AUTHORITATIVE
   ============================================ */

.site-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem;
}

.page-layout.has-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 2.5rem;
    align-items: start;
}

.page-main,
.page-sidebar {
    min-width: 0;
}

.page-sidebar {
    font-size: 0.95rem;
    color: #444;
    width: auto;
    max-width: none;
}

.basic-page {
    text-align: left;
}

@media (max-width: 1000px) {
    .page-layout.has-sidebar {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   SIDEBAR — CARD SYSTEM
   ============================================ */

.sidebar-card,
.sidebar-feature {
    background: #F5F8FA;
    margin-bottom: 1.25rem;
    box-shadow:
        0 3px 8px rgba(0,0,0,0.15),
        0 1px 3px rgba(0,0,0,0.10);
}

.sidebar-card {
    padding: 0.75rem 1rem;
}

.sidebar-feature {
    padding: 0.75rem;
    box-shadow:
        0 6px 16px rgba(0,0,0,0.20),
        0 2px 6px rgba(0,0,0,0.15);
}

.sidebar-feature-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 2px;
}

.sidebar-feature-link img {
    margin-bottom: 0.5rem;
    transition: opacity 0.2s ease;
}

.sidebar-feature-link:hover img {
    opacity: 0.75;
}


/* ============================================
   SIDEBAR — EMAIL
   ============================================ */

.sidebar-email-title {
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.35;
    margin: 0 0 0.5rem 0;
}

.sidebar-email-text {
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.sidebar-email .buttondown-form input[type="email"] {
    width: 100%;
    margin-bottom: 0.75rem;
}

.sidebar-email-submit {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.sidebar-footer img {
    display: block;
    margin: 0 auto;
}

/* Sidebar footer identity — centered */
.sidebar-footer-identity {
    text-align: center;
}

/* Sidebar Donate Button */
.sidebar-footer-donate .sidebar-donate-button {
    display: block;
    text-align: center;
    padding: 0.75em 1.25em;
    margin-top: 0.5rem;

    background: #00291D;
    color: #F7F7F3;
    font-weight: 600;
    border-radius: 4px;

    text-decoration: none;
}

.sidebar-footer-donate .sidebar-donate-button:hover {
    background: #356A33;
    text-decoration: none;
}

/* Sidebar Donate Button — spacing */
.sidebar-footer-donate {
    margin: 1.25rem 0;
}

.home-browse-all {
    text-align: center;
}
/* Contact form */

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 600px;
    padding: 0.4rem;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 140px;
}

.contact-form button {
    margin-top: 0.5rem;
    padding: 0.4rem 1rem;
}

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

.site-footer-outer {
    background-color: #00291D;
    margin-top: 3rem;
    border-top: 5px solid #D6DDD8;
}

.site-footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #EDEBE3;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col {
    float: left;
    width: 33.3333%;
    text-align: center;
}

@media (max-width: 700px) {
    .footer-col {
        float: none;
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

.site-footer::after {
    content: "";
    display: block;
    clear: both;
}

/* Footer logo — lock size */
.site-footer .footer-logo img {
    max-width: 220px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* ============================================
   BODY IMAGES — CARD TREATMENT (REFINED)
   ============================================ */

article figure {
    max-width: 850px;      /* was 1100px */
    margin: 2.5rem auto;
    box-sizing: border-box;

    padding: 0.9rem;
    background: #F7F7F3;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.14),
        0 1px 3px rgba(0, 0, 0, 0.10);
}

article figure img {
    display: block;
    width: 100%;           /* back to full width */
    height: auto;
    box-sizing: border-box;
}

article figure figcaption {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #595959;
    text-align: center;
}
/* ============================================
   MEDIA & EMBEDS
   ============================================ */

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
/* ============================================
   VIDEO PAGE — SPACING
   ============================================ */

.video-embed {
    margin-bottom: 3rem; /* breathing room before transcript */
}

/* ============================================
   VIDEO TRANSCRIPT — TOGGLE & LAYOUT
   ============================================ */

/* Constrain the whole transcript component */
.video-transcript {
    margin: 2.5rem auto 0 auto;
    max-width: 900px;          /* overall component width */
    padding: 0 1rem;           /* safe gutters on small screens */
    box-sizing: border-box;
}

/* The clickable container */
.video-transcript details {
    border: 1px solid #DEE4E0;
    background: #F7F7F3;
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    box-sizing: border-box;
}

/* The toggle line itself */
.video-transcript summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: #00291D;
    list-style: none;

    display: inline-flex;
    align-items: center;
}

/* Remove default marker */
.video-transcript summary::-webkit-details-marker {
    display: none;
}

/* Arrow indicator */
.video-transcript summary::before {
    content: "▸";
    font-size: 1.15rem;
    margin-right: 0.6rem;
    transition: transform 0.2s ease;
}

/* Rotate arrow when open */
.video-transcript details[open] summary::before {
    transform: rotate(90deg);
}

/* Gentle hover cue */
.video-transcript summary:hover {
    text-decoration: underline;
}

/* Transcript body spacing + readable line length */
.video-transcript .transcript-body {
    margin: 1.25rem auto 0 auto;
    max-width: 760px;          /* reading width */
    line-height: 1.7;
}

/* ============================================
   VIDEO CREDITS
   ============================================ */

/* Constrain credits block to match transcript component */
.video-credits {
    max-width: 900px;
    margin: 3rem auto 0 auto;
    padding: 1.5rem 1rem 0 1rem; /* match gutters */
    border-top: 1px solid #DEE4E0;
    box-sizing: border-box;

    font-size: 0.95rem;
    color: #444;
}

.video-credits h3 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00291D;
}

.video-credits p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.video-credits strong {
    font-weight: 600;
    color: #222;
}
/* ============================================
   HOME SLIDESHOW (BASE)
   ============================================ */

.slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin-bottom: 2rem;
    min-height: 300px;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.12);
}

.slideshow img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slideshow img.is-active {
    opacity: 1;
}
/* ============================================
   POST COLOPHON — DRAGONFLY MARK
   ============================================ */

.post-colophon .colophon-mark {
    display: block;
    width: 48px;
    height: auto;
    margin-bottom: 1.25rem;
    opacity: 0.7;
}
/* Italicize colophon text for separation */
.post-colophon p {
    font-style: italic;
}
/* ============================================
   DONATE PAGE — BIRD LADDER (DESKTOP)
   ============================================ */

.donate-page .bird-ladder {
    margin: 2.5rem 0;
}

.donate-page .bird-entry {
    display: grid;
    grid-template-columns: auto 1fr 9rem; /* image | text | button */
    column-gap: 1.5rem;
    align-items: start;
}

/* Bird image */
.donate-page .bird-image img {
    display: block;
    max-width: 120px;
    height: auto;
}

/* Space between entries */
.donate-page .bird-entry + .bird-entry {
    margin-top: 2rem;
}

/* Text column */
.donate-page .bird-text h3 {
    margin: 0;
}

.donate-page .suggested-amount {
    font-weight: 500;
    margin-left: 0.5rem;
    color: #4A698E;
}

.donate-page .bird-text p {
    margin-top: 0.4rem;
    line-height: 1.45;
}

/* Button column */
.donate-page .bird-donate {
    align-self: center;
}

.donate-page .bird-donate .donate-button {
    display: inline-block;
    width: 100%;
    padding: 0.4em 0.9em;

    background-color: #42763C;
    color: #ffffff;

    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;

    border-radius: 4px;
    white-space: nowrap;
}

.donate-page .bird-donate .donate-button:hover {
    background-color: #356A33;
}
/* ============================================
   DONATE PAGE — MOBILE
   ============================================ */

@media (max-width: 640px) {

    .donate-page .bird-entry {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0.75rem 0;
    }

    .donate-page .bird-donate {
        align-self: start;
    }

    .donate-page .bird-donate .donate-button {
        width: fit-content;
    }

    .donate-page .bird-entry + .bird-entry {
        margin-top: 1.25rem;
    }
}
.donate-page .bird-ladder {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
/* Normalize image column rhythm */

.donate-page .bird-image {
    height: 100px;          /* visual rhythm anchor */
    display: flex;
    align-items: flex-start;
}

.donate-page .bird-image img {
    max-height: 100%;
    width: auto;
}

/* ============================================
   FEATURE LEFT IMAGE — LAYOUT
   ============================================ */

.feature-left-image .hj-float-wrap {
    display: flex;
    align-items: flex-start;
    margin: 2.5rem 0;
}

/* Image column */
.feature-left-image .hj-float-image {
    flex: 0 0 auto;
    margin-right: 1.5rem; /* breathing room */
    max-width: 260px;     /* prevents dominance */
}

/* Ensure image behaves */
.feature-left-image .hj-float-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Text column */
.feature-left-image .hj-float-text {
    flex: 1 1 auto;
    min-width: 0;
}
/* ============================================
   ARTICLE BODY — SHARED READING SURFACE
   Used by: post, guest-post, fieldnote, wider-view
   ============================================ */

.article-body {
    /* width is controlled by layout, not content */
}

/* --------------------------------------------
   Paragraph rhythm
   -------------------------------------------- */

.article-body p {
    margin: 1.25rem 0;
    line-height: 1.65;
}

/* --------------------------------------------
   Headings within articles
   (including legacy <strong> section heads)
   -------------------------------------------- */

.article-body h2,
.article-body h3,
.article-body h4,
.article-body strong {
    display: block;
    margin: 2.4rem 0 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.article-body h2 {
    font-size: 1.25rem;
}

.article-body h3 {
    font-size: 1.1rem;
}

/* --------------------------------------------
   Lists
   -------------------------------------------- */

.article-body ul,
.article-body ol {
    margin: 1.2rem 0 1.8rem 1.5rem;
    padding: 0;
}

.article-body li {
    margin: 0.6rem 0;
    line-height: 1.55;
}

/* --------------------------------------------
   Figures (editor-inserted images)
   -------------------------------------------- */

.article-body figure {
    margin: 2.5rem auto;
}

.article-body figure img {
    display: block;
    width: 100%;
    height: auto;
}

.article-body figcaption {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #595959;
    text-align: center;
}
/* ============================================
   ARTICLE BODY — CALLOUT PANELS
   ============================================ */

.article-body .resource-intro {
    margin: 2rem 0 2.5rem 0;
    padding: 1.5rem 1.75rem;

    border-left: 6px solid #4A698E;
    background-color: #F6F8F5;

    line-height: 1.65;
}

.article-body .issue-summary {
    margin: 2rem 0;
    padding: 1.4rem 1.6rem;

    border-left: 6px solid #4A698E;
    background-color: #F4F7F9;

    font-size: 0.95rem;
}

/* Fix list spacing inside the boxes */
.article-body .issue-summary ul,
.article-body .resource-intro ul {
    margin: 0.75rem 0 0 1.25rem;
}
/* ============================================
   BOOKSHOP LAYOUT OVERRIDES (LOCKED)
   ============================================ */

.bookshop-main {
    display: grid !important;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
}

.bookshop-main > * {
    width: auto;
    max-width: none;
}

.bookshop-cover img {
    width: 100%;
    height: auto;
    max-width: none;
}

/* ============================================
   BOOKSHOP INDEX — ROW LAYOUT (LOCKED)
   ============================================ */

/* Article stays editorial */
.bookshop-index {
    display: block;
}

/* List is vertical */
.bookshop-list {
    display: block;
    margin-top: 2.5rem;
}

/* EACH BOOK = image left, text right */
.bookshop-index .bookshop-entry {
    display: grid !important;
    grid-template-columns: 160px 1fr;
    gap: 1.25rem;
    align-items: start;
    margin-bottom: 1.75rem;
}

/* Image column */
.bookshop-index .bookshop-cover {
    width: 100%;
}

/* Image itself */
.bookshop-index .bookshop-cover img {
    width: 100%;
    height: auto;
    display: block;
}

/* Text column */
.bookshop-index .bookshop-text {
    width: auto;
}

/* Mobile: stack image above text */
@media (max-width: 700px) {
    .bookshop-index .bookshop-entry {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   WILDFLOWER PRINTS — FEATURE ROW LAYOUT (LOCKED)
   ============================================ */

/* Each featured print = image left, text right */
article.print-feature {
    display: grid !important;
    grid-template-columns: 420px 1fr; /* wider image column */
    gap: 2rem;
    align-items: start;

    width: 100%;
    max-width: none;
}

/* Image column */
article.print-feature .print-feature-image,
article.print-feature .print-feature-image img {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
}

/* Shadow that survives overflow clipping */
article.print-feature .print-feature-image {
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.18));
}

/* Text column */
article.print-feature .print-feature-text {
    width: auto;
    max-width: none;
}
/* ============================================
   WILDFLOWER PRINTS — IMAGE SHADOW PROXY (LOCKED)
   ============================================ */

article.print-feature {
    box-shadow: none; /* ensure no card shadow */
}

/* Create a shadow layer behind the image */
article.print-feature .print-feature-image {
    position: relative;
}

/* Shadow proxy */
article.print-feature .print-feature-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.25),
        0 10px 28px rgba(0, 0, 0, 0.18);

    transition: box-shadow 0.25s ease;
}

article.print-feature .print-feature-image:hover::after {
    box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.32),
        0 20px 44px rgba(0, 0, 0, 0.26);
}
/* ============================================
   DISCOVERY PHOTO REALM (LOCKED)
   One image per page, immersive viewing
   No editorial flow, no site chrome
   ============================================ */

body.discovery-photo-realm {
    margin: 0;
    background: #111;
    color: #eee;
}

/* Core layout: centered, place-not-a-page */
body.discovery-photo-realm main.discovery-photo {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

/* Image container */
body.discovery-photo-realm .discovery-photo-figure {
    position: relative;
    margin: 0;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image itself — override editorial rules */
body.discovery-photo-realm .discovery-photo-figure img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
}

/* Overlay navigation arrows */
body.discovery-photo-realm .image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    line-height: 1;
    color: #bbb;
    text-decoration: none;
    padding: 0.5rem;
    user-select: none;
}

body.discovery-photo-realm .image-nav:hover {
    color: #fff;
}

body.discovery-photo-realm .image-nav-prev {
    left: -3rem;
}

body.discovery-photo-realm .image-nav-next {
    right: -3rem;
}

/* Optional contextual note */
body.discovery-photo-realm .discovery-photo-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
}

/* Secondary navigation (explicit, textual) */
body.discovery-photo-realm .discovery-photo-nav {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

body.discovery-photo-realm .discovery-photo-nav a {
    color: #bbb;
    text-decoration: none;
    margin: 0 1rem;
}

body.discovery-photo-realm .discovery-photo-nav a:hover {
    color: #fff;
}

/* Single exit — quiet but clear */
body.discovery-photo-realm .discovery-photo-exit {
    margin-top: 2rem;
    font-size: 0.9rem;
}

body.discovery-photo-realm .discovery-photo-exit a {
    color: #bbb;
    text-decoration: none;
}

body.discovery-photo-realm .discovery-photo-exit a:hover {
    color: #fff;
}

/* ============================================
   HOME / INTERIOR SIDEBAR — HABITAT JOURNAL
   ============================================ */

.sidebar-habitat-journal {
    text-align: center;
}

.sidebar-habitat-journal img {
    display: block;
    margin: 0 auto 14px auto;
    max-width: 200px;
    height: auto;
}

.sidebar-habitat-journal .journal-promo-title {
    margin: 6px 0 8px 0;
}

.sidebar-habitat-journal .journal-promo-title a {
    display: inline-block;
}

.sidebar-habitat-journal .journal-promo-text {
    display: block;
    margin: 0 0 10px 0;
    line-height: 1.45;
}

.sidebar-habitat-journal .journal-promo-cta {
    display: block;
    margin-top: 6px;
}

/* Mobile adjustments */
@media (max-width: 700px) {
    body.discovery-photo-realm main.discovery-photo {
        padding: 1.25rem;
    }

    body.discovery-photo-realm .image-nav-prev {
        left: -1.5rem;
    }

    body.discovery-photo-realm .image-nav-next {
        right: -1.5rem;
    }
}

/* Mobile: stack */
@media (max-width: 800px) {
    article.print-feature {
        grid-template-columns: 1fr;
    }
}

