/* =============================================================================
   OBERCAIL GHOST THEME — screen.css
   Inspired by obercail.ch | Work Sans + Abril Fatface
   v1.1.0
   ============================================================================= */

/* -----------------------------------------------------------------------------
   0. CSS CUSTOM PROPERTIES
   ----------------------------------------------------------------------------- */
:root {
    /* Typography */
    --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Abril Fatface', Georgia, serif;

    /* Base sizes */
    --base-font-size: 17px;
    --line-height-body: 1.75;
    --line-height-heading: 1.15;

    /* Color palette */
    --color-bg: #faf9f7;
    --color-bg-alt: #f2efe9;
    --color-surface: #ffffff;
    --color-text: #1a1a18;
    --color-text-muted: #6b6a67;
    --color-text-light: #9e9d99;
    --color-border: #e4e1da;
    --color-border-light: #f0ede6;

    /* Brand / accent — overridden per-site from Ghost settings */
    --accent: #2d5a27;
    --accent-hover: #1f3f1b;
    --accent-light: #e8f0e6;

    /* Nature palette */
    --green-deep: #1c3a18;
    --green-mid: #2d5a27;
    --green-soft: #4a7c42;
    --stone: #8c7b65;
    --earth: #c4a882;
    --cream: #faf9f7;
    --charcoal: #32373c;

    /* Spacing scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 9rem;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 720px;
    --header-height: 72px;

    /* Radii */
    --radius-sm: 3px;
    --radius-md: 6px;
    --radius-lg: 12px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,.1), 0 2px 6px rgba(0,0,0,.06);
    --shadow-lg: 0 12px 32px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Z-index scale */
    --z-header: 100;
    --z-overlay: 200;
    --z-modal: 300;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg: #141412;
        --color-bg-alt: #1c1b18;
        --color-surface: #201f1c;
        --color-text: #f0ede6;
        --color-text-muted: #a8a59f;
        --color-text-light: #6e6b65;
        --color-border: #2e2c28;
        --color-border-light: #252420;
    }
}


/* -----------------------------------------------------------------------------
   1. RESET & BOX MODEL
   ----------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--base-font-size);
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: var(--line-height-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
    overflow-x: hidden;

    /* -----------------------------------------------------------------------
       BUG FIX: obercail.ch disables text selection via user-select:none and
       JS-blocked clipboard events. This theme explicitly re-enables selection
       for all elements so users can copy text normally.
       ----------------------------------------------------------------------- */
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

/* Ensure every element allows text selection (counteracts inherited `none`) */
*, *::before, *::after {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    user-select: auto;
}

/* Only disable selection on interactive controls where it makes UX sense */
button,
[role="button"],
label {
    -webkit-user-select: none;
    user-select: none;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-hover);
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
}

/* Focus visible — keyboard navigation */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    /* Hero scroll cue: fully disable — !important overrides the 0.01ms rule */
    .hero-scroll-cue {
        animation: none !important;
    }
}


/* -----------------------------------------------------------------------------
   2. TYPOGRAPHY SCALE
   ----------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: var(--line-height-heading);
    color: var(--color-text);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* Abril Fatface class for decorative headings */
.display {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.01em;
}

p {
    line-height: var(--line-height-body);
}

strong, b { font-weight: 700; }
em, i { font-style: italic; }

small { font-size: 0.875em; }

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }


/* -----------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   ----------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 3rem);
}

.container--narrow {
    max-width: var(--container-narrow);
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 3rem);
}

.section {
    padding-block: var(--space-xl);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.section-header {
    margin-bottom: var(--space-xl);
}

.section-title {
    margin-bottom: var(--space-sm);
}

.section-body {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 56ch;
}

.section-footer {
    margin-top: var(--space-xl);
    text-align: center;
}


/* -----------------------------------------------------------------------------
   4. BUTTONS
   ----------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.375rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.4;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background-color var(--transition-fast),
                color var(--transition-fast),
                border-color var(--transition-fast),
                transform var(--transition-fast),
                box-shadow var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}

.btn-ghost {
    background-color: rgba(255,255,255,.15);
    color: #fff;
    border-color: rgba(255,255,255,.5);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background-color: rgba(255,255,255,.25);
    color: #fff;
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
    margin-top: var(--space-md);
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.link-arrow:hover {
    gap: 0.6rem;
    color: var(--accent-hover);
}


/* -----------------------------------------------------------------------------
   5. HEADER
   ----------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    height: var(--header-height);
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-md);
}

.site-header-inner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    height: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 3rem);
}

/* Brand / Logo */
.site-header-brand {
    flex-shrink: 0;
}

