:root {
    --color-primary: #2D3748;
    --color-secondary: #718096;
    --color-accent: #B85D38;
    --color-accent-hover: #9E4A28;
    --color-bg-primary: #FAF8F5;
    --color-bg-secondary: #F3EFEA;
    --color-bg-surface: #FFFFFF;
    --color-bg-card: #FFFFFF;
    --color-text-primary: #1A202C;
    --color-text-secondary: #4A5568;
    --color-text-muted: #718096;
    --color-border: #E5DFD7;
    --color-border-subtle: #EFECE6;
    --shadow-soft: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
    --shadow-hover: 0 10px 25px -4px rgba(45, 55, 72, 0.08);
    --font-headings: 'Lora', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    overflow-x: clip;
}

.site-footer__logo {
    filter: brightness(0) invert(1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    color: var(--color-primary);
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    color: var(--color-text-secondary);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}

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

.text-muted {
    color: var(--color-text-muted) !important;
}

/* ===== header ===== */
.site-header-block {
    background-color: #FAF8F5;
    border-bottom: 1px solid #E5DFD7;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    z-index: 1030
}

.site-header-block .navbar {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    background-color: #FAF8F5
}

.site-header-block .site-header-block__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: block
}

.site-header-block .site-header-block__brand-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A202C;
    letter-spacing: -0.02em;
    line-height: 1.2
}

.site-header-block .site-header-block__link {
    color: #4A5568;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 4px;
    transition: color 0.25s ease, background-color 0.25s ease
}

.site-header-block .site-header-block__link:hover,
.site-header-block .site-header-block__link:focus {
    color: #B85D38;
    background-color: #F3EFEA
}

.site-header-block .site-header-block__toggler {
    border: 1px solid #E5DFD7;
    padding: 0.45rem 0.65rem;
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #1A202C
}

.site-header-block .site-header-block__toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 93, 56, 0.15);
    outline: none
}

.site-header-block .site-header-block__toggler-icon {
    font-size: 1.5rem;
    display: block;
    color: #1A202C
}

.site-header-block .site-header-block__btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2D3748;
    color: #FAF8F5;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 6px;
    border: 1px solid #2D3748;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none
}

.site-header-block .site-header-block__btn-cta:hover,
.site-header-block .site-header-block__btn-cta:focus {
    background-color: #B85D38;
    border-color: #B85D38;
    color: #FFFFFF
}

@media(max-width:991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FAF8F5;
        padding: 1.25rem 0;
        border-top: 1px solid #EFECE6;
        margin-top: 0.75rem
    }

    .site-header-block .site-header-block__brand-name {
        font-size: 1.1rem
    }

    .site-header-block .site-header-block__link {
        font-size: 0.875rem;
        padding: 0.6rem 0.75rem
    }

    .site-header-block .site-header-block__btn-cta {
        width: 100%;
        text-align: center
    }
}

/* ===== hero ===== */
.hero-section {
    min-height: 90vh;
    background-color: #1A202C;
    color: #FAF8F5;
    overflow: hidden;
}

.hero-section .hero-bg-media img {
    object-fit: cover;
    filter: saturate(0.85) contrast(1.15) brightness(0.8);
}

.hero-section .hero-overlay {
    background: none;
}

.hero-section .hero-badge {
    background: rgba(45, 55, 72, 0.85);
    border: 1px solid rgba(184, 93, 56, 0.4);
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

.hero-section .text-accent {
    color: #B85D38;
}

.hero-section .hero-badge-text {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FAF8F5;
    font-weight: 600;
}

.hero-section .hero-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 2.75rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.2;
    color: #FAF8F5;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.02em;
}

.hero-section .hero-lead {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #E2E8F0;
}

.hero-section .hero-feature-item {
    font-size: 0.9375rem;
    color: #E2E8F0;
    font-weight: 500;
}

.hero-section .hero-feature-item i {
    font-size: 1.25rem;
}

.hero-section .btn-primary-custom {
    background-color: #B85D38;
    border: 1px solid #B85D38;
    color: #FAF8F5;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-section .btn-primary-custom:hover {
    background-color: #9E4A28;
    border-color: #9E4A28;
    color: #FAF8F5;
    transform: translateY(-2px);
}

.hero-section .btn-secondary-custom {
    background-color: transparent;
    border: 1px solid #E5DFD7;
    color: #FAF8F5;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-section .btn-secondary-custom:hover {
    background-color: rgba(250, 248, 245, 0.1);
    color: #FAF8F5;
    border-color: #FAF8F5;
    transform: translateY(-2px);
}

.hero-section .hero-form-card {
    background-color: #FAF8F5;
    border-radius: 6px;
    border: 1px solid #E5DFD7;
    box-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.35);
    color: #1A202C;
}

.hero-section .hero-form-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.75rem;
    color: #1A202C;
    font-weight: 700;
}

.hero-section .hero-form-subtitle {
    font-size: 0.9375rem;
    color: #4A5568;
    line-height: 1.5;
}

.hero-section .form-label {
    font-size: 0.875rem;
    color: #2D3748;
    margin-bottom: 0.35rem;
}

.hero-section .hero-input {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
    color: #1A202C;
    border-radius: 4px;
    padding: 0.65rem 0.75rem 0.65rem 2.25rem;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-section textarea.hero-input {
    padding-left: 0.75rem;
}

.hero-section .hero-input:focus {
    border-color: #B85D38;
    box-shadow: 0 0 0 3px rgba(184, 93, 56, 0.2);
    background-color: #FFFFFF;
    color: #1A202C;
}

.hero-section .hero-input::placeholder {
    color: #718096;
    opacity: 1;
}

.hero-section .input-icon {
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    font-size: 1.1rem;
    pointer-events: none;
}

.hero-section .btn-submit-custom {
    background-color: #2D3748;
    border: 1px solid #2D3748;
    color: #FAF8F5;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-section .btn-submit-custom:hover {
    background-color: #1A202C;
    border-color: #1A202C;
    color: #FAF8F5;
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
    }

    .hero-section .hero-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .hero-section .hero-form-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .hero-section .hero-form-subtitle {
        font-size: 0.875rem;
    }

    .hero-section .hero-lead {
        font-size: 0.9375rem;
    }
}

/* ===== category_navigation ===== */
.category-nav-section {
    background-color: #FAF8F5;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: #1A202C;
}

.category-nav-section .category-nav-badge {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #B85D38;
}

.category-nav-section .category-nav-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    line-height: 1.25;
    color: #1A202C;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .category-nav-section .category-nav-title {
        font-size: 1.5rem;
        hyphens: auto;
    }
}

.category-nav-section .category-nav-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4A5568;
}

.category-nav-section .category-card {
    position: relative;
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
    border-radius: 6px;
    padding: 2rem;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.category-nav-section .category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -4px rgba(45, 55, 72, 0.08);
    border-color: #B85D38;
}

.category-nav-section .category-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background-color: #F3EFEA;
    color: #B85D38;
    font-size: 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.category-nav-section .category-card:hover .category-icon-wrapper {
    background-color: #2D3748;
    color: #FAF8F5;
}

.category-nav-section .category-count-badge {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #718096;
    background-color: #FAF8F5;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1px solid #EFECE6;
}

.category-nav-section .category-card-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 600;
}

.category-nav-section .category-card-title a {
    color: #1A202C;
    transition: color 0.3s ease;
}

.category-nav-section .category-card:hover .category-card-title a {
    color: #B85D38;
}

.category-nav-section .category-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4A5568;
}

.category-nav-section .category-card-footer {
    border-color: #EFECE6 !important;
}

.category-nav-section .category-action-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2D3748;
    transition: color 0.3s ease;
}

.category-nav-section .category-action-arrow {
    font-size: 1rem;
    color: #B85D38;
    transition: transform 0.3s ease;
}

.category-nav-section .category-card:hover .category-action-text {
    color: #B85D38;
}

.category-nav-section .category-card:hover .category-action-arrow {
    transform: translateX(4px);
}

/* ===== recent_publications ===== */
.recent-publications-block {
    background-color: #FAF8F5;
    color: #1A202C;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.recent-publications-block__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    background-color: #F3EFEA;
    color: #B85D38;
    border: 1px solid #E5DFD7;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.recent-publications-block__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.25;
    color: #1A202C;
    letter-spacing: -0.02em;
}

