/* ================================
   HERO BANNER
   ================================ */
.actas-hero {
    position: relative;
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.actas-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30,20,10,0.45) 0%, rgba(20,12,4,0.78) 100%);
}

.actas-hero__content {
    position: relative;
    z-index: 1;
    padding: 0 60px 36px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.actas-hero__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    font-family: 'Archivo', sans-serif;
}

.actas-hero__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    font-family: 'Archivo', sans-serif;
}

/* ================================
   CUERPO DE TEXTO
   ================================ */
.actas-body-section {
    padding: 50px 0 30px;
    font-family: 'Archivo', sans-serif;
}

.actas-body-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.actas-body-text {
    font-size: 0.97rem;
    line-height: 1.7;
    color: #333;
    text-align: justify;
    margin-bottom: 18px;
}

.actas-body-copyright {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #888;
    text-align: justify;
    margin-top: 10px;
}

/* ================================
   DIVISOR
   ================================ */
.actas-divider {
    max-width: 1200px;
    margin: 10px auto 0;
    padding: 0 60px;
    border-top: 1px solid #e0e0e0;
}

/* ================================
   SECCIÓN TRACKS / LIBROS
   ================================ */
.tracks-section-actas {
    padding: 40px 0 60px;
    font-family: 'Archivo', sans-serif;
}

.tracks-grid-actas {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 30px;
    margin-top: 30px;
}

/* Tarjeta individual */
.track-card-actas {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Portada del libro */
.track-card-cover-actas {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.14);
    aspect-ratio: 3 / 4;
    background: #e8e8e8;
}

.track-card-cover-actas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.track-card-link-actas:hover .track-card-cover-actas img {
    transform: scale(1.04);
}

/* Overlay "Leer" al hover */
.track-card-overlay-actas {
    position: absolute;
    inset: 0;
    background: rgba(193, 144, 82, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track-card-link-actas:hover .track-card-overlay-actas {
    opacity: 1;
}

.track-card-overlay-actas span {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Info debajo de la portada */
.track-card-info-actas {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.track-card-tag-actas {
    font-size: 0.78rem;
    font-weight: 700;
    color: #c19052;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.track-card-title-actas {
    font-size: 0.97rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin: 0;
}

.track-card-year-actas {
    font-size: 0.88rem;
    color: #888;
    margin: 0;
}

.track-card-readmore-actas {
    font-size: 0.78rem;
    font-weight: 800;
    color: #111;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    transition: color 0.2s ease;
    margin-top: 2px;
}

.track-card-readmore-actas:hover {
    color: #c19052;
    text-decoration: underline;
}

.track-card-coming-actas {
    color: #aaa !important;
    border-bottom-color: #ddd !important;
    cursor: default;
    pointer-events: none;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 992px) {
    .tracks-grid-actas {
        grid-template-columns: repeat(4, 1fr);
    }
    .actas-hero__title {
        font-size: 1.6rem;
    }
    .actas-hero__content,
    .actas-body-container,
    .actas-divider {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 576px) {
    .tracks-grid-actas {
        grid-template-columns: repeat(2, 1fr);
    }
    .actas-hero {
        height: 200px;
    }
    .actas-hero__title {
        font-size: 1.3rem;
    }
}
