/* ============================================= */
/* =          Estilos del Hero Section         = */
/* ============================================= */

/* section-1 herosection */
.article-hero {
    position: relative;
    min-height: 729px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    background: rgba(16, 16, 16, 0.164);
    backdrop-filter: blur(23px);
    border-radius: 15px;
    padding: 2rem;
    max-width: 1106px;
    width: 100%;
}

.article-hero-breadcrumbs {
    margin-bottom: 10px;
    color: #ddd;
    display: flex;
}

.hm-blg {
    font-size: 20px;
    font-weight: 600;
}

.arw {
    color: white;
    font-weight: 400;
    size: 30px;
}

.current-page-title {
    color: white;
}

.article-hero-meta {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;

}

.article-hero-meta a {
    display: flex;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: inherit;
}

.article-hero-meta img {
    display: inline-block;
    vertical-align: middle;

}

.article-hero-breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.article-hero-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 55.02px;
    color: white;
}

.meta-icon {
    font-size: 20px;
    gap: 10px;
}

#hero-read-more {
    /* ID actualizado */
    color: white;
    text-decoration: underline;
}

.article-hero-description {
    font-size: 18px;
    margin-bottom: 20px;
    color: #eee;
    font-weight: 400;
    line-height: 30px;
}

.article-hero-description span {
    display: none;
}

.article-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Estilos de botones usados en el Hero */
.btn {
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.green {
    background: #2ecc71;
    color: #fff;
}

.btn.green:hover {
    background: #27ae60;
}

.btn.gray {
    background: transparent;
    color: #fff;
    border: 1px solid white;
}

.btn.gray:hover {
    background: #444;
}


/* ============================================= */
/* =      ESTILOS RESPONSIVE (Hero Section)    = */
/* ============================================= */

@media (max-width: 480px) {

    .article-hero {
        min-height: auto;
        padding: 40px 15px;
        background-position: center;
        background-size: cover;
        text-align: center;
    }

    .article-hero-overlay {
        padding: 15px;
        max-width: 100%;
        border-radius: 12px;
    }

    .article-hero-description {
        font-size: 16px;
        text-align: center;
    }

    .article-hero-breadcrumbs {
        font-size: 14px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        align-items: center;
    }

    .hm-blg {
        font-size: 13px;
    }

    .article-hero-meta {
        width: 100%;
        padding-top: 5px;

    }

    .arw {
        font-size: 14px;
    }

    .article-hero-title {
        padding-top: 15px;
        font-size: 22px;
        line-height: 34px;
    }

    .article-hero-actions {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        padding-top: 20px;
    }

    .btn {
        font-size: 16px;
        padding: 10px 18px;
        width: 100%;
        max-width: 280px;
    }
}