.recent-publications-block__subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4A5568;
}

.recent-publications-block__card {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
}

.recent-publications-block__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -4px rgba(45, 55, 72, 0.08);
    border-color: #B85D38;
}

.recent-publications-block__image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #F3EFEA;
}

.recent-publications-block__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recent-publications-block__card:hover .recent-publications-block__image {
    transform: scale(1.03);
}

.recent-publications-block__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(45, 55, 72, 0.9);
    color: #FAF8F5;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.recent-publications-block__meta {
    font-size: 0.8125rem;
    color: #718096;
    font-weight: 500;
}

.recent-publications-block__card-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
}

.recent-publications-block__title-link {
    color: #1A202C;
    text-decoration: none;
    transition: color 0.2s ease;
}

.recent-publications-block__title-link:hover {
    color: #B85D38;
}

.recent-publications-block__excerpt {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4A5568;
}

.recent-publications-block__footer {
    border-color: #EFECE6 !important;
}

.recent-publications-block__action-link {
    color: #B85D38;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.recent-publications-block__action-link:hover {
    color: #9E4A28;
}

.recent-publications-block__action-link i {
    transition: transform 0.2s ease;
}

.recent-publications-block__action-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 767.98px) {
    .recent-publications-block__title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .recent-publications-block__card-title {
        font-size: 1.15rem;
        hyphens: auto;
    }

    .recent-publications-block__subtitle {
        font-size: 1rem;
    }
}

/* ===== tag_cloud ===== */
.tag-cloud-section {
    background-color: #FAF8F5;
    color: #1A202C;
}

.tag-cloud-section .tag-cloud-badge {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #B85D38;
    background-color: #F3EFEA;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    border: 1px solid #E5DFD7;
}

.tag-cloud-section .tag-cloud-title {
    font-family: 'Lora', Georgia, serif;
    color: #1A202C;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.25;
}

.tag-cloud-section .tag-cloud-subtitle {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: #4A5568;
    font-size: 1.125rem;
    line-height: 1.75;
}

.tag-cloud-section .tag-cloud-container {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
    border-radius: 6px;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.tag-cloud-section .tag-pill {
    border: 1px solid #E5DFD7;
    background-color: #FAF8F5;
    color: #2D3748;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.tag-cloud-section .tag-pill .tag-count {
    background-color: #EFECE6;
    color: #4A5568;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.45rem;
    border-radius: 12px;
}

.tag-cloud-section .tag-pill--xl {
    font-size: 1.125rem;
    padding: 0.65rem 1.25rem;
    font-weight: 600;
}

.tag-cloud-section .tag-pill--lg {
    font-size: 1rem;
    padding: 0.55rem 1.15rem;
}

.tag-cloud-section .tag-pill--md {
    font-size: 0.9375rem;
    padding: 0.45rem 1rem;
}

.tag-cloud-section .tag-pill--sm {
    font-size: 0.875rem;
    padding: 0.4rem 0.85rem;
}

.tag-cloud-section .tag-pill:hover {
    border-color: #B85D38;
    color: #B85D38;
    background-color: #FFFFFF;
    transform: translateY(-2px);
}

.tag-cloud-section .tag-pill.is-active {
    background-color: #2D3748;
    border-color: #2D3748;
    color: #FAF8F5;
}

.tag-cloud-section .tag-pill.is-active .tag-count {
    background-color: #B85D38;
    color: #FFFFFF;
}

.tag-cloud-section .tag-article-card {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
    border-radius: 6px;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.tag-cloud-section .tag-article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -4px rgba(45, 55, 72, 0.08);
}

.tag-cloud-section .tag-article-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.tag-cloud-section .tag-article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tag-cloud-section .tag-article-card:hover .tag-article-media img {
    transform: scale(1.03);
}

.tag-cloud-section .tag-article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(45, 55, 72, 0.85);
    color: #FAF8F5;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.tag-cloud-section .tag-article-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 600;
}

.tag-cloud-section .tag-article-title a {
    color: #1A202C;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tag-cloud-section .tag-article-title a:hover {
    color: #B85D38;
}

.tag-cloud-section .tag-article-excerpt {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4A5568;
}

.tag-cloud-section .tag-article-footer {
    font-size: 0.875rem;
    border-color: #EFECE6 !important;
}

.tag-cloud-section .tag-article-author {
    color: #718096;
    font-weight: 500;
}

.tag-cloud-section .tag-article-link {
    color: #B85D38;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.tag-cloud-section .tag-article-link:hover {
    color: #9E4A28;
    transform: translateX(2px);
}

.tag-cloud-section .tag-empty-state {
    background-color: #FFFFFF;
    border: 1px dashed #E5DFD7;
    border-radius: 6px;
}

@media (max-width: 767.98px) {
    .tag-cloud-section .tag-cloud-title {
        font-size: 16px;
        hyphens: auto;
    }

    .tag-cloud-section .tag-article-title {
        font-size: 14px;
        hyphens: auto;
    }

    .tag-cloud-section .tag-pill--xl,
    .tag-cloud-section .tag-pill--lg,
    .tag-cloud-section .tag-pill--md,
    .tag-cloud-section .tag-pill--sm {
        font-size: 0.85rem;
        padding: 0.35rem 0.75rem;
    }
}

/* ===== step_by_step_guides ===== */
.step-guides-block {
    background-color: #FAF8F5;
    color: #1A202C;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.step-guides-block .step-guides-badge {
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    color: #B85D38;
}

.step-guides-block .step-guides-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.25;
    color: #2D3748;
}

.step-guides-block .step-guides-lead {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4A5568;
    margin-left: auto;
    margin-right: auto;
}

.step-guides-block .step-guides-tabs-nav {
    background-color: #F3EFEA;
    border: 1px solid #E5DFD7;
}

.step-guides-block .step-guides-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: 1px solid transparent;
    background-color: transparent;
    color: #4A5568;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.step-guides-block .step-guides-tab-btn:hover {
    color: #2D3748;
    background-color: #FAF8F5;
}

.step-guides-block .step-guides-tab-btn.active {
    background-color: #2D3748;
    color: #FAF8F5;
    border-color: #2D3748;
}

.step-guides-block .step-guide-card {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-guides-block .step-guide-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -4px rgba(45, 55, 72, 0.08);
    border-color: #B85D38;
}

.step-guides-block .step-number {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.5rem;
    color: #B85D38;
    line-height: 1;
}

.step-guides-block .step-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #FAF8F5;
    color: #2D3748;
    font-size: 1.125rem;
}

.step-guides-block .step-card-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2D3748;
}

.step-guides-block .step-card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 0;
}

.step-guides-block .step-card-meta {
    border-color: #EFECE6 !important;
}

.step-guides-block .meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #718096;
}

.step-guides-block .step-guides-callout {
    background-color: #F3EFEA;
    border: 1px solid #E5DFD7;
}

.step-guides-block .callout-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #2D3748;
    line-height: 1.3;
}

.step-guides-block .callout-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4A5568;
}

.step-guides-block .step-guides-cta-btn {
    background-color: #2D3748;
    color: #FAF8F5;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
}

.step-guides-block .step-guides-cta-btn:hover {
    background-color: #B85D38;
    color: #FAF8F5;
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .step-guides-block .step-guides-title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .step-guides-block .step-guides-lead {
        font-size: 1rem;
    }

    .step-guides-block .step-card-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .step-guides-block .callout-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .step-guides-block .step-guides-tab-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== infographics ===== */
.infographics-section {
    background-color: #FAF8F5;
    color: #1A202C;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.infographics-section .infographics-badge {
    background-color: #F3EFEA;
    color: #B85D38;
    border: 1px solid #E5DFD7;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.infographics-section .infographics-badge i {
    font-size: 1rem;
}

.infographics-section .infographics-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    color: #1A202C;
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.infographics-section .infographics-intro {
    color: #4A5568;
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 760px;
    margin: 0 auto;
}

.infographics-section .infographics-card {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
    border-radius: 6px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.infographics-section .infographics-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -4px rgba(45, 55, 72, 0.08);
}

.infographics-section .infographics-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background-color: #F3EFEA;
    color: #2D3748;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.infographics-section .infographics-percent {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #B85D38;
    line-height: 1;
}