.site-logo-link {
    display: block;
    text-decoration: none;
}

.site-logo {
    max-height: 40px;
    width: auto;
}

.site-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* Navigation */
.site-nav {
    flex: 1;
}

.site-nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.site-nav-link {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.site-nav-link:hover,
.site-nav-item.current .site-nav-link {
    color: var(--color-text);
    background-color: var(--color-bg-alt);
}

/* CTA button area */
.site-header-cta {
    flex-shrink: 0;
    margin-left: auto;
}

/* Mobile toggle */
.site-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.hamburger-bar {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.site-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.site-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Desktop: hide toggle, show booking CTA normally */
.site-nav-booking { display: none; }

@media (max-width: 768px) {
    /* Show hamburger */
    .site-nav-toggle {
        display: flex;
    }

    /* Hide desktop CTA — booking button lives inside nav overlay on mobile */
    .site-header-cta {
        display: none;
    }

    /* Nav overlay — full-screen panel below header */
    .site-nav {
        display: none;
        position: fixed;
        inset: var(--header-height) 0 0;
        background: var(--color-surface);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-lg) clamp(1rem, 5vw, 3rem) var(--space-xl);
        border-top: 1px solid var(--color-border);
        overflow-y: auto;
        z-index: calc(var(--z-header) - 1);
    }

    .site-nav.is-open {
        display: flex;
    }

    /* Stacked nav links */
    .site-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .site-nav-item {
        width: 100%;
        border-bottom: 1px solid var(--color-border-light);
    }

    .site-nav-link {
        display: block;
        font-size: 1.15rem;
        font-weight: 500;
        padding: 0.875rem 0;
        width: 100%;
        color: var(--color-text);
    }

    .site-nav-link:hover {
        color: var(--accent);
        background: none;
    }

    /* Mobile booking button — shown at the bottom of the nav list */
    .site-nav-booking {
        display: block;
        border-bottom: none;
        padding-top: var(--space-lg);
        width: 100%;
    }

    .site-nav-booking-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }
}


/* -----------------------------------------------------------------------------
   6. HERO SECTION
   ----------------------------------------------------------------------------- */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100svh - var(--header-height));
    overflow: hidden;
    background-color: var(--green-deep);
    text-align: center;
    padding-block: var(--space-3xl);
}

.hero--compact {
    min-height: 60vh;
    padding-block: var(--space-2xl);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* No zoom — removed per design feedback */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(20, 35, 18, 0.55) 0%,
        rgba(20, 35, 18, 0.4) 50%,
        rgba(20, 35, 18, 0.72) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding-inline: clamp(1.5rem, 6vw, 4rem);
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 300;
    color: rgba(255,255,255,.85);
    letter-spacing: 0.15em;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-scroll-cue {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: rgba(255,255,255,.6);
    animation: scroll-bounce 2.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 1;
    }
}

/* No cover image fallback — linear gradient background */
.hero:not(.hero--with-cover) {
    background: linear-gradient(135deg, var(--green-deep) 0%, #2d5a27 60%, #1c3a18 100%);
}


/* -----------------------------------------------------------------------------
   7. INTRO / ABOUT SECTION
   ----------------------------------------------------------------------------- */
.section--intro {
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border-light);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

/* When no image is uploaded, let text span the full width */
.intro-layout > .intro-text:only-child {
    grid-column: 1 / -1;
    max-width: var(--container-narrow);
}

.intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section--intro .section-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.section--intro .section-body {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

@media (max-width: 720px) {
    .intro-layout {
        grid-template-columns: 1fr;
    }
    .intro-image {
        order: -1;
    }
}


/* -----------------------------------------------------------------------------
   8. POST GRID
   ----------------------------------------------------------------------------- */
.section--posts {
    background-color: var(--color-bg);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: var(--space-lg);
}

.post-grid--small {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: var(--space-md);
}

/* Post Card */
.post-card {
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.post-card-image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.post-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.post-card:hover .post-card-image {
    transform: scale(1.04);
}

.post-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: var(--space-md);
    gap: 0.5rem;
}

.post-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.post-card-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: background-color var(--transition-fast);
}

.post-card-tag:hover {
    background: var(--accent);
    color: #fff;
}

.post-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
}

