/* css/nuestros-premios.css (o donde decidas ponerlo) */

/* --- Cabecera Específica para la Página de Premios --- */
.page-premios .page-header-image.header-premios {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../imagenes/cabecera-nuestros-premios.jpg');
    background-size: cover;
    background-position: center center;
    min-height: 350px; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-premios .page-title {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}
#premios-lista .section-title {
    color: var(--minga-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}
#premios-lista .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.award-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background-color: #ffffff;
    border-radius: 0.375rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.award-card .card-body {
    padding: 2rem 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.award-card .award-icon-container {
    color: var(--minga-red);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.award-card .card-title {
    color: var(--minga);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.award-card .award-subtitle { 
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.award-card .card-text {
    text-align: justify;
    hyphens: auto;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 0;
}