.infographics-section .infographics-metric-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.infographics-section .infographics-metric-desc {
    font-size: 0.9375rem;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.infographics-section .infographics-progress-track {
    height: 6px;
    width: 100%;
    background-color: #EFECE6;
    border-radius: 3px;
    overflow: hidden;
}

.infographics-section .infographics-progress-bar {
    height: 100%;
    background-color: #B85D38;
    border-radius: 3px;
}

.infographics-section .infographics-panel {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
    border-radius: 6px;
    padding: 2.25rem;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.infographics-section .infographics-panel-icon {
    font-size: 1.5rem;
    color: #B85D38;
}

.infographics-section .infographics-panel-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.3;
}

.infographics-section .infographics-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1A202C;
}

.infographics-section .infographics-val {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #2D3748;
}

.infographics-section .infographics-bar-bg {
    height: 8px;
    width: 100%;
    background-color: #EFECE6;
    border-radius: 4px;
    overflow: hidden;
}

.infographics-section .infographics-bar-fill {
    height: 100%;
    border-radius: 4px;
}

.infographics-section .infographics-bar-fill-accent {
    background-color: #B85D38;
}

.infographics-section .infographics-bar-fill-primary {
    background-color: #2D3748;
}

.infographics-section .infographics-bar-fill-secondary {
    background-color: #718096;
}

.infographics-section .infographics-summary-box {
    background-color: #F3EFEA;
    border: 1px solid #E5DFD7;
    border-radius: 6px;
    padding: 2.25rem;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.infographics-section .infographics-quote-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #B85D38;
    color: #FAF8F5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.infographics-section .infographics-summary-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.3;
}

.infographics-section .infographics-summary-text {
    font-size: 0.9375rem;
    color: #4A5568;
    line-height: 1.65;
    margin-bottom: 0;
}

.infographics-section .infographics-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #2D3748;
    color: #FAF8F5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.infographics-section .infographics-meta-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1A202C;
}

@media (max-width: 767.98px) {
    .infographics-section .infographics-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .infographics-section .infographics-intro {
        font-size: 0.9375rem;
    }

    .infographics-section .infographics-metric-name {
        font-size: 0.875rem;
    }

    .infographics-section .infographics-panel-title,
    .infographics-section .infographics-summary-title {
        font-size: 0.875rem;
    }

    .infographics-section .infographics-card,
    .infographics-section .infographics-panel,
    .infographics-section .infographics-summary-box {
        padding: 1.5rem 1.25rem;
    }
}

/* ===== footer ===== */
.site-footer {
    background-color: #2D3748;
    color: #E2E8F0;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    border-top: 1px solid rgba(229, 223, 215, 0.15);
}

.site-footer__main {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.12);
}

.site-footer__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: #FAF8F5;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.site-footer__heading {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FAF8F5;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.site-footer__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #A0AEC0;
    margin-bottom: 1.5rem;
    max-width: 440px;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #FAF8F5;
    line-height: 1.5;
}

.site-footer__icon {
    font-size: 1.125rem;
    color: #B85D38;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.site-footer__link {
    color: #FAF8F5;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    word-break: break-all;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #B85D38;
    text-decoration: underline;
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__nav-link {
    color: #E2E8F0;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    line-height: 1.5;
}

.site-footer__nav-link:hover,
.site-footer__nav-link:focus {
    color: #B85D38;
    transform: translateX(3px);
}

.site-footer__bottom {
    padding-top: 2rem;
}

.site-footer__copyright {
    font-size: 0.875rem;
    color: #A0AEC0;
    margin-bottom: 0;
    line-height: 1.6;
}

.site-footer__meta {
    font-size: 0.875rem;
    color: #A0AEC0;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 3.5rem;
        padding-bottom: 2rem;
    }

    .site-footer__title {
        font-size: 1.35rem;
    }

    .site-footer__heading {
        font-size: 1.05rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .site-footer__main {
        padding-bottom: 2.5rem;
    }

    .site-footer__bottom {
        padding-top: 1.5rem;
    }
}

.site-header-block {
    background-color: #FAF8F5;
    border-bottom: 1px solid #E5DFD7;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    z-index: 1030;
}

.site-header-block .navbar {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    background-color: #FAF8F5;
}

.site-header-block .site-header-block__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: block;
}

.site-header-block .site-header-block__brand-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A202C;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.site-header-block .site-header-block__link {
    color: #4A5568;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 4px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.site-header-block .site-header-block__link:hover,
.site-header-block .site-header-block__link:focus {
    color: #B85D38;
    background-color: #F3EFEA;
}

.site-header-block .site-header-block__toggler {
    border: 1px solid #E5DFD7;
    padding: 0.45rem 0.65rem;
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #1A202C;
}

.site-header-block .site-header-block__toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 93, 56, 0.15);
    outline: none;
}

.site-header-block .site-header-block__toggler-icon {
    font-size: 1.5rem;
    display: block;
    color: #1A202C;
}

.site-header-block .site-header-block__btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2D3748;
    color: #FAF8F5;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 6px;
    border: 1px solid #2D3748;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.site-header-block .site-header-block__btn-cta:hover,
.site-header-block .site-header-block__btn-cta:focus {
    background-color: #B85D38;
    border-color: #B85D38;
    color: #FFFFFF;
}

@media(max-width:991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FAF8F5;
        padding: 1.25rem 0;
        border-top: 1px solid #EFECE6;
        margin-top: 0.75rem;
    }

    .site-header-block .site-header-block__brand-name {
        font-size: 1.1rem;
    }

    .site-header-block .site-header-block__link {
        font-size: 0.875rem;
        padding: 0.6rem 0.75rem;
    }

    .site-header-block .site-header-block__btn-cta {
        width: 100%;
        text-align: center;
    }
}

.hero-section {
    min-height: 45vh;
    background-color: #1A202C;
    color: #FAF8F5;
    overflow: hidden;
}

.hero-section .hero-bg-media img {
    object-fit: cover;
    filter: saturate(0.85) contrast(1.15) brightness(0.8);
}

.hero-section .hero-overlay {
    background: none;
}

.hero-section .hero-badge {
    background: rgba(45, 55, 72, 0.85);
    border: 1px solid rgba(184, 93, 56, 0.4);
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

.hero-section .text-accent {
    color: #B85D38;
}

.hero-section .hero-badge-text {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FAF8F5;
    font-weight: 600;
}

.hero-section .hero-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.25;
    color: #FAF8F5;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.02em;
}

.hero-section .hero-lead {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #E2E8F0;
}

.hero-section .btn-primary-custom {
    background-color: #B85D38;
    border: 1px solid #B85D38;
    color: #FAF8F5;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-section .btn-primary-custom:hover {
    background-color: #9E4A28;
    border-color: #9E4A28;
    color: #FAF8F5;
    transform: translateY(-2px);
}

.category-content-section {
    background-color: #FAF8F5;
    color: #1A202C;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.category-content-section__heading {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1A202C;
    letter-spacing: -0.02em;
}

.category-content-section__subheading {
    font-size: 0.9375rem;
    color: #4A5568;
    line-height: 1.6;
}

.category-content-section .input-group-filter {
    min-width: 260px;
}

.category-content-section .js-category-search {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
    color: #1A202C;
    border-radius: 4px;
    padding: 0.6rem 0.75rem 0.6rem 2.25rem;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-content-section .js-category-search:focus {
    border-color: #B85D38;
    box-shadow: 0 0 0 3px rgba(184, 93, 56, 0.2);
    background-color: #FFFFFF;
    color: #1A202C;
    outline: none;
}

.category-content-section .js-category-search::placeholder {
    color: #718096;
    opacity: 1;
}

.category-content-section .input-filter-icon {
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    font-size: 1.1rem;
    pointer-events: none;
}

.category-card {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -4px rgba(45, 55, 72, 0.1);
}

.category-card__media {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: #E2E8F0;
}

.category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-card__image {
    transform: scale(1.03);
}

.category-card__badge {
    background-color: #2D3748;
    color: #FAF8F5;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.category-card__meta {
    font-size: 0.8125rem;
    color: #718096;
}

.category-card__meta-item i {
    color: #B85D38;
}

.category-card__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
}

.category-card__title-link {
    color: #1A202C;
    text-decoration: none;
    transition: color 0.25s ease;
}

.category-card__title-link:hover {
    color: #B85D38;
}

.category-card__summary {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4A5568;
}

.category-card__footer {
    border-color: #EFECE6 !important;
}