.post-card-title-link {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.post-card-title-link:hover {
    color: var(--accent);
}

.post-card-excerpt {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border-light);
    font-size: 0.8rem;
    color: var(--color-text-light);
    flex-wrap: wrap;
}

.post-card-author {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
}

.post-card-author:hover {
    color: var(--accent);
}

.post-card-author-avatar {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.post-card-date,
.post-card-reading-time {
    color: var(--color-text-light);
}

.post-card-date::before,
.post-card-reading-time::before {
    content: '·';
    margin-right: 0.5rem;
}


/* -----------------------------------------------------------------------------
   9. NATURE BREAK SECTION
   ----------------------------------------------------------------------------- */
.section--nature-break {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
    color: #fff;
    padding-block: var(--space-lg) var(--space-xl);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.section--nature-break::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.03) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.03) 0%, transparent 60%);
    pointer-events: none;
}

.nature-break-inner {
    position: relative;
    max-width: var(--container-narrow);
    margin-inline: auto;
    padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.nature-quote {
    margin-bottom: var(--space-xl);
}

.nature-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
    letter-spacing: -0.01em;
}

.nature-facts {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.nature-fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.nature-fact-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: #fff;
    line-height: 1;
}

.nature-fact-number small {
    font-size: 0.5em;
    vertical-align: super;
    opacity: .7;
}

.nature-fact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
}


/* -----------------------------------------------------------------------------
   10. CTA SECTION
   ----------------------------------------------------------------------------- */
.section--cta {
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border-light);
}

.section--cta .section-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

.section--cta .section-body {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.cta-address {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: normal;
    letter-spacing: 0.02em;
}


/* -----------------------------------------------------------------------------
   11. POST / PAGE FULL LAYOUT
   ----------------------------------------------------------------------------- */
.post-full,
.page-full {
    padding-bottom: var(--space-3xl);
}

/* Feature image — full bleed hero with overlaid title */
.post-full-image {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    background-color: var(--color-bg-alt);
    display: flex;
    align-items: flex-end;
}

.page-full-image {
    position: relative;
    height: 50vh;
    min-height: 300px;
    max-height: 600px;
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

.post-full-image img,
.page-full-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient overlay for text readability */
.post-full-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 20%,
        rgba(0,0,0,.15) 40%,
        rgba(0,0,0,.55) 70%,
        rgba(0,0,0,.78) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Overlaid title, tags & meta */
.post-full-image-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
    padding-top: 2rem;
}

.post-full-image-content .post-full-title {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.post-full-image-content .post-tag {
    background: rgba(255,255,255,.18);
    color: #fff;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.2);
}

.post-full-image-content .post-tag:hover {
    background: rgba(255,255,255,.35);
    color: #fff;
}

.post-full-image-content .post-full-excerpt {
    color: rgba(255,255,255,.85);
    border-left-color: rgba(255,255,255,.4);
}

.post-full-image-content .post-full-meta {
    color: rgba(255,255,255,.65);
    border-top-color: rgba(255,255,255,.2);
}

.post-full-image-content .post-full-author {
    color: rgba(255,255,255,.8);
}

.post-full-image-content .post-full-author:hover {
    color: #fff;
}

.post-full-image-caption {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    bottom: auto;
    background: rgba(0,0,0,.45);
    color: rgba(255,255,255,.85);
    font-size: 0.72rem;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    backdrop-filter: blur(4px);
    z-index: 3;
}

/* Post content area */
.post-full-content,
.page-full-content {
    padding-top: var(--space-xl);
}

/* Fallback header (no feature image) */
.post-full-header,
.page-full-header {
    margin-bottom: var(--space-xl);
}

.post-full-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: var(--space-sm);
}

.post-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.post-tag:hover {
    background: var(--accent);
    color: #fff;
}

.post-full-title,
.page-full-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.post-full-excerpt,
.page-full-excerpt {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.65;
    border-left: 3px solid var(--accent);
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
}

.post-full-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--color-text-light);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
}

.post-full-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-decoration: none;
}

.post-full-author:hover { color: var(--accent); }

