@font-face {
    font-family: 'Giphurs';
    src: url('../fonts/Giphurs-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Giphurs';
    src: url('../fonts/Giphurs-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Giphurs';
    src: url('../fonts/Giphurs-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Giphurs';
    src: url('../fonts/Giphurs-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Giphurs';
    src: url('../fonts/Giphurs-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Giphurs';
    src: url('../fonts/Giphurs-SemiBoldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

:root {
    --color-bg-light: #f2f2f2;
    --color-bg-lighter: #f8f9fa;
    --color-bg-placeholder: #f0f0f0;
    --color-bg-story-image: #f5f5f5;
    --color-bg-category: #f0f0f0;
    --color-bg-featured-border: #eee;
    --color-bg-community-cta: #9B5656;
    --color-bg-community-cta-hover: #8a4a4a;

    --color-text-dark: #1d1d1d;
    --color-text-darker: #1b1b1b;
    --color-text-mid: #4e4e4e;
    --color-text-light: #656565;
    --color-text-lighter: #666;
    --color-text-link: #007bff;
    --color-text-category: #555;
    --color-text-placeholder: #bbb;
    --color-text-story-hover: #9b5656;

    --color-white: #fff;
    --color-black: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed !important;
}

body {
    font-family: 'Giphurs', sans-serif;
    font-feature-settings: 'ss03' on;
    letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.02em;
}

/* Utilities */
.btn {
    display: flex;
    height: 40px;
    padding: 0 1.1rem;
    border: none;
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #9b5656;
    color: white;
}

.btn-primary:hover {
    background: #854949;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #1b1b1b;
    border: 1px solid #ddd;
    padding: 0.5rem;
    width: auto;
    height: auto;
    justify-content: center;
}

.btn-secondary:hover {
    background: #f8f8f8;
    transform: none;
}

.btn-secondary.subscribe {
    background-color: #9B5656;
    color: white;
    border-color: #9B5656;
    padding: 0.65rem 1.25rem;
}

.btn-secondary.subscribe:hover {
    background-color: #8a4a4a;
}

.btn-black {
    background: #1c1c1c;
    color: white;
}

.btn-black:hover {
    background: #000;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    border-bottom: 1px solid #eee;
    height: 78px;
    background: white;
    /* position: fixed; */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 250px;
}

.logo img {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
}

.menu {
    display: flex;
    gap: 2rem;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s ease;
}

.menu a:hover,
.menu a[aria-current="page"] {
    color: #007bff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-actions button {
    background: transparent;
    border: 1px solid #eee;
    color: #1b1b1b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}

.header-actions button:hover {
    background-color: #f8f9fa;
}

/* Side Navigation */
.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s 0.35s;
}

.fullscreen-nav.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease;
}

.fullscreen-nav-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: white;
    padding: 3rem 2.5rem;
    transform: translateX(100%);
    transition: transform 800ms cubic-bezier(.17, .67, .33, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fullscreen-nav.is-active .fullscreen-nav-container {
    transform: translateX(0);
}

.fullscreen-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 0.5rem;
}

.fullscreen-nav-close:hover {
    color: #1b1b1b;
}

.fullscreen-nav-heading {
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

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

.fullscreen-nav-list li a {
    text-decoration: none;
    color: #333;
    padding: 0.6rem 0;
    display: block;
    transition: color 0.2s ease;
    font-size: 1.25rem;
    font-weight: 500;
}

.fullscreen-nav-list li a:hover {
    color: #007bff;
}

.fullscreen-nav-list--categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.fullscreen-nav-list--categories li a {
    padding: 0.4rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 400;
}

.fullscreen-nav-list--categories li a:hover {
    background-color: #e0e0e0;
    color: #333;
}

/* .search-toggle {} */
/* .menu-toggle {} */

/* Category Slider */
.category-slider-container {
    position: relative;
    padding: 0 30px;
    border-bottom: 1px solid #eee;
}

.category-slider {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.category-slider .swiper-wrapper {
    padding: 8px 0;
}

.category-slider .swiper-slide {
    width: auto;
}

.category-link {
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
    color: #656565;
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-link:hover {
    color: #1b1b1b;
}

.category-slider-container .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #7c7c7c;
    border: none;
    border-radius: 0;
}

.category-slider-container .slider-btn:hover {
    color: #1b1b1b;
}

.category-slider-container .slider-btn.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

.category-prev {
    left: 0;
}

.category-next {
    right: 0;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes slide-up-fade-in {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes slide-down-fade-out {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    padding: 0;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.search-modal[open] {
    animation: slide-up-fade-in 0.3s ease-out forwards;
}

.search-modal.is-closing {
    animation: slide-down-fade-out 0.3s ease-out forwards;
}

.search-modal::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.search-modal[open]::backdrop {
    animation: fade-in 0.3s ease-out forwards;
}

.search-modal.is-closing::backdrop {
    animation: fade-out 0.3s ease-out forwards;
}

.search-modal-content {
    padding: 2rem;
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #999;
}

.search-close:hover {
    color: #1b1b1b;
}

.search-modal-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    background: transparent;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0.5rem 0;
    outline: none;
    color: #1b1b1b;
    font-family: 'Giphurs', sans-serif;
    transition: border-color 0.3s ease;
}

.search-modal-input:focus {
    border-bottom-color: #1b1b1b;
}


/* Search Page */
.search-page-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.search-header {
    margin-bottom: 3rem;
    text-align: center;
}

.search-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.search-form {
    display: flex;
}

.search-input {
    flex-grow: 1;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-right: none;
}

.search-button {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #9B5656;
    background-color: #9B5656;
    color: white;
    cursor: pointer;
}

.results-heading {
    font-size: 1.2rem;
    color: #656565;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.search-results-list {
    list-style: none;
    padding: 0;
}

.search-result-item a {
    display: block;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #1b1b1b;
    transition: background-color 0.2s ease;
}

.search-result-item a:hover {
    background-color: #f8f9fa;
}

.result-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.result-excerpt {
    color: #656565;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.result-url {
    font-size: 0.8rem;
    color: #9B5656;
}

.no-results {
    text-align: center;
    padding: 3rem 0;
}


/* .main {
    padding-top: 78px;
} */

/* Break-apart heading animation */
.break-apart {
    overflow: visible;
}

.break-apart__word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    /* Performance optimization */
    transition: opacity 0.8s cubic-bezier(0.19, 0.67, 0.27, 1), transform 0.8s cubic-bezier(0.19, 0.67, 0.27, 1);
}

.break-apart.is-in-view .break-apart__word,
.is-in-view .break-apart__word {
    opacity: 1;
    transform: translateY(0);
}

/* Swipe-up animation for general elements */
.su-anim {
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    /* Performance optimization */
    transition: opacity 0.8s cubic-bezier(0.19, 0.67, 0.27, 1), transform 1s cubic-bezier(0.19, 0.67, 0.27, 1) !important;
    overflow: hidden;
}

.su-anim.is-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Swipe Up & Fade Animation (data-animation-delay) */
.animate-swipe-up {
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    transition: opacity 0.8s cubic-bezier(0.19, 0.67, 0.27, 1), transform 1s cubic-bezier(0.19, 0.67, 0.27, 1);
}

.animate-swipe-up.is-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .break-apart__word,
    .su-anim {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* -------------------------------- */
/* ----------- Footer ------------- */
/* -------------------------------- */

.site-footer {
    background-color: #f8f9fa;
    padding: 4rem 30px 2rem;
    color: #6c757d;
    font-size: 0.9rem;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #dee2e6;
}

.footer-about .footer-logo {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-text-darker);
    margin-bottom: 0.5rem;
}

.footer-about .footer-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #495057;
}

.footer-about .footer-logomark {
    width: 20px;
    height: 20px;
}

.footer-about .footer-copyright {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links a {
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background-color: white;
    border-color: #adb5bd;
    color: var(--color-text-darker);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column .footer-heading {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-darker);
    margin-bottom: 1rem;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    column-count: 2;
    column-gap: 1.5rem;
}

.footer-link-list li {
    margin-bottom: 0.5rem;
}

.footer-link-list a {
    text-decoration: none;
    color: #6c757d;
    transition: color 0.2s ease;
}

.footer-link-list a:hover {
    color: var(--color-text-darker);
}

.footer-bottom {
    padding-top: 1.5rem;
}

.footer-legal-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.footer-legal-nav a {
    text-decoration: none;
    color: #6c757d;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.footer-legal-nav a:hover {
    color: var(--color-text-darker);
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-link-list {
        column-count: 1;
    }

    .footer-legal-nav ul {
        justify-content: flex-start;
        gap: 1rem;
    }
}

/* -------------------------------- */
/* ---------- Story Card ---------- */
/* -------------------------------- */
.story-card {
    background: var(--color-white);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.story-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.story-link:hover .story-title {
    color: var(--color-text-story-hover);
}

.story-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--color-bg-story-image);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

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

.story-image-placeholder {
    color: var(--color-text-placeholder);
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.story-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 0.65rem;
    color: var(--color-text-darker);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.story-description {
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--color-text-light);
    margin: 0 0 1rem 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: auto;
    padding-top: 1rem;
}

.story-meta .story-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.story-community {
    background: var(--color-bg-category);
    padding: 0.25rem 0.5rem;
    font-weight: 500;
    color: var(--color-text-category);
}

.story-category {
    position: relative;
    font-weight: 500;
    color: var(--color-text-category);
    padding-left: 1rem;
}

.story-category::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-placeholder);
}

/* -------------------------------- */
/* -------- Archive Layout -------- */
/* -------------------------------- */
section.archive {
    padding: 0 30px;
}

section.archive h1 {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 1.75rem;
    color: var(--color-text-darker);
}

.archive-container {
    max-width: 1400px;
    padding: 3rem 0 5rem 0;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.archive-sidebar {
    flex: 3;
}

.archive-main {
    flex: 8;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* -------------------------------- */
/* ------ Communities Archive ----- */
/* -------------------------------- */
.communities-list {
    margin-top: 2rem;
}

.community-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.community-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.community-name {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.community-name a {
    text-decoration: none;
    color: var(--color-text-darker);
    transition: color 0.2s ease;
}

.community-name a:hover {
    color: var(--color-text-story-hover);
}

.episode-count {
    font-size: 0.875rem;
    color: #6c757d;
}

.latest-episode {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.latest-label {
    font-weight: 500;
}

.latest-title {
    color: #495057;
    text-decoration: none;
}

.latest-title:hover {
    text-decoration: underline;
}

.view-all-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9B5656;
    text-decoration: none;
    white-space: nowrap;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* -------------------------------- */
/* --------- Filter Toggle -------- */
/* -------------------------------- */
.toggle-filters-wrapper {
    display: none;
}

#toggle-filters {
    width: 100%;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-weight: 500;
}

#toggle-filters:hover {
    background-color: #f8f8f8;
    transform: none;
}

#toggle-filters svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

#toggle-filters.is-open svg {
    transform: rotate(180deg);
}


/* -------------------------------- */
/* ---------- Filter Form --------- */
/* -------------------------------- */
.filter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper svg {
    position: absolute;
    left: 1rem;
    color: #808080;
}

.search-field input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.checkbox-option {
    display: inline-block;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-option label {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    color: #555;
    font-size: 0.875rem;
}

.checkbox-option input[type="checkbox"]:checked+label {
    background-color: #5E5E5E;
    color: white;
    border-color: #5E5E5E;
}

.checkbox-option label:hover {
    background-color: #eee;
    color: #5E5E5E;
}

.checkbox-option input[type="checkbox"]:checked+label:hover {
    background-color: #5E5E5E;
    border-color: #5E5E5E;
}

.form-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.filter-groups {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-group-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #333;
}

/* -------------------------------- */
/* ---------- Pagination ---------- */
/* -------------------------------- */
.pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.pagination-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s ease;
}

.pagination-link:hover {
    color: #007bff;
}

/* -------------------------------- */
/* ---------- Breadcrumbs --------- */
/* -------------------------------- */
.breadcrumbs {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: #6c757d;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin: 0 0.75rem;
    color: #ced4da;
}

.breadcrumbs a {
    text-decoration: none;
    color: #495057;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #9B5656;
}

.breadcrumbs [aria-current="page"] {
    color: #1b1b1b;
    font-weight: 500;
}

/* -------------------------------- */
/* ------- Storyteller CTA -------- */
/* -------------------------------- */
.storyteller-cta {
    background-color: #1b1d1f;
    color: var(--color-white);
}

.storyteller-cta-container {
    display: flex;
    margin: 0 auto;
}

.cta-image-column {
    width: 40%;
}

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

.cta-content-column {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 5rem;
    background-color: #1d2124;
    background-image: url('/assets/images/straw-pattern.jpg');
    background-repeat: repeat;
}

.cta-content {
    max-width: 680px;
}

.cta-content h2 {
    font-size: clamp(1.65rem, 1.316rem + 1.0687vw, 2rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1rem;
    color: #ced4da;
    line-height: 1.4;
    margin-bottom: 2rem;
    max-width: 95%;
}

.cta-form {
    display: flex;
    gap: 0.3rem;
}

.cta-form input {
    flex-grow: 1;
    border: none;
    background: white;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    color: var(--color-text-darker);
    outline: none;
}

.cta-form input::placeholder {
    color: var(--color-text-light);
}

.cta-form .btn {
    background-color: #9B5656;
    border-color: #9B5656;
    color: white;
    font-size: 0.9rem;
    padding: 0 1.5rem;
}

.cta-form .btn:hover {
    background-color: #8a4a4a;
    border-color: #8a4a4a;
}

@media (max-width: 1024px) {
    .storyteller-cta-container {
        flex-direction: column;
    }

    .cta-image-column,
    .cta-content-column {
        width: 100%;
    }

    .cta-content-column {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .logo {
        width: 200px;
    }

    .menu {
        gap: 1rem;
    }

    header {
        padding: 0 1rem;
    }

    .cta-content p {
        font-size: 0.875rem;
    }

    .cta-form input {
        font-size: 0.875rem;
    }

    .cta-form .btn {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .story-meta {
        font-size: 0.75rem;
        padding-top: 0.25rem;
    }

    .story-image {
        height: 200px;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form .btn {
        text-align: center;
        justify-content: center;
    }
}

/* -------------------------------- */
/* ----- Archive Responsive ------- */
/* -------------------------------- */
@media (max-width: 1024px) {
    section.archive {
        padding: 0 1rem;
    }

    .archive-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .archive-container {
        flex-direction: column;
        padding: 2rem 0 3rem 0;
    }

    .toggle-filters-wrapper {
        display: block;
    }

    .collapsible-filters {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
        will-change: max-height, opacity;
    }

    .collapsible-filters.is-open {
        max-height: 1500px;
        /* Should be larger than the content */
        opacity: 1;
    }

    .filter-form {
        gap: 0;
    }

    .search-field+.toggle-filters-wrapper {
        margin-top: 1.5rem;
    }

    .collapsible-filters-content {
        padding-top: 1.5rem;
    }

    .archive-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .community-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .community-name {
        font-size: 1.1rem;
    }

    .latest-episode {
        flex-wrap: wrap;
    }

    .category-link {
        font-size: 0.75rem;
    }
}

@media (max-width: 550px) {
    .archive-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* section.archive {
        padding: 0;
    } */
}