/* Awards & Recognition — Techmagnate reference */

.awards-page .tm-breadcrumb li + li::before {
    content: '>';
}

.awards-wrap {
    background: #fff;
    padding: 2rem 0 4.5rem;
}

.awards-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

.awards-main {
    min-width: 0;
}

.awards-page-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #023B5E;
    margin-bottom: 1rem;
    letter-spacing: -.01em;
    line-height: 1.2;
}

.awards-page-lead {
    font-size: .95rem;
    color: #767B79;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 52rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.award-card {
    background: #fff;
    border: 1px solid #C3C3C3;
    border-radius: 12px;
    padding: 1.5rem 1.25rem 1.35rem;
    text-align: center;
    transition: box-shadow .25s, border-color .25s;
}

.award-card:hover {
    border-color: #C3C3C3;
    box-shadow: 0 8px 28px rgba(15, 23, 42, .06);
}

.award-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    margin-bottom: 1rem;
    padding: .5rem;
}

.award-card-img img {
    max-width: 100%;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.award-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: #023B5E;
    margin: 0 0 .45rem;
    line-height: 1.35;
}

.award-card p {
    font-size: .85rem;
    color: #767B79;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1199px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .awards-layout {
        grid-template-columns: 1fr;
    }

    .awards-page .testi-sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 575px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .award-card-img {
        min-height: 120px;
    }
}