/* Mobile: taller hero to give text room */
@media (max-width: 600px) {
    .post-full-image {
        height: 55vh;
        min-height: 360px;
    }
    .post-full-image-content .post-full-title {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }
}

.post-full-author-avatar {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.post-full-date::before,
.post-full-reading-time::before {
    content: '·';
    margin-right: 0.75rem;
}


/* -----------------------------------------------------------------------------
   12. GHOST CONTENT STYLES
   Styles for the rich-text output from Ghost's {{content}} helper.
   Key: all text is selectable, no pointer-events blocking.
   ----------------------------------------------------------------------------- */
.gh-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);

    /* Ensure text selection works for all content */
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
    cursor: text;
}

.gh-content > * + * {
    margin-top: 1.5em;
}

.gh-content h1,
.gh-content h2,
.gh-content h3,
.gh-content h4,
.gh-content h5,
.gh-content h6 {
    margin-top: 2em;
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.gh-content h2 { font-size: 1.65rem; }
.gh-content h3 { font-size: 1.35rem; }
.gh-content h4 { font-size: 1.15rem; }

.gh-content p { line-height: 1.8; }

.gh-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.gh-content a:hover { color: var(--accent-hover); }

.gh-content ul,
.gh-content ol {
    padding-left: 1.5em;
}

.gh-content ul { list-style: disc; }
.gh-content ol { list-style: decimal; }

.gh-content li + li { margin-top: 0.4em; }

.gh-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 0.75em 1.25em;
    margin-inline: 0;
    background: var(--accent-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--color-text-muted);
    font-style: italic;
    font-size: 1.1em;
}

.gh-content blockquote p { margin: 0; }

.gh-content figure {
    margin-inline: 0;
}

.gh-content figcaption {
    font-size: 0.85em;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 0.5em;
    font-style: italic;
}

.gh-content img,
.gh-content video {
    border-radius: var(--radius-md);
    max-width: 100%;
    height: auto;
}

.gh-content pre {
    background: var(--charcoal);
    color: #e8e8e8;
    padding: 1.25em 1.5em;
    border-radius: var(--radius-md);
    overflow-x: auto;
    font-size: 0.875em;
    line-height: 1.6;
}

.gh-content code {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    padding: 0.1em 0.4em;
    border-radius: var(--radius-sm);
    font-size: 0.875em;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

.gh-content pre code {
    background: none;
    border: none;
    padding: 0;
    font-size: inherit;
}

.gh-content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin-block: var(--space-xl);
}

.gh-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
}

.gh-content th,
.gh-content td {
    padding: 0.6em 1em;
    border: 1px solid var(--color-border);
    text-align: left;
}

.gh-content th {
    background: var(--color-bg-alt);
    font-weight: 700;
}

/* Ghost Gallery Card */
.gh-content .kg-gallery-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    max-width: 100%;
}

.gh-content .kg-gallery-row {
    display: flex;
    gap: var(--space-xs);
}

.gh-content .kg-gallery-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* Bookmark card */
.gh-content .kg-bookmark-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    min-height: 100px;
}

.gh-content .kg-bookmark-content {
    flex: 1;
    padding: 1em;
}

.gh-content .kg-bookmark-title {
    font-weight: 700;
    color: var(--color-text);
}

.gh-content .kg-bookmark-description {
    font-size: 0.875em;
    color: var(--color-text-muted);
    margin-top: 0.25em;
}

.gh-content .kg-bookmark-thumbnail {
    width: 140px;
    flex-shrink: 0;
}

.gh-content .kg-bookmark-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Button card */
.gh-content .kg-button-card {
    display: flex;
    justify-content: center;
}

.gh-content .kg-btn {
    display: inline-flex;
    padding: 0.625rem 1.5rem;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--transition-fast);
}

.gh-content .kg-btn:hover {
    background: var(--accent-hover);
    color: #fff;
}

/* Wide / full-width cards */
.gh-content .kg-width-wide {
    margin-inline: -2rem;
}

.gh-content .kg-width-full {
    margin-inline: calc(50% - 50vw);
    width: 100vw;
}


/* -----------------------------------------------------------------------------
   13. AUTHOR BOX
   ----------------------------------------------------------------------------- */
.author-box {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-lg);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
    border: 1px solid var(--color-border-light);
}