.category-card__cta {
    color: #B85D38;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.category-card__cta:hover {
    color: #9E4A28;
    transform: translateX(3px);
}

.category-card__comments-count {
    font-size: 0.8125rem;
    color: #718096;
}

.category-card__comments-count i {
    color: #B85D38;
}

.category-sidebar__card {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
    border-radius: 6px;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.category-sidebar__card-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A202C;
}

.category-sidebar__card-subtitle {
    font-size: 0.875rem;
    color: #4A5568;
    line-height: 1.5;
}

.category-sidebar__form .form-label {
    font-size: 0.875rem;
    color: #2D3748;
    margin-bottom: 0.35rem;
}

.category-sidebar .category-input {
    background-color: #FAF8F5;
    border: 1px solid #E5DFD7;
    color: #1A202C;
    border-radius: 4px;
    padding: 0.6rem 0.75rem 0.6rem 2.25rem;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-sidebar select.category-input {
    padding-left: 0.75rem;
}

.category-sidebar .category-input:focus {
    border-color: #B85D38;
    box-shadow: 0 0 0 3px rgba(184, 93, 56, 0.2);
    background-color: #FFFFFF;
    color: #1A202C;
    outline: none;
}

.category-sidebar .category-input::placeholder {
    color: #718096;
    opacity: 1;
}

.category-sidebar .input-icon {
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    font-size: 1.1rem;
    pointer-events: none;
}

.category-sidebar .btn-primary-custom {
    background-color: #2D3748;
    border: 1px solid #2D3748;
    color: #FAF8F5;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.category-sidebar .btn-primary-custom:hover {
    background-color: #B85D38;
    border-color: #B85D38;
    color: #FFFFFF;
}

.category-sidebar__list-text {
    font-size: 0.875rem;
    color: #4A5568;
    line-height: 1.5;
}

.site-footer {
    background-color: #2D3748;
    color: #E2E8F0;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    border-top: 1px solid rgba(229, 223, 215, 0.15);
}

.site-footer__main {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.12);
}

.site-footer__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: #FAF8F5;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.site-footer__heading {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FAF8F5;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.site-footer__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #A0AEC0;
    margin-bottom: 1.5rem;
    max-width: 440px;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #FAF8F5;
    line-height: 1.5;
}

