:root {
    --color-terracotta: #C2703B;
    --color-terracotta-light: #D4845A;
    --color-terracotta-dark: #A65D2E;
    --color-olive: #6B7B3A;
    --color-olive-light: #8A9B52;
    --color-cream: #F5F0E6;
    --color-cream-dark: #E8DFD0;
    --color-sand: #D4C4A8;
    --color-charcoal: #2C2C2C;
    --color-charcoal-light: #4A4A4A;
    --color-white: #FFFFFF;
    --color-azure: #4A7C8C;
    --color-azure-light: #6A9CAC;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-subheading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --font-accent: 'Montserrat', 'Helvetica Neue', sans-serif;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.18);
    --transition-base: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-charcoal);
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-charcoal);
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
p {
    margin-bottom: 1.25rem;
}
a {
    color: var(--color-terracotta);
    text-decoration: none;
    transition: var(--transition-base);
}
a:hover {
    color: var(--color-terracotta-dark);
}
img {
    max-width: 100%;
    height: auto;
}
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
}
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--color-sand);
    border-top-color: var(--color-terracotta);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.loader-text {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    color: var(--color-charcoal-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--color-charcoal) 0%, #1a1a1a 100%);
    box-shadow: var(--shadow-medium);
}
.navbar {
    padding: 0.75rem 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-terracotta);
    flex-shrink: 0;
}
.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-text {
    display: flex;
    flex-direction: column;
}
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
}
.brand-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-sand);
    letter-spacing: 1px;
}
.navbar-nav {
    gap: 0.5rem;
}
.nav-link {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-cream) !important;
    padding: 0.625rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}
.nav-link:hover,
.nav-link.active {
    color: var(--color-white) !important;
    background: var(--color-terracotta);
}
.dropdown-menu {
    background: var(--color-white);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
    padding: 0.5rem;
    margin-top: 0.5rem;
}
.dropdown-item {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-charcoal);
    padding: 0.625rem 1rem;
    border-radius: 6px;
    transition: var(--transition-base);
}
.dropdown-item:hover {
    background: var(--color-cream);
    color: var(--color-terracotta);
}
.burger-menu {
    width: 36px;
    height: 30px;
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}
.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-cream);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: var(--transition-base);
}
.burger-line:nth-child(1) { top: 0; }
.burger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger-line:nth-child(3) { bottom: 0; }
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.85) 0%, rgba(44, 44, 44, 0.6) 50%, rgba(194, 112, 59, 0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 3rem 0;
}
.hero-badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-terracotta-light);
    background: rgba(194, 112, 59, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(194, 112, 59, 0.3);
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.hero-title span {
    color: var(--color-terracotta-light);
}
.hero-description {
    font-family: var(--font-subheading);
    font-size: 1.375rem;
    color: var(--color-cream);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.btn-primary-custom {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-white);
    background: var(--color-terracotta);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
    text-transform: uppercase;
}
.btn-primary-custom:hover {
    background: var(--color-terracotta-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}
.btn-outline-custom {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-white);
    background: transparent;
    border: 2px solid var(--color-white);
    padding: 0.875rem 1.875rem;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
    text-transform: uppercase;
}
.btn-outline-custom:hover {
    background: var(--color-white);
    color: var(--color-charcoal);
}
.section-padding {
    padding: 5rem 0;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: 1rem;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-family: var(--font-subheading);
    font-size: 1.25rem;
    color: var(--color-charcoal-light);
    max-width: 600px;
    margin: 0 auto;
}
.content-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
    height: 100%;
}
.content-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}
.card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.content-card:hover .card-image img {
    transform: scale(1.08);
}
.card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-terracotta);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
}
.card-body-custom {
    padding: 1.75rem;
}
.card-title-custom {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}
.card-title-custom a {
    color: var(--color-charcoal);
}
.card-title-custom a:hover {
    color: var(--color-terracotta);
}
.card-text-custom {
    color: var(--color-charcoal-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}
.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--color-charcoal-light);
}
.card-meta i {
    color: var(--color-terracotta);
}
.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
}
.featured-main {
    grid-row: span 2;
}
.featured-main .content-card {
    height: 100%;
}
.featured-main .card-image {
    height: 350px;
}
.info-block {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}
.info-block-accent {
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);
    color: var(--color-white);
}
.info-block-accent h3,
.info-block-accent h4 {
    color: var(--color-white);
}
.info-block-accent a {
    color: var(--color-cream);
}
.info-block-accent a:hover {
    color: var(--color-white);
}
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.topic-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}
.topic-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}
.topic-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-terracotta-light) 0%, var(--color-terracotta) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.topic-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}
.topic-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}
.topic-content p {
    font-size: 0.875rem;
    color: var(--color-charcoal-light);
    margin: 0;
}
.page-header {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, #1a1a1a 100%);
    padding: 4rem 0;
    text-align: center;
}
.page-header h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
}
.page-header .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}
.page-header .breadcrumb-item {
    font-family: var(--font-accent);
    font-size: 0.875rem;
}
.page-header .breadcrumb-item a {
    color: var(--color-sand);
}
.page-header .breadcrumb-item.active {
    color: var(--color-terracotta-light);
}
.article-content {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-cream-dark);
}
.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    color: var(--color-charcoal-light);
}
.article-meta-item i {
    color: var(--color-terracotta);
}
.article-featured-image {
    margin: 2rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.article-featured-image img {
    width: 100%;
    height: auto;
}
.article-featured-image figcaption {
    font-size: 0.875rem;
    color: var(--color-charcoal-light);
    font-style: italic;
    text-align: center;
    padding: 1rem;
    background: var(--color-cream);
}
.article-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-terracotta);
}
.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.article-body li {
    margin-bottom: 0.5rem;
}
.article-body blockquote {
    background: var(--color-cream);
    border-left: 4px solid var(--color-terracotta);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.article-body blockquote p {
    font-family: var(--font-subheading);
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 0;
}
.tip-box {
    background: linear-gradient(135deg, var(--color-olive-light) 0%, var(--color-olive) 100%);
    color: var(--color-white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}
.tip-box h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}
.article-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-widget {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}
.sidebar-widget h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-terracotta);
}
.related-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.related-posts-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-cream-dark);
}
.related-posts-list li:last-child {
    border-bottom: none;
}
.related-posts-list a {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    display: block;
}
.related-posts-list a:hover {
    color: var(--color-terracotta);
}
.external-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.external-links li {
    margin-bottom: 0.75rem;
}
.external-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-azure);
}
.external-links a:hover {
    color: var(--color-azure-light);
}
.external-links i {
    font-size: 0.75rem;
}
.contact-info-grid {
    display: grid;
    gap: 1.5rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-cream);
    border-radius: var(--border-radius);
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon i {
    font-size: 1.25rem;
    color: var(--color-white);
}
.contact-info-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.contact-info-content p {
    margin: 0;
    color: var(--color-charcoal-light);
}
.contact-info-content a {
    color: var(--color-terracotta);
}
.site-footer {
    background: linear-gradient(180deg, var(--color-charcoal) 0%, #1a1a1a 100%);
    color: var(--color-cream);
    margin-top: 4rem;
}
.footer-top {
    padding: 4rem 0 3rem;
}
.footer-col {
    margin-bottom: 2rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.footer-brand img {
    border-radius: 50%;
    border: 2px solid var(--color-terracotta);
}
.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin: 0;
}
.footer-description {
    font-size: 0.95rem;
    color: var(--color-sand);
    line-height: 1.7;
}
.footer-col h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.625rem;
}
.footer-links a {
    color: var(--color-sand);
    font-size: 0.95rem;
    transition: var(--transition-base);
}
.footer-links a:hover {
    color: var(--color-terracotta-light);
    padding-left: 5px;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.95rem;
    color: var(--color-sand);
}
.footer-contact i {
    color: var(--color-terracotta);
    width: 20px;
}
.footer-contact a {
    color: var(--color-sand);
}
.footer-contact a:hover {
    color: var(--color-terracotta-light);
}
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    transition: var(--transition-base);
}
.footer-social a:hover {
    background: var(--color-terracotta);
    color: var(--color-white);
}
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright,
.update-info {
    font-size: 0.875rem;
    color: var(--color-sand);
    margin: 0;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    padding: 1.5rem;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}