.author-box-avatar {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.author-box-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-box-name a {
    color: var(--color-text);
    text-decoration: none;
}

.author-box-name a:hover { color: var(--accent); }

.author-box-bio {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}


/* -----------------------------------------------------------------------------
   14. RELATED POSTS
   ----------------------------------------------------------------------------- */
.related-posts {
    padding-block: var(--space-lg);
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border-light);
}

.related-posts-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}


/* -----------------------------------------------------------------------------
   15. ARCHIVE VIEWS (tag, author)
   ----------------------------------------------------------------------------- */
.archive-header {
    position: relative;
    padding-block: var(--space-2xl);
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border-light);
    overflow: hidden;
}

.archive-header--with-image {
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.archive-header-image {
    position: absolute;
    inset: 0;
}

.archive-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,35,18,.85) 0%, rgba(20,35,18,.3) 100%);
}

.archive-header-content {
    position: relative;
    z-index: 1;
}

.archive-header--with-image .archive-title,
.archive-header--with-image .archive-description,
.archive-header--with-image .archive-meta,
.archive-header--with-image .section-label {
    color: #fff;
}

.archive-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: var(--space-sm);
}

.archive-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 52ch;
}

.archive-meta {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: var(--space-sm);
}

/* Author profile layout */
.author-profile {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    flex-wrap: wrap;
}

.author-profile-avatar {
    border-radius: 50%;
    object-fit: cover;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.author-social {
    display: flex;
    gap: 1rem;
    margin-top: var(--space-sm);
}

.author-social a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
}


/* -----------------------------------------------------------------------------
   16. ERROR PAGE
   ----------------------------------------------------------------------------- */
.error-page {
    min-height: calc(100svh - var(--header-height) - 200px);
    display: flex;
    align-items: center;
    padding-block: var(--space-3xl);
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(5rem, 20vw, 12rem);
    line-height: 1;
    color: var(--color-border);
    margin-bottom: var(--space-md);
}

.error-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-sm);
}

.error-message {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    font-size: 1.05rem;
}


/* -----------------------------------------------------------------------------
   17. FOOTER
   ----------------------------------------------------------------------------- */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,.75);
    padding-block: var(--space-xl);
    margin-top: 0;
}

.site-footer-inner {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 3rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-xl);
    align-items: start;
}

.site-logo--footer {
    max-height: 36px;
    filter: brightness(0) invert(1) opacity(.85);
    margin-bottom: var(--space-sm);
}

.site-logo-text--footer {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: var(--space-sm);
    display: block;
}

.site-footer-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,.55);
    max-width: 40ch;
    line-height: 1.7;
}

.site-footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    list-style: none;
}

.site-footer-nav-list a {
    font-size: 0.875rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.site-footer-nav-list a:hover {
    color: #fff;
}

.site-footer-text p {
    font-size: 0.875rem;
    color: rgba(255,255,255,.55);
}

.site-footer-copyright {
    grid-column: 1 / -1;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 0.8rem;
    color: rgba(255,255,255,.4);
}

.site-footer-copyright a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
}

.site-footer-copyright a:hover { color: #fff; }

@media (max-width: 600px) {
    .site-footer-inner {
        grid-template-columns: 1fr;
    }
}


/* -----------------------------------------------------------------------------
   18. PAGINATION (Ghost built-in)
   ----------------------------------------------------------------------------- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.pagination .older-posts,
.pagination .newer-posts,
.pagination .page-number {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: border-color var(--transition-fast), color var(--transition-fast);
}

.pagination .older-posts:hover,
.pagination .newer-posts:hover {
    border-color: var(--accent);
    color: var(--accent);
}


/* -----------------------------------------------------------------------------
   19. SCROLL ANIMATIONS (Intersection Observer)
   ----------------------------------------------------------------------------- */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
[data-animate-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

[data-animate-stagger].is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
[data-animate-stagger].is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 80ms; }
[data-animate-stagger].is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 160ms; }
[data-animate-stagger].is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 240ms; }
[data-animate-stagger].is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 320ms; }
[data-animate-stagger].is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 400ms; }

