:root {
    --primary-color: #2c8c3e;
    --secondary-color: #1e5f2e;
    --accent-color: #f0a830;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gray-color: #6c757d;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 76px; /* Espacio para la barra de navegación fija */
}

/* Modal de video */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.video-modal__video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.video-modal-close:hover {
    transform: scale(1.2);
}

.video-modal-skip {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.video-modal-skip:hover {
    background-color: #e0951f;
    transform: translateX(-50%) translateY(-3px);
}

.video-error {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: white;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.video-error i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.video-error h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.video-error p {
    margin-bottom: 20px;
    max-width: 80%;
}

.video-error button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: 5px;
}

.video-error button:hover {
    background-color: #e0951f;
    transform: translateY(-2px);
}

.video-loading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: white;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.video-loading i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 24px;
}

.navbar-brand span {
    color: var(--accent-color);
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-login {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s;
    margin-right: 10px;
}

.btn-login:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-donate {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-donate:hover {
    background-color: #e0951f;
    transform: translateY(-2px);
}

/* Mejoras para el menú móvil */
.navbar-toggler {
    border: none;
    padding: 4px 6px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse {
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
        padding: 20px 0;
    }
    
    .navbar-nav .nav-item {
        margin: 10px 0;
    }
    
    .navbar-nav .nav-link {
        font-size: 1.1rem;
    }
    
    .navbar-nav .btn-login,
    .navbar-nav .btn-donate {
        margin-top: 15px;
        display: inline-block;
    }
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(44, 140, 62, 0.288), rgba(95, 30, 30, 0.411)), url('../assets/bolivia-argentina_1080p_embed.svg');
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;

    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: -76px; /* Compensar el padding-top del body */
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (min-width: 1200px) {
    .hero {
        min-height: 80vh;
        background-position: center top;
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-hero {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-hero:hover {
    background-color: #e0951f;
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Axes Section */
.axes {
    padding: 80px 0;
}

.axis-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.axis-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.axis-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.axis-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.axis-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.axis-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.axis-content ul {
    list-style: none;
    padding-left: 0;
}

.axis-content ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.axis-content ul li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.axes-carousel {
    position: relative;
    margin: 0 auto;
    max-width: 1180px;
    --items-per-view: 3;
    --carousel-gap: 1.5rem;
}

.axes-carousel__viewport {
    overflow: hidden;
    padding: 10px 10px 30px;
}

.axes-carousel__track {
    display: flex;
    gap: var(--carousel-gap);
    transition: transform 0.6s ease;
    will-change: transform;
    margin: 0;
    padding: 0;
}

.axes-carousel .axis-card {
    flex: 0 0 calc((100% - (var(--items-per-view) - 1) * var(--carousel-gap)) / var(--items-per-view));
}

.axes-carousel__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(44, 140, 62, 0.9);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(44, 140, 62, 0.25);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 5;
}

.axes-carousel__control:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 16px 30px rgba(30, 95, 46, 0.3);
}

.axes-carousel__control:focus {
    outline: 3px solid rgba(240, 168, 48, 0.35);
    outline-offset: 2px;
}

.axes-carousel__control:disabled {
    opacity: 0.6;
    cursor: default;
    box-shadow: none;
    pointer-events: none;
}

.axes-carousel__control--prev {
    left: -24px;
}

.axes-carousel__control--next {
    right: -24px;
}

@media (max-width: 1199.98px) {
    .axes-carousel {
        max-width: 1000px;
    }
}

@media (max-width: 991.98px) {
    .axes-carousel {
        --items-per-view: 2;
    }

    .axes-carousel__control--prev {
        left: -12px;
    }

    .axes-carousel__control--next {
        right: -12px;
    }
}

@media (max-width: 767.98px) {
    .axes-carousel__control {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 575.98px) {
    .axes-carousel {
        --items-per-view: 1;
    }

    .axes-carousel__viewport {
        padding: 10px 0 30px;
    }

    .axes-carousel__control--prev {
        left: 6px;
    }

    .axes-carousel__control--next {
        right: 6px;
    }
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: white;
    padding: 70px 0;
    text-align: center;
}

.stat-box {
    margin-bottom: 30px;
}

.stat-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background-color: var(--light-color);
}

.mission-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    transition: transform 0.3s;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Action Plan Section */
.action-plan {
    padding: 80px 0;
}

.step {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Login Section */
.login {
    padding: 80px 0;
    background-color: var(--light-color);
}

.login-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.login-card h2 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.login-card p {
    color: var(--gray-color);
    margin-bottom: 30px;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(44, 140, 62, 0.9), rgba(30, 95, 46, 0.9)), url('https://images.unsplash.com/photo-1559027615-cd4638aa08f6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-about p {
    margin-bottom: 20px;
    color: #ddd;
}

.footer-links h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-contact h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ddd;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Noticias Section */

.donas {
    padding: 80px 0;
    background-color: var(--light-color);
}

.donas .section-title h2 {
    font-weight: 700;
}

.donas-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.donas-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.donas-card p {
    color: var(--gray-color);
}

.donas-qr {
    margin-top: 25px;
    padding: 20px;
    border: 2px dashed var(--primary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(44, 140, 62, 0.05);
}

.donas-qr img {
    max-width: 240px;
    width: 100%;
    height: auto;
}

.donas-data {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.donas-data li {
    background: rgba(44, 140, 62, 0.08);
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 500;
    color: var(--dark-color);
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.donas-data__label {
    color: var(--primary-color);
    font-weight: 700;
    min-width: 105px;
}

.donas-data__value {
    flex: 1;
    font-weight: 600;
    word-break: break-word;
}

.donas-copy {
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.donas-copy.copied {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.donas-note {
    font-size: 0.95rem;
    margin-top: auto;
}

.donas-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.donas-note a:hover {
    text-decoration: underline;
}

.noticias {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6fbf7 0%, #ffffff 100%);
}

.section-subtitle {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
    font-size: 1.05rem;
    color: var(--gray-color);
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.noticia-card {
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(32, 96, 52, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noticia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(30, 95, 46, 0.18);
}

.noticia-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.noticia-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
}

.noticia-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.noticia-card:hover .noticia-img img {
    transform: scale(1.05);
}

.noticia-content {
    padding: 25px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.noticia-date {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 600;
}

.noticia-date::before {
    content: "";
    width: 28px;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 999px;
}

.noticia-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    margin: 0;
}

.noticia-excerpt {
    color: var(--gray-color);
    font-size: 1rem;
    margin-bottom: auto;
}

.noticia-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.noticia-link i {
    transition: transform 0.3s ease;
}

.noticia-link:hover {
    color: #e0951f;
    gap: 12px;
}

.noticia-link:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }

    .donas {
        padding: 60px 0;
    }

    .donas-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Ajustar para la altura de la navbar en móvil */
    }
    
    .hero { 
        padding: 100px 0 70px;
        margin-top: -70px; /* Compensar el padding-top del body */
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .step {
        padding-left: 60px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }

    .video-modal-container {
        width: 95%;
        max-width: 600px;
    }

    .noticias {
        padding: 70px 0;
    }

    .noticia-img {
        height: 200px;
    }

    .donas-card {
        text-align: center;
    }

    .donas-data li {
        flex-direction: column;
        align-items: flex-start;
    }

    .donas-data li span {
        min-width: 0;
    }
}
/* Página de detalle de noticias */
.article-hero {
    position: relative;
    padding: 150px 0 120px;
    background-size: cover;
    background-position: center;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
}

.article-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 140, 62, 0.9), rgba(30, 95, 46, 0.75));
    z-index: 0;
    pointer-events: none;
}

.article-hero > .container {
    position: relative;
    z-index: 1;
}

.article-category {
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.article-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
    font-weight: 500;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-meta i {
    color: var(--accent-color);
}

.article-excerpt {
    font-size: 1.1rem;
    max-width: 720px;
    margin-bottom: 30px;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-color);
}

.article-back:hover {
    background-color: #e0951f;
}

.article-main {
    padding: 80px 0 100px;
    background-color: #f8f9fb;
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.article-body p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #444;
}

.article-subtitle {
    font-size: 1.2rem;
    margin: 30px 0 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.article-body ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.article-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.article-stats {
    display: grid;
    gap: 15px;
}

.article-stat {
    background-color: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.article-stat__value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.article-stat__label {
    font-size: 0.95rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-highlights {
    background-color: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.article-highlights h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.article-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-highlights li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #444;
}

.article-highlights li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

.article-error {
    display: none;
    padding: 80px 0 120px;
    background-color: #fff;
}

.article-error-card {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.article-error-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background-color: rgba(240, 168, 48, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-error-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.article-error h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.article-error p {
    color: #555;
    margin-bottom: 25px;
}

.article-hero--error {
    background-image: linear-gradient(135deg, rgba(52, 58, 64, 0.85), rgba(33, 37, 41, 0.85));
}

@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .article-stats {
        flex: 1 1 200px;
    }
}

@media (max-width: 768px) {
    .article-hero {
        padding: 120px 0 80px;
        text-align: center;
    }

    .article-meta {
        justify-content: center;
    }

    .article-excerpt {
        margin: 0 auto 30px;
    }

    .article-layout {
        gap: 30px;
    }

    .article-sidebar {
        flex-direction: column;
    }
}
