/* Agency of the Year page specific styles */
.agency-of-the-year-page .recipient-image-box {
    background: none !important;
}

.agency-of-the-year-page .recipient-image {
    object-fit: contain;
    top: 0;
    left: 0;
}

/* Past Winners Section */
.past-winners-section {
    margin-top: 50px;
    padding: 0 25px;
}

.past-winners-title {
    background: #1C355D;
    color: white;
    font-size: 30px;
    font-weight: 500;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.past-winners-year {
    margin-bottom: 40px;
}

.past-winners-year-title {
    font-size: 24px;
    font-weight: 700;
    font-family: nunito-sans, sans-serif;
    color: #1C355D;
    margin-bottom: 20px;
    margin-top: 0;
}

.past-winners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.past-winner {
    background: #f5f5f5;
    padding: 20px;
    border-left: 4px solid #DF5F6F;
}

.past-winner:nth-child(3n+1) {
    border-left-color: #DF5F6F;
}

.past-winner:nth-child(3n+2) {
    border-left-color: #F4AD6F;
}

.past-winner:nth-child(3n+3) {
    border-left-color: #8CC871;
}

.past-winner-region {
    font-size: 14px;
    font-weight: 700;
    font-family: nunito-sans, sans-serif;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.past-winner-name {
    font-size: 18px;
    font-weight: 600;
    font-family: nunito-sans, sans-serif;
    color: #1C355D;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.past-winner-name:hover {
    color: #DF5F6F;
}

@media (max-width: 889px) {
    .past-winners-section {
        padding: 0 10px;
    }

    .past-winners-title {
        font-size: 25px;
        height: 60px;
    }

    .past-winners-year-title {
        font-size: 20px;
    }

    .past-winners-list {
        grid-template-columns: 1fr;
    }
}