/* Disable animations when reduced-motion is preferred */
@media (prefers-reduced-motion: reduce) {
    [data-animate],
    [data-animate-stagger] > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* -----------------------------------------------------------------------------
   20. STORY SECTION (homepage "Notre histoire")
   ----------------------------------------------------------------------------- */
.section--story {
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.story-text .section-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.story-excerpt {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 720px) {
    .story-layout {
        grid-template-columns: 1fr;
    }
    .story-image {
        order: -1;
    }
}


/* -----------------------------------------------------------------------------
   21. CTA CONTACT DETAILS
   ----------------------------------------------------------------------------- */
.cta-contact-details {
    margin-top: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
}

.cta-address {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: normal;
    letter-spacing: 0.02em;
}

.cta-contact-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.cta-contact-links a {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.cta-contact-links a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}


/* -----------------------------------------------------------------------------
   22. FOOTER CONTACT & BOOKING
   ----------------------------------------------------------------------------- */
.site-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: var(--space-sm);
}

.site-footer-address {
    font-style: normal;
    font-size: 0.85rem;
    color: rgba(255,255,255,.5);
}

.site-footer-contact-link {
    font-size: 0.85rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.site-footer-contact-link:hover {
    color: #fff;
}

.site-footer-cta {
    display: inline-flex;
    margin-top: var(--space-md);
}


/* -----------------------------------------------------------------------------
   23. GHOST ANNOUNCEMENT BAR
   ----------------------------------------------------------------------------- */
.gh-announcement-bar {
    position: sticky;
    top: 0;
    z-index: calc(var(--z-header) + 10);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px clamp(1rem, 5vw, 3rem);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.gh-announcement-bar.dark {
    background: #15171a;
    color: #fff;
}

.gh-announcement-bar.light {
    background: #f5f5f0;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

.gh-announcement-bar.accent {
    background: var(--accent);
    color: #fff;
}

.gh-announcement-bar-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: var(--container-xl);
    width: 100%;
}

.gh-announcement-bar-text {
    flex: 1;
}

.gh-announcement-bar-text a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gh-announcement-bar-close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: inherit;
    opacity: 0.65;
    border-radius: 4px;
    transition: opacity var(--transition-fast);
}

.gh-announcement-bar-close:hover {
    opacity: 1;
}


/* -----------------------------------------------------------------------------
   24. GHOST SEARCH
   ----------------------------------------------------------------------------- */
.gh-search-btn,
.gh-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    padding: 0;
}

.gh-search-btn:hover,
.gh-search:hover {
    color: var(--accent);
    background: rgba(45,90,39,.08);
}

/* Ghost injects its own search UI styles via ghost_head — we just position the trigger */
.site-header-cta .gh-search-btn,
.site-header-cta .gh-search {
    margin-right: 4px;
}


/* -----------------------------------------------------------------------------
   25. GHOST PORTAL (membership)
   ----------------------------------------------------------------------------- */
/* Portal button & modal are entirely managed by Ghost — we only override the trigger colour */
.gh-portal-triggerbtn-wrapper {
    z-index: 9000 !important;
}


/* -----------------------------------------------------------------------------
   26. GHOST COMMENTS
   ----------------------------------------------------------------------------- */
.gh-comments {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}


/* -----------------------------------------------------------------------------
   27. PAYWALL / UPGRADE CTA
   ----------------------------------------------------------------------------- */
/* Hide Ghost's auto-injected membership/paywall CTA */
.gh-post-upgrade-cta {
    display: none;
}


/* -----------------------------------------------------------------------------
   28. BLOG LISTING (articles index)
   ----------------------------------------------------------------------------- */
.blog-listing {
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.blog-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.blog-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.blog-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
}

.blog-listing .post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.blog-listing .post-card-title {
    font-size: 1.05rem;
}

.blog-listing .post-card-excerpt {
    font-size: 0.85rem;
    -webkit-line-clamp: 3;
}

.blog-listing .post-card-content {
    padding: var(--space-sm) var(--space-md) var(--space-md);
}

@media (max-width: 900px) {
    .blog-listing .post-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 560px) {
    .blog-listing .post-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* Ghost pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    font-size: 0.95rem;
}

.pagination a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.pagination a:hover {
    opacity: 0.7;
}

.page-number {
    color: var(--color-text-muted);
}


/* -----------------------------------------------------------------------------
   29. PRINT STYLES
   ----------------------------------------------------------------------------- */
@media print {
    .site-header,
    .site-footer,
    .hero-scroll-cue,
    .related-posts,
    .cta-actions,
    .post-card-meta .post-card-reading-time {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .post-full-title,
    .page-full-title {
        font-size: 24pt;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.75em;
        color: #666;
    }
}