.cookie-text {
    flex: 1;
    min-width: 300px;
}
.cookie-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
.cookie-text p {
    font-size: 0.9rem;
    color: var(--color-charcoal-light);
    margin-bottom: 0.5rem;
}
.cookie-policy-link {
    font-size: 0.875rem;
    color: var(--color-terracotta);
}
.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.btn-cookie-accept {
    background: var(--color-terracotta);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}
.btn-cookie-accept:hover {
    background: var(--color-terracotta-dark);
}
.btn-cookie-reject {
    background: transparent;
    color: var(--color-charcoal);
    border: 2px solid var(--color-charcoal);
    padding: 0.625rem 1.375rem;
    border-radius: var(--border-radius);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}
.btn-cookie-reject:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
}
.btn-cookie-settings {
    background: transparent;
    color: var(--color-charcoal-light);
    border: none;
    padding: 0.75rem 1rem;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: underline;
}
.btn-cookie-settings:hover {
    color: var(--color-terracotta);
}
.cookie-preferences {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-cream-dark);
}
.preference-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.preference-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}
.preference-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-terracotta);
    margin-top: 2px;
}
.preference-label strong {
    display: block;
    font-size: 0.9rem;
}
.preference-label small {
    color: var(--color-charcoal-light);
    font-size: 0.8rem;
}
.btn-cookie-save {
    background: var(--color-olive);
    color: var(--color-white);
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: var(--border-radius);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}
.btn-cookie-save:hover {
    background: var(--color-olive-light);
}
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--color-charcoal);
        padding: 1rem;
        border-radius: var(--border-radius);
        margin-top: 1rem;
    }
    .nav-link {
        padding: 0.875rem 1rem !important;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1.125rem;
    }
    .featured-grid {
        grid-template-columns: 1fr;
    }
    .featured-main {
        grid-row: auto;
    }
    .article-content {
        padding: 2rem;
    }
}
@media (max-width: 767.98px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    .section-padding {
        padding: 3rem 0;
    }
    .hero-section {
        min-height: 70vh;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-content {
        padding: 2rem 0;
    }
    .info-block {
        padding: 2rem;
    }
    .article-content {
        padding: 1.5rem;
        margin-top: -2rem;
    }
    .article-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
}
@media (max-width: 575.98px) {
    .brand-tagline {
        display: none;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}