.site-footer__icon {
    font-size: 1.125rem;
    color: #B85D38;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.site-footer__link {
    color: #FAF8F5;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    word-break: break-all;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #B85D38;
    text-decoration: underline;
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__nav-link {
    color: #E2E8F0;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    line-height: 1.5;
}

.site-footer__nav-link:hover,
.site-footer__nav-link:focus {
    color: #B85D38;
    transform: translateX(3px);
}

.site-footer__bottom {
    padding-top: 2rem;
}

.site-footer__copyright {
    font-size: 0.875rem;
    color: #A0AEC0;
    margin-bottom: 0;
    line-height: 1.6;
}

.site-footer__meta {
    font-size: 0.875rem;
    color: #A0AEC0;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .hero-section .hero-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .hero-section .hero-lead {
        font-size: 0.9375rem;
    }

    .category-content-section__heading {
        font-size: 1rem;
        hyphens: auto;
    }

    .category-card__title {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .category-sidebar__card-title {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .site-footer {
        padding-top: 3.5rem;
        padding-bottom: 2rem;
    }

    .site-footer__title {
        font-size: 1.35rem;
    }

    .site-footer__heading {
        font-size: 1.05rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .site-footer__main {
        padding-bottom: 2.5rem;
    }

    .site-footer__bottom {
        padding-top: 1.5rem;
    }
}


/* ===== PAGE: privacy ===== */
.policy-content { font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif; color: #1A202C; line-height: 1.85; max-width: 820px; margin: 0 auto; padding: 2.5rem 1.25rem 4rem 1.25rem; } .policy-content__intro { background-color: #FFFFFF; border: 1px solid #E5DFD7; border-radius: 6px; padding: 2rem 2.25rem; margin-bottom: 2.5rem; box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05); } .policy-content__meta { font-size: 0.9375rem; color: #B85D38; font-weight: 600; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; } .policy-content__meta i { font-size: 1.15rem; } .policy-content__lead { font-size: 1.125rem; color: #2D3748; margin-bottom: 0; line-height: 1.75; } .policy-content h2 { font-family: 'Lora', Georgia, serif; color: #1A202C; font-size: 1.65rem; font-weight: 700; line-height: 1.3; margin-top: 2.75rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid #EFECE6; letter-spacing: -0.02em; } .policy-content p { color: #4A5568; font-size: 1.0625rem; margin-bottom: 1.25rem; } .policy-content ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; } .policy-content li { color: #4A5568; font-size: 1.0625rem; margin-bottom: 0.75rem; line-height: 1.7; } .policy-content li strong { color: #2D3748; } .policy-content a { color: #B85D38; text-decoration: none; border-bottom: 1px solid rgba(184, 93, 56, 0.3); transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .policy-content a:hover { color: #9E4A28; border-bottom-color: #9E4A28; } @media (max-width: 767.98px) { .policy-content { padding: 1.5rem 1rem 3rem 1rem; } .policy-content__intro { padding: 1.25rem 1.25rem; margin-bottom: 2rem; } .policy-content h2 { font-size: 16px; margin-top: 2rem; hyphens: auto; } .policy-content h3 { font-size: 14px; hyphens: auto; } .policy-content p, .policy-content li, .policy-content__lead { font-size: 0.95rem; line-height: 1.65; } }

/* ===== PAGE: terms ===== */
.policy-content { font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif; color: #1A202C; background-color: #FFFFFF; line-height: 1.85; max-width: 820px; margin: 0 auto; padding: 3rem 1.5rem; } .policy-content h2 { font-family: 'Lora', Georgia, serif; color: #2D3748; font-size: 1.625rem; font-weight: 600; line-height: 1.3; margin-top: 2.5rem; margin-bottom: 1rem; border-bottom: 1px solid #E5DFD7; padding-bottom: 0.5rem; } .policy-content h2:first-of-type { margin-top: 0; } .policy-content p { font-size: 1.0625rem; color: #4A5568; margin-bottom: 1.25rem; } .policy-content ul { margin-top: 0.5rem; margin-bottom: 1.5rem; padding-left: 1.25rem; } .policy-content ul li { font-size: 1.0625rem; color: #4A5568; margin-bottom: 0.5rem; line-height: 1.7; } .policy-content strong { color: #2D3748; font-weight: 600; } .policy-content a { color: #B85D38; text-decoration: none; transition: color 0.3s ease; } .policy-content a:hover { color: #9E4A28; text-decoration: underline; } @media (max-width: 767.98px) { .policy-content { padding: 2rem 1rem; hyphens: auto; -webkit-hyphens: auto; } .policy-content h2 { font-size: 16px; margin-top: 1.75rem; margin-bottom: 0.75rem; } .policy-content p, .policy-content ul li { font-size: 0.9375rem; line-height: 1.6; } }

/* ===== PAGE: cookies ===== */
.policy-content { font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif; color: #4A5568; line-height: 1.8; font-size: 1.0625rem; } .policy-content .policy-intro { font-size: 1.125rem; color: #2D3748; margin-bottom: 2rem; font-weight: 400; line-height: 1.85; } .policy-content h2 { font-family: 'Lora', Georgia, serif; color: #1A202C; font-size: 1.75rem; font-weight: 600; line-height: 1.3; margin-top: 2.75rem; margin-bottom: 1rem; letter-spacing: -0.01em; } .policy-content h3 { font-family: 'Lora', Georgia, serif; color: #2D3748; font-size: 1.3rem; font-weight: 600; line-height: 1.35; margin-top: 1.75rem; margin-bottom: 0.75rem; } .policy-content p { margin-bottom: 1.25rem; } .policy-content strong { color: #1A202C; font-weight: 600; } .policy-content ul, .policy-content ol { margin-bottom: 1.75rem; padding-left: 1.5rem; } .policy-content li { margin-bottom: 0.625rem; } .policy-content a { color: #B85D38; text-decoration: underline; text-underline-offset: 3px; transition: color 0.25s ease; } .policy-content a:hover, .policy-content a:focus { color: #9E4A28; } @media (max-width: 767.98px) { .policy-content { font-size: 0.95rem; hyphens: auto; -webkit-hyphens: auto; } .policy-content h2 { font-size: 16px !important; margin-top: 2rem; margin-bottom: 0.75rem; } .policy-content h3 { font-size: 14px !important; margin-top: 1.25rem; margin-bottom: 0.5rem; } .policy-content .policy-intro { font-size: 1rem; margin-bottom: 1.5rem; } .policy-content ul, .policy-content ol { padding-left: 1.25rem; margin-bottom: 1.25rem; } }

/* ===== PAGE: about ===== */
.about-section {
  background-color: #FAF8F5;
  color: #1A202C;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.75;
}

.about-section .about-badge {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #B85D38;
  background-color: #F3EFEA;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  border: 1px solid #E5DFD7;
}

.about-section .about-main-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1A202C;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-section .about-lead-text {
  font-size: 1.125rem;
  color: #4A5568;
  max-width: 760px;
  line-height: 1.8;
}

.about-section .about-image-wrapper {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #E5DFD7;
  box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.about-section .about-feature-img {
  height: 380px;
  object-fit: cover;
  display: block;
}

.about-section .about-experience-card {
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background-color: #FFFFFF;
  border-radius: 6px;
  border: 1px solid #E5DFD7;
}

.about-section .about-exp-icon {
  width: 44px;
  height: 44px;
  background-color: #F3EFEA;
  color: #B85D38;
  border-radius: 4px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-section .about-exp-number {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D3748;
  line-height: 1.1;
}

.about-section .about-exp-label {
  font-size: 0.8125rem;
  color: #718096;
  line-height: 1.3;
}

.about-section .about-subheading-tag {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #B85D38;
}

.about-section .about-section-heading {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #1A202C;
  line-height: 1.28;
}

.about-section .about-paragraph {
  font-size: 1.05rem;
  color: #4A5568;
  line-height: 1.75;
}

.about-section .about-mini-metric {
  background-color: #FFFFFF;
  border: 1px solid #E5DFD7;
}

.about-section .about-metric-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.25rem;
  color: #2D3748;
}

.about-section .about-metric-desc {
  font-size: 0.875rem;
  color: #718096;
}

.about-section .text-accent {
  color: #B85D38;
}

.about-section .about-pillars-box {
  background-color: #F3EFEA;
  border: 1px solid #E5DFD7;
}

.about-section .about-tab-btn {
  background-color: #FFFFFF;
  color: #4A5568;
  border: 1px solid #E5DFD7;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.about-section .about-tab-btn:hover {
  background-color: #FAF8F5;
  color: #2D3748;
}

.about-section .about-tab-btn.active {
  background-color: #2D3748;
  color: #FAF8F5;
  border-color: #2D3748;
}

.about-section .about-tab-panel {
  display: none;
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid #E5DFD7;
}

.about-section .about-tab-panel.active {
  display: block;
}

.about-section .about-panel-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #1A202C;
  line-height: 1.3;
}

.about-section .about-feature-list li span {
  color: #4A5568;
  font-size: 0.95rem;
}

.about-section .about-link-action {
  font-weight: 600;
  color: #B85D38;
  font-size: 0.9375rem;
  border-bottom: 1px solid #B85D38;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.about-section .about-link-action:hover {
  color: #9E4A28;
  border-color: #9E4A28;
}

.about-section .about-panel-img-box img {
  height: 280px;
  object-fit: cover;
  border: 1px solid #EFECE6;
}

.about-section .about-card {
  background-color: #FFFFFF;
  border: 1px solid #E5DFD7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section .about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -4px rgba(45, 55, 72, 0.08) !important;
}

.about-section .about-card-icon {
  width: 48px;
  height: 48px;
  background-color: #F3EFEA;
  color: #B85D38;
  border-radius: 4px;
  font-size: 1.5rem;
}

.about-section .about-card-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A202C;
}

.about-section .about-card-text {
  font-size: 0.9375rem;
  color: #4A5568;
  line-height: 1.7;
}

.about-section .about-accordion-item {
  background-color: #FFFFFF;
  border: 1px solid #E5DFD7;
  overflow: hidden;
}

.about-section .about-accordion-trigger {
  background-color: transparent;
  border: none;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1A202C;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.about-section .about-accordion-trigger:hover {
  background-color: #FAF8F5;
}

.about-section .about-accordion-icon {
  font-size: 1.2rem;
  color: #718096;
  transition: transform 0.3s ease;
}

.about-section .about-accordion-trigger[aria-expanded="true"] .about-accordion-icon {
  transform: rotate(180deg);
  color: #B85D38;
}

.about-section .about-accordion-content {
  display: none;
  border-top: 1px solid #EFECE6;
  background-color: #FAF8F5;
}

.about-section .about-accordion-content.open {
  display: block;
}

.about-section .about-cta-banner {
  background-color: #2D3748;
  color: #FAF8F5;
}

.about-section .about-cta-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #FAF8F5;
}

.about-section .about-cta-subtitle {
  color: #E2E8F0;
  font-size: 1rem;
  max-width: 650px;
  line-height: 1.7;
}

.about-section .about-cta-button {
  background-color: #B85D38;
  color: #FAF8F5;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.about-section .about-cta-button:hover {
  background-color: #9E4A28;
  color: #FAF8F5;
}

@media (max-width: 767.98px) {
  .about-section .about-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .about-section .about-section-heading {
    font-size: 1rem;
    hyphens: auto;
  }
  .about-section .about-panel-title,
  .about-section .about-card-title,
  .about-section .about-cta-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .about-section .about-feature-img {
    height: 240px;
  }
  .about-section .about-experience-card {
    position: static !important;
    margin-top: 1rem;
  }
  .about-section .about-tab-panel {
    padding: 1.25rem;
  }
  .about-section .about-panel-img-box img {
    height: 200px;
  }
}

/* ===== PAGE: contact ===== */
.contact-page-section {
  background-color: #FAF8F5;
  color: #1A202C;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.contact-page-section__info-card {
  background-color: #FFFFFF;
  border: 1px solid #E5DFD7;
  border-radius: 6px;
  box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.contact-page-section__form-card {
  background-color: #FFFFFF;
  border: 1px solid #E5DFD7;
  border-radius: 6px;
  box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.contact-page-section__badge {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #B85D38;
  background-color: #F3EFEA;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.contact-page-section__main-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #1A202C;
}

.contact-page-section__form-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #1A202C;
}

.contact-page-section__intro-text,
.contact-page-section__form-subtitle {
  color: #4A5568;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.contact-page-section__icon-box {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background-color: #F3EFEA;
  color: #B85D38;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-page-section__item-title {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #2D3748;
  line-height: 1.3;
}

.contact-page-section__item-text {
  font-size: 0.9375rem;
  color: #4A5568;
  line-height: 1.5;
}

.contact-page-section__mail-link {
  color: #B85D38;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-page-section__mail-link:hover {
  color: #9E4A28;
  text-decoration: underline;
}

.contact-page-section__notice-text {
  color: #718096;
  line-height: 1.6;
}

.contact-page-section__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D3748;
  margin-bottom: 0.35rem;
}

.contact-page-section__input,
.contact-page-section__select,
.contact-page-section__textarea {
  background-color: #FAF8F5;
  border: 1px solid #E5DFD7;
  border-radius: 4px;
  color: #1A202C;
  font-size: 0.9375rem;
  padding: 0.65rem 0.875rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.contact-page-section__input:focus,
.contact-page-section__select:focus,
.contact-page-section__textarea:focus {
  background-color: #FFFFFF;
  border-color: #B85D38;
  box-shadow: 0 0 0 3px rgba(184, 93, 56, 0.15);
  color: #1A202C;
  outline: none;
}

.contact-page-section__input::placeholder,
.contact-page-section__textarea::placeholder {
  color: #A0AEC0;
  opacity: 1;
}

.contact-page-section__checkbox {
  border-color: #E5DFD7;
  background-color: #FAF8F5;
  cursor: pointer;
}

.contact-page-section__checkbox:checked {
  background-color: #B85D38;
  border-color: #B85D38;
}

.contact-page-section__checkbox-label {
  font-size: 0.8125rem;
  color: #4A5568;
  line-height: 1.5;
  cursor: pointer;
}

.contact-page-section__policy-link {
  color: #B85D38;
  text-decoration: underline;
}

.contact-page-section__policy-link:hover {
  color: #9E4A28;
}

.contact-page-section__submit-btn {
  background-color: #2D3748;
  color: #FAF8F5;
  border: 1px solid #2D3748;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.contact-page-section__submit-btn:hover {
  background-color: #B85D38;
  border-color: #B85D38;
  color: #FAF8F5;
}

@media (max-width: 767.98px) {
  .contact-page-section__main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .contact-page-section__form-title {
    font-size: 1rem;
    hyphens: auto;
  }
  .contact-page-section__item-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
}

.comment-item {
    background-color: #FFFFFF;
    border-color: #E5DFD7 !important;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.comment-item:hover {
    box-shadow: 0 10px 25px -4px rgba(45, 55, 72, 0.08);
}

.avatar-initials {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    background-color: #2D3748 !important;
    color: #FAF8F5 !important;
    user-select: none;
}

.comment-body p {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4A5568;
}

.border-subtle {
    border-color: #EFECE6 !important;
}

.btn-action {
    color: #718096;
    transition: color 0.2s ease;
}

.btn-action:hover {
    color: #B85D38 !important;
}

.font-headings {
    font-family: 'Lora', Georgia, serif;
}

.font-sans {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.comment-reply-item {
    background-color: #FFFFFF;
    border-color: #E5DFD7 !important;
    border-left: 3px solid #B85D38 !important;
    box-shadow: 0 2px 12px -2px rgba(45, 55, 72, 0.04);
}

.avatar-initials-sm {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    background-color: #B85D38 !important;
    color: #FAF8F5 !important;
    user-select: none;
}

.badge-author {
    background-color: #F3EFEA;
    color: #B85D38;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #E5DFD7;
}

.comment-body p {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #4A5568;
}

.border-subtle {
    border-color: #EFECE6 !important;
}

.btn-action {
    color: #718096;
    transition: color 0.2s ease;
}

.btn-action:hover {
    color: #B85D38 !important;
}

.font-headings {
    font-family: 'Lora', Georgia, serif;
}

.font-sans {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}


/* ===== PAGE TEMPLATE: oratory-posts ===== */
body.detail-page-body {
    background-color: #FAF8F5;
    color: #1A202C;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
}

.site-header-block {
    background-color: #FAF8F5;
    border-bottom: 1px solid #E5DFD7;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    z-index: 1030;
}

.site-header-block .navbar {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    background-color: #FAF8F5;
}

.site-header-block .site-header-block__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: block;
}

.site-header-block .site-header-block__brand-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A202C;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.site-header-block .site-header-block__link {
    color: #4A5568;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 4px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.site-header-block .site-header-block__link:hover,
.site-header-block .site-header-block__link:focus {
    color: #B85D38;
    background-color: #F3EFEA;
}

.site-header-block .site-header-block__toggler {
    border: 1px solid #E5DFD7;
    padding: 0.45rem 0.65rem;
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #1A202C;
}

.site-header-block .site-header-block__toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 93, 56, 0.15);
    outline: none;
}

.site-header-block .site-header-block__toggler-icon {
    font-size: 1.5rem;
    display: block;
    color: #1A202C;
}

.site-header-block .site-header-block__btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2D3748;
    color: #FAF8F5;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 6px;
    border: 1px solid #2D3748;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.site-header-block .site-header-block__btn-cta:hover,
.site-header-block .site-header-block__btn-cta:focus {
    background-color: #B85D38;
    border-color: #B85D38;
    color: #FFFFFF;
}

@media(max-width: 991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FAF8F5;
        padding: 1.25rem 0;
        border-top: 1px solid #EFECE6;
        margin-top: 0.75rem;
    }

    .site-header-block .site-header-block__brand-name {
        font-size: 1.1rem;
    }

    .site-header-block .site-header-block__link {
        font-size: 0.875rem;
        padding: 0.6rem 0.75rem;
    }

    .site-header-block .site-header-block__btn-cta {
        width: 100%;
        text-align: center;
    }
}

.detail-hero-section {
    background-color: #F3EFEA;
    border-bottom: 1px solid #E5DFD7;
}

.detail-hero-section__breadcrumb-link {
    color: #718096;
    text-decoration: none;
    transition: color 0.2s ease;
}

.detail-hero-section__breadcrumb-link:hover {
    color: #B85D38;
    text-decoration: underline;
}

.detail-hero-section__badge {
    background-color: rgba(184, 93, 56, 0.12);
    color: #B85D38;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.detail-hero-section__meta-item {
    color: #718096;
    font-size: 0.875rem;
}

.detail-hero-section__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.detail-hero-section__lead {
    font-size: 1.15rem;
    color: #4A5568;
    line-height: 1.6;
}

.detail-article-section {
    background-color: #FAF8F5;
}

.detail-article-section__media-wrapper {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
}

.detail-article-section__main-image {
    max-height: 480px;
    width: 100%;
}

.detail-article-section__image-caption {
    font-size: 0.85rem;
    background-color: #FAF8F5;
    border-top: 1px solid #EFECE6;
}

.detail-article-section__rich-text {
    color: #2D3748;
    font-size: 1.0625rem;
    line-height: 1.85;
}

.detail-article-section__paragraph {
    margin-bottom: 1.5rem;
    color: #2D3748;
}

.detail-article-section__quote {
    background-color: #F3EFEA;
    border-left-color: #B85D38 !important;
    font-style: italic;
}

.detail-article-section__quote-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    color: #1A202C;
    line-height: 1.6;
}

.detail-article-section__quote-author {
    font-size: 0.875rem;
    color: #718096;
    font-style: normal;
    font-weight: 600;
}

.detail-article-section__heading {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.3;
}

.detail-article-section__subheading {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1A202C;
}

.detail-article-section__highlight-box {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
}

.detail-article-section__checklist li {
    font-size: 1rem;
    color: #2D3748;
}

.detail-article-section__tag {
    background-color: #F3EFEA;
    color: #2D3748;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid #E5DFD7;
    border-radius: 4px;
}

.comments-container-block__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A202C;
}

.comment-item,
.comment-reply-item {
    border-color: #E5DFD7 !important;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.avatar-initials {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
    background-color: #2D3748 !important;
}

.avatar-initials-sm {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    background-color: #B85D38 !important;
}

.badge-author {
    background-color: #B85D38;
    color: #FFFFFF;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    letter-spacing: 0.05em;
}

.btn-action {
    transition: color 0.2s ease;
}

.btn-action:hover {
    color: #B85D38 !important;
}

.btn-action.is-liked {
    color: #B85D38 !important;
}

.btn-action.is-liked i {
    color: #B85D38 !important;
}

.comments-form-card {
    border-color: #E5DFD7 !important;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.comments-form-card__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A202C;
}

.form-input-custom {
    background-color: #FAF8F5;
    border: 1px solid #E5DFD7;
    color: #1A202C;
    border-radius: 4px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9375rem;
}

.form-input-custom:focus {
    background-color: #FFFFFF;
    border-color: #B85D38;
    box-shadow: 0 0 0 3px rgba(184, 93, 56, 0.15);
    color: #1A202C;
}

.form-input-custom::placeholder {
    color: #718096;
    opacity: 1;
}

.btn-primary-custom {
    background-color: #B85D38;
    border: 1px solid #B85D38;
    color: #FAF8F5;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: #9E4A28;
    border-color: #9E4A28;
    color: #FAF8F5;
}

.detail-sidebar__card {
    border-color: #E5DFD7 !important;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.detail-sidebar__card-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A202C;
}

.detail-sidebar__recent-link .detail-sidebar__link-text {
    font-size: 0.9375rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.detail-sidebar__recent-link:hover .detail-sidebar__link-text {
    color: #B85D38 !important;
}

.text-accent {
    color: #B85D38 !important;
}

.font-headings {
    font-family: 'Lora', Georgia, serif;
}

.font-sans {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.site-footer {
    background-color: #2D3748;
    color: #E2E8F0;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    border-top: 1px solid rgba(229, 223, 215, 0.15);
}

.site-footer__main {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.12);
}

.site-footer__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: #FAF8F5;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.site-footer__heading {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FAF8F5;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.site-footer__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #A0AEC0;
    margin-bottom: 1.5rem;
    max-width: 440px;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #FAF8F5;
    line-height: 1.5;
}

.site-footer__icon {
    font-size: 1.125rem;
    color: #B85D38;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.site-footer__link {
    color: #FAF8F5;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    word-break: break-all;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #B85D38;
    text-decoration: underline;
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__nav-link {
    color: #E2E8F0;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    line-height: 1.5;
}

.site-footer__nav-link:hover,
.site-footer__nav-link:focus {
    color: #B85D38;
    transform: translateX(3px);
}

.site-footer__bottom {
    padding-top: 2rem;
}

.site-footer__copyright {
    font-size: 0.875rem;
    color: #A0AEC0;
    margin-bottom: 0;
    line-height: 1.6;
}

.site-footer__meta {
    font-size: 0.875rem;
    color: #A0AEC0;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .detail-hero-section__title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .detail-hero-section__lead {
        font-size: 0.9375rem;
    }

    .detail-article-section__heading {
        font-size: 1rem;
        hyphens: auto;
    }

    .detail-article-section__subheading,
    .comments-container-block__title,
    .comments-form-card__title,
    .detail-sidebar__card-title {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .site-footer {
        padding-top: 3.5rem;
        padding-bottom: 2rem;
    }

    .site-footer__title {
        font-size: 1.35rem;
    }

    .site-footer__heading {
        font-size: 1.05rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .site-footer__main {
        padding-bottom: 2.5rem;
    }

    .site-footer__bottom {
        padding-top: 1.5rem;
    }
}

/* ===== PAGE TEMPLATE: media-posts ===== */
body.detail-page-body {
    background-color: #FAF8F5;
    color: #1A202C;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
}

.site-header-block {
    background-color: #FAF8F5;
    border-bottom: 1px solid #E5DFD7;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    z-index: 1030;
}

.site-header-block .navbar {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    background-color: #FAF8F5;
}

.site-header-block .site-header-block__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: block;
}

.site-header-block .site-header-block__brand-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A202C;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.site-header-block .site-header-block__link {
    color: #4A5568;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 4px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.site-header-block .site-header-block__link:hover,
.site-header-block .site-header-block__link:focus {
    color: #B85D38;
    background-color: #F3EFEA;
}

.site-header-block .site-header-block__toggler {
    border: 1px solid #E5DFD7;
    padding: 0.45rem 0.65rem;
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #1A202C;
}

.site-header-block .site-header-block__toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 93, 56, 0.15);
    outline: none;
}

.site-header-block .site-header-block__toggler-icon {
    font-size: 1.5rem;
    display: block;
    color: #1A202C;
}

.site-header-block .site-header-block__btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2D3748;
    color: #FAF8F5;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 6px;
    border: 1px solid #2D3748;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.site-header-block .site-header-block__btn-cta:hover,
.site-header-block .site-header-block__btn-cta:focus {
    background-color: #B85D38;
    border-color: #B85D38;
    color: #FFFFFF;
}

@media(max-width: 991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FAF8F5;
        padding: 1.25rem 0;
        border-top: 1px solid #EFECE6;
        margin-top: 0.75rem;
    }

    .site-header-block .site-header-block__brand-name {
        font-size: 1.1rem;
    }

    .site-header-block .site-header-block__link {
        font-size: 0.875rem;
        padding: 0.6rem 0.75rem;
    }

    .site-header-block .site-header-block__btn-cta {
        width: 100%;
        text-align: center;
    }
}

.detail-hero-section {
    background-color: #F3EFEA;
    border-bottom: 1px solid #E5DFD7;
}

.detail-hero-section__breadcrumb-link {
    color: #718096;
    text-decoration: none;
    transition: color 0.2s ease;
}

.detail-hero-section__breadcrumb-link:hover {
    color: #B85D38;
    text-decoration: underline;
}

.detail-hero-section__badge {
    background-color: rgba(184, 93, 56, 0.12);
    color: #B85D38;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.detail-hero-section__meta-item {
    color: #718096;
    font-size: 0.875rem;
}

.detail-hero-section__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.detail-hero-section__lead {
    font-size: 1.15rem;
    color: #4A5568;
    line-height: 1.6;
}

.detail-article-section {
    background-color: #FAF8F5;
}

.detail-article-section__media-wrapper {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
}

.detail-article-section__main-image {
    max-height: 480px;
    width: 100%;
}

.detail-article-section__image-caption {
    font-size: 0.85rem;
    background-color: #FAF8F5;
    border-top: 1px solid #EFECE6;
}

.detail-article-section__rich-text {
    color: #2D3748;
    font-size: 1.0625rem;
    line-height: 1.85;
}

.detail-article-section__paragraph {
    margin-bottom: 1.5rem;
    color: #2D3748;
}

.detail-article-section__quote {
    background-color: #F3EFEA;
    border-left-color: #B85D38 !important;
    font-style: italic;
}

.detail-article-section__quote-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    color: #1A202C;
    line-height: 1.6;
}

