.awards-container {
    padding-top: 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.awards-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.awards-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.awards-card .logo {
    width: 100%;
    height: 5rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awards-card .logo img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.awards-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0rem;
    color: #5f6c7b;
}

.awards-card p {
    font-size: 0.95rem;
    color: #5f6c7b;
    line-height: 1.4;
}


.awards-card .card-chevron {
    bottom: 1rem;
    right: 2rem;
    font-size: 1.4rem;
    color: #999;
    transition: transform 0.25s ease, color 0.25s ease;
    text-decoration: none;
}

.awards-card:hover .card-chevron,
.awards-card:focus-visible .card-chevron {
    transform: translateX(6px);
    color: var(--main-hover-color);
}