.awards {
    padding: 120px 24px;
    font-family: Inter, sans-serif;
}

.awards-container {
    max-width: 1480px;
    margin: auto;
}

.awards-header {
    margin-bottom: 50px;
}

.awards-tag {
    font-size: 14px;
    color: #6b7280;
    display: block;
    margin-bottom: 10px;
    letter-spacing: .04em;
}

.awards-header h2 {
    font-size: 48px;
    font-weight: 600;
    color: #0f172a;
}

.awards-table {
    width: 100%;
}

.awards-head {
    display: grid;
    grid-template-columns: minmax(240px, .95fr) minmax(420px, 1.75fr) 88px 104px;
    font-size: 14px;
    color: #6b7280;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.awards-row {
    display: grid;
    grid-template-columns: minmax(240px, .95fr) minmax(420px, 1.75fr) 88px 104px;
    gap: 20px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: .25s ease;
}

.awards-row:hover {
    transform: translateX(4px);
}

.awards-row h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
}

.awards-row p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.year {
    font-size: 16px;
    color: #0f172a;
    font-weight: 500;
    text-align: center;
}

.award-image {
    width: 92px;
    height: 42px;
    justify-self: end;
    border-radius: 0;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-image img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: .58;
    transition: all .35s ease;
}

.awards-row:hover .award-image img {
    opacity: .95;
    transform: translateY(-2px) scale(1.04);
}

@media (max-width:900px) {

    .awards-header h2 {
        font-size: 36px;
    }

    .awards-head {
        display: none;
    }

    .awards-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 26px 0;
    }

    .year {
        text-align: left;
        color: #64748b;
        font-size: 14px;
    }

    .award-image {
        width: 92px;
        height: 42px;
        justify-self: start;
    }

}

