.premios-hub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 32px 0 48px;
}

.premios-hub-card {
    display: block;
    text-decoration: none;
    line-height: 0;
}

.premios-hub-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premios-hub-card:hover img,
.premios-hub-card:focus img {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.premio-page {
    padding: 0 0 48px;
    max-width: 900px;
}

.premio-breadcrumb {
    padding-top: 20px;
    margin-bottom: 8px;
    font-size: 14px;
}

.premio-breadcrumb a {
    color: #033f88;
    font-weight: 600;
    text-decoration: none;
}

.premio-breadcrumb a:hover,
.premio-breadcrumb a:focus {
    color: #f9a800;
    text-decoration: underline;
}

.premio-intro {
    margin: 28px 0 44px;
}

.premio-intro-panel {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 36px;
    background: linear-gradient(135deg, #fffdf8 0%, #f7f4ee 100%);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(3, 63, 136, 0.08);
}

.premio-intro-trophy {
    width: 148px;
    height: 198px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.premio-intro-trophy img {
    display: block;
    width: 740px;
    max-width: none;
    margin: -38px 0 0 -6px;
}

.premio-intro-body {
    flex: 1;
    min-width: 0;
}

.premio-section-title {
    margin: 0 0 18px;
    padding-bottom: 12px;
    font-size: 2.15rem;
    font-weight: 700;
    color: #033f88;
    line-height: 1.15;
    letter-spacing: -0.02em;
    border-bottom: 3px solid #f9a800;
}

.premio-intro-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    color: #2a2a2a;
    text-align: left;
    max-width: 62ch;
}

.premio-intro-text::first-letter {
    float: left;
    margin: 0.06em 0.12em 0 0;
    font-size: 3.1em;
    line-height: 0.82;
    font-weight: 700;
    color: #033f88;
}

.premio-galeria-title {
    margin: 0 0 28px;
    padding-bottom: 10px;
    font-size: 2.15rem;
    font-weight: 700;
    color: #033f88;
    line-height: 1.15;
    letter-spacing: -0.02em;
    border-bottom: 3px solid #f9a800;
}

.premio-galeria {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px 18px;
}

.premio-honoree-card {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: inherit;
}

.premio-honoree-card:hover,
.premio-honoree-card:focus {
    text-decoration: none;
    outline: none;
}

.premio-honoree-card:focus-visible .premio-honoree-photo {
    box-shadow: 0 0 0 3px #f9a800, 0 6px 20px rgba(0, 0, 0, 0.16);
}

.premio-honoree-card:hover .premio-honoree-photo,
.premio-honoree-card:focus .premio-honoree-photo {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.premio-honoree-card:hover .premio-honoree-photo img,
.premio-honoree-card:focus .premio-honoree-photo img {
    transform: scale(1.04);
}

.premio-honoree-photo {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f0f0f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.25s ease;
}

.premio-honoree-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.25s ease;
}

.premio-honoree-photo--sprite {
    background-color: #f0f0f0;
}

.premio-honoree-photo--sprite img {
    display: none;
}

.premio-honoree-year {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 10px 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0) 100%);
    color: #f9a800;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.premio-honoree-name {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    color: #033f88;
    font-weight: 600;
    text-decoration: none;
}

.premio-honoree-card:hover .premio-honoree-name,
.premio-honoree-card:focus .premio-honoree-name {
    color: #c48c02;
}

body.premio-modal-open {
    overflow: hidden;
}

.premio-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.premio-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.premio-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 30, 60, 0.72);
}

.premio-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
    padding: 28px 32px 32px;
}

.premio-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f0f0f0;
    color: #033f88;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.premio-modal-close:hover,
.premio-modal-close:focus {
    background: #f9a800;
    color: #ffffff;
    outline: none;
}

.premio-modal-header {
    margin-bottom: 20px;
    padding-right: 36px;
}

.premio-modal-year {
    display: inline-block;
    margin-bottom: 6px;
    padding: 4px 12px;
    background: #f9a800;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.premio-modal-name {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #033f88;
    line-height: 1.25;
}

.premio-modal-photo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.premio-modal-portrait {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f9a800;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.premio-modal-photo-wrap--legacy {
    display: block;
    max-height: 420px;
    overflow-y: auto;
    border-radius: 8px;
    background: #f7f7f7;
}

.premio-modal-photo-wrap--duo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
}

.premio-modal-duo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 180px;
}

.premio-modal-duo-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #033f88;
    text-align: center;
    line-height: 1.3;
}

.premio-modal-legacy-img {
    display: block;
    width: 100%;
    height: auto;
}

.premio-modal-text {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a2a;
    text-align: justify;
}

.premio-modal-text p {
    margin: 0;
}

.premio-modal-text p + p {
    margin-top: 1em;
}

.premio-modal-text p:first-child::first-letter {
    float: left;
    margin: 0.05em 0.1em 0 0;
    font-size: 2.6em;
    line-height: 0.82;
    font-weight: 700;
    color: #033f88;
}

.premio-modal-yt {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 16px;
    background: #fff8eb;
    border-radius: 8px;
    color: #033f88;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.premio-modal-yt:hover,
.premio-modal-yt:focus {
    background: #f9a800;
    color: #ffffff;
    text-decoration: none;
}

.premio-modal-yt-icon {
    width: 32px;
    height: auto;
}

@media (max-width: 767.98px) {
    .premios-hub {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 0 36px;
    }

    .premio-intro {
        margin-bottom: 36px;
    }

    .premio-intro-panel {
        flex-direction: column;
        align-items: center;
        gap: 22px;
        padding: 24px 20px;
    }

    .premio-intro-body {
        width: 100%;
    }

    .premio-section-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .premio-intro-text {
        font-size: 16px;
        line-height: 1.7;
        max-width: none;
    }

    .premio-galeria-title {
        font-size: 1.75rem;
    }

    .premio-honoree-name {
        font-size: 14px;
    }

    .premio-galeria {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 14px;
    }

    .premio-modal-dialog {
        padding: 22px 18px 24px;
    }

    .premio-modal-name {
        font-size: 1.25rem;
    }

    .premio-modal-portrait {
        width: 160px;
        height: 160px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .premio-galeria {
        grid-template-columns: repeat(3, 1fr);
    }
}
