/*
Theme Name: Kontingen Indonesia AG 2026
Theme URI: https://ag.infobssn.com
Author: Infobssn
Author URI: https://infobssn.com
Description: Custom WordPress theme untuk website Kontingen Indonesia Asian Games 2026.
Version: 1.1.1
Text Domain: kontingen-ag2026
*/

:root {
    --ag-navy: #071a38;
    --ag-red: #d71920;
    --ag-gold: #c99a3d;
    --ag-white: #ffffff;
    --ag-light: #f5f6f8;
    --ag-text: #172033;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ag-text);
    background: var(--ag-white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.ag-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* =====================================================
   ATLET TERKAIT — SINGLE ATHLETE HIGHLIGHT
   ===================================================== */

.ag-related-athletes {
    margin-top: 64px;
    padding-top: 48px;
    padding-bottom: 72px;
    border-top: 1px solid #dfe5ee;
}

.ag-related-athletes__heading {
    margin-bottom: 28px;
}

.ag-related-athletes__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #e31b23;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ag-related-athletes__title {
    margin: 0;
    color: #061d43;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    text-transform: uppercase;
}

.ag-related-athletes__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.ag-related-athlete-card {
    min-width: 0;
    margin: 0;
}

.ag-related-athlete-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.ag-related-athlete-card__media {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 5px;
    background: #081d41;
}

.ag-related-athlete-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.ag-related-athlete-card__link:hover
.ag-related-athlete-card__image {
    transform: scale(1.04);
}

.ag-related-athlete-card__gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(4, 18, 44, 0) 32%,
            rgba(4, 18, 44, .95) 100%
        );
}

.ag-related-athlete-card__body {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 2;
}

.ag-related-athlete-card__title {
    margin: 0 0 7px;
    color: #fff;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1;
    text-transform: uppercase;
}

.ag-related-athlete-card__sport {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.ag-related-athlete-card__fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 900px) {
    .ag-related-athletes__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ag-related-athletes {
        margin-top: 44px;
        padding-top: 36px;
        padding-bottom: 52px;
    }

    .ag-related-athletes__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ag-related-athlete-card__media {
        height: 300px;
    }
}


/* Final polish related athlete title */
.ag-related-athlete-card__title {
    overflow-wrap: anywhere;
    word-break: normal;
}

@media (min-width: 901px) {
    .ag-related-athlete-card__title {
        font-size: clamp(22px, 1.75vw, 32px);
    }
}
