/* =============================================================================
   awards.css — Awards & Accolades page. Semantic HTML on tokens, mirroring the
   original Elementor design: a gold counter hero (#DBC002, Montserrat 100/700
   number + 36/600 uppercase title, white) over which a 3-column grid of white,
   1px #B7B7B7 bordered, 15px-radius award cards floats (first row overlaps the
   band). Fixed pixel image heights are replaced with aspect-ratio; type/overlap
   go fluid so small screens scale instead of cropping.
   ============================================================================= */
.kk-awards {
    --kk-awards-gold: #DBC002;          /* hero band background            */
    --kk-awards-card-border: #B7B7B7;   /* card outline                    */
    --kk-awards-ink: #282828;           /* card title / name text          */
    --kk-awards-muted: #565656;         /* card role (sub) text            */
    --kk-awards-font: "Montserrat", var(--kk-font-heading);
    color: var(--kk-awards-ink);
}
.kk-awards img { max-width: 100%; }

/* Hero — gold counter band -------------------------------------------------- */
.kk-awards__hero {
    background-color: var(--kk-awards-gold);
    min-height: clamp(340px, 45vw, 500px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 40px var(--kk-space-sm);
    box-sizing: border-box;
}
.kk-awards__count {
    margin: 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: #fff;
    font-family: var(--kk-awards-font);
    font-weight: 700;
    font-size: clamp(56px, 12vw, 100px);
    line-height: 1;
}
.kk-awards__count-suffix { font-size: clamp(22px, 3.5vw, 30px); padding-left: 10px; }
.kk-awards__hero-title {
    margin: 0;
    color: #fff;
    font-family: var(--kk-awards-font);
    font-weight: 600;
    font-size: clamp(24px, 4.5vw, 36px);
    line-height: 1.45;
    text-transform: uppercase;
}

/* Grid — cards float up over the band --------------------------------------- */
.kk-awards__grid {
    list-style: none;
    max-width: var(--kk-content-max);
    margin: clamp(-88px, -6vw, -48px) auto 0;
    padding: 0 var(--kk-space-sm);
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--kk-space-lg);
    position: relative;
}
.kk-awards__section { padding-bottom: clamp(40px, 8vw, 90px); }

.kk-awards__card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--kk-awards-card-border);
    border-radius: 15px;
    padding: 10px 10px 20px;
    box-sizing: border-box;
}
.kk-awards__card-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center center;
    border-radius: 15px;
    display: block;
    margin: 0 0 14px;
}
.kk-awards__card-img--top { object-position: top center; }

.kk-awards__card-title {
    margin: 0 0 8px;
    font-family: var(--kk-awards-font);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: var(--kk-awards-ink);
    overflow-wrap: break-word;
}
.kk-awards__card-desc {
    margin: 0 0 10px;
    font-family: var(--kk-awards-font);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    color: var(--kk-awards-ink);
    overflow-wrap: break-word;
}
.kk-awards__card-name {
    margin: auto 0 0;
    font-family: var(--kk-awards-font);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: var(--kk-awards-ink);
}
.kk-awards__card-role {
    margin: 4px 0 0;
    font-family: var(--kk-awards-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: var(--kk-awards-muted);
}

.kk-awards a:focus-visible {
    outline: 2px solid var(--kk-brand);
    outline-offset: 2px;
}