.detail-article-section__quote-author {
    font-size: 0.875rem;
    color: #718096;
    font-style: normal;
    font-weight: 600;
}

.detail-article-section__heading {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.3;
}

.detail-article-section__subheading {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1A202C;
}

.detail-article-section__highlight-box {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
}

.detail-article-section__checklist li {
    font-size: 1rem;
    color: #2D3748;
}

.detail-article-section__tag {
    background-color: #F3EFEA;
    color: #2D3748;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid #E5DFD7;
    border-radius: 4px;
}

.comments-container-block__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A202C;
}

.comment-item,
.comment-reply-item {
    border-color: #E5DFD7 !important;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.avatar-initials {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
    background-color: #2D3748 !important;
}

.avatar-initials-sm {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    background-color: #B85D38 !important;
}

.badge-author {
    background-color: #B85D38;
    color: #FFFFFF;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    letter-spacing: 0.05em;
}

.btn-action {
    transition: color 0.2s ease;
}

.btn-action:hover {
    color: #B85D38 !important;
}

.btn-action.is-liked {
    color: #B85D38 !important;
}

.btn-action.is-liked i {
    color: #B85D38 !important;
}

.comments-form-card {
    border-color: #E5DFD7 !important;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.comments-form-card__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A202C;
}

.form-input-custom {
    background-color: #FAF8F5;
    border: 1px solid #E5DFD7;
    color: #1A202C;
    border-radius: 4px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9375rem;
}

.form-input-custom:focus {
    background-color: #FFFFFF;
    border-color: #B85D38;
    box-shadow: 0 0 0 3px rgba(184, 93, 56, 0.15);
    color: #1A202C;
}

.form-input-custom::placeholder {
    color: #718096;
    opacity: 1;
}

.btn-primary-custom {
    background-color: #B85D38;
    border: 1px solid #B85D38;
    color: #FAF8F5;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: #9E4A28;
    border-color: #9E4A28;
    color: #FAF8F5;
}

.detail-sidebar__card {
    border-color: #E5DFD7 !important;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.detail-sidebar__card-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A202C;
}

.detail-sidebar__recent-link .detail-sidebar__link-text {
    font-size: 0.9375rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.detail-sidebar__recent-link:hover .detail-sidebar__link-text {
    color: #B85D38 !important;
}

.text-accent {
    color: #B85D38 !important;
}

.font-headings {
    font-family: 'Lora', Georgia, serif;
}

.font-sans {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.site-footer {
    background-color: #2D3748;
    color: #E2E8F0;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    border-top: 1px solid rgba(229, 223, 215, 0.15);
}

.site-footer__main {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.12);
}

.site-footer__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: #FAF8F5;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.site-footer__heading {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FAF8F5;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.site-footer__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #A0AEC0;
    margin-bottom: 1.5rem;
    max-width: 440px;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #FAF8F5;
    line-height: 1.5;
}

.site-footer__icon {
    font-size: 1.125rem;
    color: #B85D38;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.site-footer__link {
    color: #FAF8F5;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    word-break: break-all;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #B85D38;
    text-decoration: underline;
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__nav-link {
    color: #E2E8F0;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    line-height: 1.5;
}

.site-footer__nav-link:hover,
.site-footer__nav-link:focus {
    color: #B85D38;
    transform: translateX(3px);
}

.site-footer__bottom {
    padding-top: 2rem;
}

.site-footer__copyright {
    font-size: 0.875rem;
    color: #A0AEC0;
    margin-bottom: 0;
    line-height: 1.6;
}

.site-footer__meta {
    font-size: 0.875rem;
    color: #A0AEC0;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .detail-hero-section__title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .detail-hero-section__lead {
        font-size: 0.9375rem;
    }

    .detail-article-section__heading {
        font-size: 1rem;
        hyphens: auto;
    }

    .detail-article-section__subheading,
    .comments-container-block__title,
    .comments-form-card__title,
    .detail-sidebar__card-title {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .site-footer {
        padding-top: 3.5rem;
        padding-bottom: 2rem;
    }

    .site-footer__title {
        font-size: 1.35rem;
    }

    .site-footer__heading {
        font-size: 1.05rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .site-footer__main {
        padding-bottom: 2.5rem;
    }

    .site-footer__bottom {
        padding-top: 1.5rem;
    }
}

/* ===== PAGE TEMPLATE: podcasts-posts ===== */
body.detail-page-body {
    background-color: #FAF8F5;
    color: #1A202C;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
}

.site-header-block {
    background-color: #FAF8F5;
    border-bottom: 1px solid #E5DFD7;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    z-index: 1030;
}

.site-header-block .navbar {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    background-color: #FAF8F5;
}

.site-header-block .site-header-block__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: block;
}

.site-header-block .site-header-block__brand-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A202C;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.site-header-block .site-header-block__link {
    color: #4A5568;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 4px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.site-header-block .site-header-block__link:hover,
.site-header-block .site-header-block__link:focus {
    color: #B85D38;
    background-color: #F3EFEA;
}

.site-header-block .site-header-block__toggler {
    border: 1px solid #E5DFD7;
    padding: 0.45rem 0.65rem;
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #1A202C;
}

.site-header-block .site-header-block__toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 93, 56, 0.15);
    outline: none;
}

.site-header-block .site-header-block__toggler-icon {
    font-size: 1.5rem;
    display: block;
    color: #1A202C;
}

.site-header-block .site-header-block__btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2D3748;
    color: #FAF8F5;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 6px;
    border: 1px solid #2D3748;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.site-header-block .site-header-block__btn-cta:hover,
.site-header-block .site-header-block__btn-cta:focus {
    background-color: #B85D38;
    border-color: #B85D38;
    color: #FFFFFF;
}

@media(max-width: 991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FAF8F5;
        padding: 1.25rem 0;
        border-top: 1px solid #EFECE6;
        margin-top: 0.75rem;
    }

    .site-header-block .site-header-block__brand-name {
        font-size: 1.1rem;
    }

    .site-header-block .site-header-block__link {
        font-size: 0.875rem;
        padding: 0.6rem 0.75rem;
    }

    .site-header-block .site-header-block__btn-cta {
        width: 100%;
        text-align: center;
    }
}

.detail-hero-section {
    background-color: #F3EFEA;
    border-bottom: 1px solid #E5DFD7;
}

.detail-hero-section__breadcrumb-link {
    color: #718096;
    text-decoration: none;
    transition: color 0.2s ease;
}

.detail-hero-section__breadcrumb-link:hover {
    color: #B85D38;
    text-decoration: underline;
}

.detail-hero-section__badge {
    background-color: rgba(184, 93, 56, 0.12);
    color: #B85D38;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.detail-hero-section__meta-item {
    color: #718096;
    font-size: 0.875rem;
}

.detail-hero-section__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.detail-hero-section__lead {
    font-size: 1.15rem;
    color: #4A5568;
    line-height: 1.6;
}

.detail-article-section {
    background-color: #FAF8F5;
}

.detail-article-section__media-wrapper {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
}

.detail-article-section__main-image {
    max-height: 480px;
    width: 100%;
}

.detail-article-section__image-caption {
    font-size: 0.85rem;
    background-color: #FAF8F5;
    border-top: 1px solid #EFECE6;
}

.detail-article-section__rich-text {
    color: #2D3748;
    font-size: 1.0625rem;
    line-height: 1.85;
}

.detail-article-section__paragraph {
    margin-bottom: 1.5rem;
    color: #2D3748;
}

.detail-article-section__quote {
    background-color: #F3EFEA;
    border-left-color: #B85D38 !important;
    font-style: italic;
}

.detail-article-section__quote-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    color: #1A202C;
    line-height: 1.6;
}

.detail-article-section__quote-author {
    font-size: 0.875rem;
    color: #718096;
    font-style: normal;
    font-weight: 600;
}

.detail-article-section__heading {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.3;
}

.detail-article-section__subheading {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1A202C;
}

.detail-article-section__highlight-box {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD7;
}

.detail-article-section__checklist li {
    font-size: 1rem;
    color: #2D3748;
}

.detail-article-section__tag {
    background-color: #F3EFEA;
    color: #2D3748;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid #E5DFD7;
    border-radius: 4px;
}

.comments-container-block__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A202C;
}

.comment-item,
.comment-reply-item {
    border-color: #E5DFD7 !important;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.avatar-initials {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
    background-color: #2D3748 !important;
}

.avatar-initials-sm {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    background-color: #B85D38 !important;
}

.badge-author {
    background-color: #B85D38;
    color: #FFFFFF;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    letter-spacing: 0.05em;
}

.btn-action {
    transition: color 0.2s ease;
}

.btn-action:hover {
    color: #B85D38 !important;
}

.btn-action.is-liked {
    color: #B85D38 !important;
}

.btn-action.is-liked i {
    color: #B85D38 !important;
}

.comments-form-card {
    border-color: #E5DFD7 !important;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.comments-form-card__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A202C;
}

.form-input-custom {
    background-color: #FAF8F5;
    border: 1px solid #E5DFD7;
    color: #1A202C;
    border-radius: 4px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9375rem;
}

.form-input-custom:focus {
    background-color: #FFFFFF;
    border-color: #B85D38;
    box-shadow: 0 0 0 3px rgba(184, 93, 56, 0.15);
    color: #1A202C;
}

.form-input-custom::placeholder {
    color: #718096;
    opacity: 1;
}

.btn-primary-custom {
    background-color: #B85D38;
    border: 1px solid #B85D38;
    color: #FAF8F5;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: #9E4A28;
    border-color: #9E4A28;
    color: #FAF8F5;
}

.detail-sidebar__card {
    border-color: #E5DFD7 !important;
    box-shadow: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
}

.detail-sidebar__card-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A202C;
}

.detail-sidebar__recent-link .detail-sidebar__link-text {
    font-size: 0.9375rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.detail-sidebar__recent-link:hover .detail-sidebar__link-text {
    color: #B85D38 !important;
}

.text-accent {
    color: #B85D38 !important;
}

.font-headings {
    font-family: 'Lora', Georgia, serif;
}

.font-sans {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.site-footer {
    background-color: #2D3748;
    color: #E2E8F0;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    border-top: 1px solid rgba(229, 223, 215, 0.15);
}

.site-footer__main {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.12);
}

.site-footer__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: #FAF8F5;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.site-footer__heading {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FAF8F5;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.site-footer__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #A0AEC0;
    margin-bottom: 1.5rem;
    max-width: 440px;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #FAF8F5;
    line-height: 1.5;
}

.site-footer__icon {
    font-size: 1.125rem;
    color: #B85D38;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.site-footer__link {
    color: #FAF8F5;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    word-break: break-all;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #B85D38;
    text-decoration: underline;
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__nav-link {
    color: #E2E8F0;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    line-height: 1.5;
}

.site-footer__nav-link:hover,
.site-footer__nav-link:focus {
    color: #B85D38;
    transform: translateX(3px);
}

.site-footer__bottom {
    padding-top: 2rem;
}

.site-footer__copyright {
    font-size: 0.875rem;
    color: #A0AEC0;
    margin-bottom: 0;
    line-height: 1.6;
}

.site-footer__meta {
    font-size: 0.875rem;
    color: #A0AEC0;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .detail-hero-section__title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .detail-hero-section__lead {
        font-size: 0.9375rem;
    }

    .detail-article-section__heading {
        font-size: 1rem;
        hyphens: auto;
    }

    .detail-article-section__subheading,
    .comments-container-block__title,
    .comments-form-card__title,
    .detail-sidebar__card-title {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .site-footer {
        padding-top: 3.5rem;
        padding-bottom: 2rem;
    }

    .site-footer__title {
        font-size: 1.35rem;
    }

    .site-footer__heading {
        font-size: 1.05rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .site-footer__main {
        padding-bottom: 2.5rem;
    }

    .site-footer__bottom {
        padding-top: 1.5rem;
    }
}