/******************************************** Brand Ambassador ****************************************************/
/* =========================================
   BRAND AMBASSADORSHIP HERO
========================================= */

.ambassador-header{
    position:relative;
    width:100%;
    max-width:1000px;
    padding:35px 20px 30px;
    text-align:center;
    overflow:hidden;
}

.ambassador-header::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    top:-150px;
    left:50%;
    transform:translateX(-50%);
    background:radial-gradient(
        circle,
        rgba(255,215,0,.12),
        rgba(168,85,247,.10) 35%,
        transparent 70%
    );
    pointer-events:none;
    z-index:0;
}

.ambassador-badge,
.ambassador-icon,
.ambassador-title,
.ambassador-tagline{
    position:relative;
    z-index:1;
}

.ambassador-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:7px 18px;
    border-radius:30px;
    background:rgba(255,215,0,.08);
    border:1px solid rgba(255,215,0,.25);
    color:#e6c85c;
    font-size:13px;
    font-weight:500;
    letter-spacing:1.5px;
    margin-bottom:18px;
    box-shadow:
        0 0 20px rgba(255,215,0,.06);
    position:relative;
}

.ambassador-icon{
    font-size:38px;
    line-height:1;
    margin-bottom:8px;
    color:#FFD700;
    text-shadow:
        0 0 8px rgba(255,215,0,.35),
        0 0 20px rgba(168,85,247,.35);
}

.ambassador-title{
    margin:8px 0 10px;
    font-size:52px;
    line-height:1.15;
    font-weight:800;
    letter-spacing:1px;
    background:linear-gradient(
        100deg,
        #d62828 0%,
        #d62828 28%,
        #eaa5a5 48%,
        #eaa5a5 58%,
        #FFD700 68%,
        #FFD700 100%
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.ambassador-tagline{
    max-width:650px;
    margin:0 auto;
    color:rgba(255,255,255,.72);
    font-size:1.05rem;
    line-height:1.5;
}

/* =========================
   BRAND SECTIONS
========================= */

.brand-section {
    margin-top:0;
    overflow:hidden;
    width: 90%;
}

.brand-section-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.brand-section-header h2 {
    margin-top:0;
    font-size: 46px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.brand-section-header p {
    color: #aaa;
    font-size: 20px;
    letter-spacing: 1.5px;
}

.brand-section + .brand-section {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 40px;
}

.tae-header h2 {
    color: #d62828;
    text-shadow:
        0 0 10px rgba(214,40,40,0.8),
        0 0 25px rgba(214,40,40,0.5);
}

.koo-header h2 {
    color: #FFD700;
    text-shadow:
        0 0 10px rgba(255,215,0,0.8),
        0 0 25px rgba(255,215,0,0.5);
}

.tae-header::after, 
.koo-header::after {
    content: "";
    display: block;
    width: 220px;
    height: 3px;
    margin: 20px auto 0;
}

.tae-header::after {
    background: linear-gradient(to right, transparent, #d62828, transparent);
    box-shadow: 0 0 15px #d62828;
}

.koo-header::after {
    background: linear-gradient(to right, transparent, #FFD700, transparent);
    box-shadow: 0 0 15px #FFD700;
}

/* =========================
   GRID & CARD
========================= */

.brand-grid {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:80px;
    padding:20px;
    width:100%;
    max-width:100%;
    box-sizing:border-box;
}

.brand-card {
    background: #111;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    flex:0 1 340px;
    height: auto;
    width:340px;
    max-width:100%;
    box-sizing:border-box;
}

.brand-image{
    background:#090909;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.brand-card img{
    width:100%;
    height:320px;
    /* height:auto; */
    object-fit:contain;
}

.brand-card:hover {
    transform: translateY(-6px);
}

.tae-card:hover {
    box-shadow: 0 0 15px #d62828;
}

.koo-card:hover {
    box-shadow: 0 0 15px #FFD700;
}

.brand-info {
    padding: 12px;
}

.brand-info h3 {
    margin: 0;
    font-size: 22px;
    font-family: "Fira Sans Condensed", sans-serif;
    letter-spacing: 1px;
}

.tae-info h3{
    color: #d62828;
}

.koo-info h3{
    color: #FFD700;
}

.brand-tags {
    margin-top: 4px;
    font-size: 18px;
    color: #aaa;
}

.brand-link {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 16px;
    text-decoration: none;
    color:#0FFF50; 
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s ease;
}

.brand-link:hover {
    border-color: #6A0DAD;
    box-shadow: 0 0 12px rgba(106,13,173,0.8);
    transform: translateY(-2px);
}

/* =========================================
   TABLET LANDSCAPE
   769px – 1180px
========================================= */

@media (min-width:769px) and (max-width:1180px) and (orientation:landscape){

    /* Hero */
    .ambassador-header{
        max-width:850px;
        padding:20px 15px 25px;
        margin-bottom:10px;
    }

    .ambassador-header::before{
        width:350px;
        height:350px;
        top:-130px;
    }

    .ambassador-badge{
        font-size:11px;
        padding:5px 14px;
        margin-bottom:10px;
        letter-spacing:1.2px;
    }

    .ambassador-icon{
        font-size:42px;
        margin-bottom:7px;
    }

    .ambassador-title{
        font-size:36px;
        margin:5px 0 7px;
    }

    .ambassador-tagline{
        max-width:600px;
        font-size:14px;
        line-height:1.4;
    }


    /* Brand sections */
    .brand-section{
        width:92%;
    }

    .brand-section-header{
        margin-bottom:25px;
    }

    .brand-section-header h2{
        font-size:34px;
        letter-spacing:2px;
        margin-bottom:5px;
    }

    .brand-section-header p{
        font-size:15px;
        letter-spacing:1px;
        margin:5px 0;
    }

    .brand-section + .brand-section{
        padding-top:30px;
    }

    .tae-header::after,
    .koo-header::after{
        width:180px;
        height:2px;
        margin-top:14px;
    }


    /* Brand grid */
    .brand-grid{
        gap:30px;
        padding:15px;
    }

    .brand-card{
        flex:0 1 270px;
        width:270px;
    }

    .brand-image{
        padding:15px;
    }

    .brand-card img{
        height:250px;
    }

    .brand-info{
        padding:10px;
    }

    .brand-info h3{
        font-size:19px;
    }

    .brand-tags{
        font-size:15px;
    }

    .brand-link{
        margin-top:8px;
        padding:5px 12px;
        font-size:14px;
    }
}


/* =========================================
   TABLET PORTRAIT
   769px – 1024px
========================================= */

@media (min-width:769px) and (max-width:1024px) and (orientation:portrait){

    /* Hero */
    .ambassador-header{
        max-width:700px;
        padding:25px 15px 25px;
        margin-bottom:15px;
    }

    .ambassador-header::before{
        width:350px;
        height:350px;
        top:-120px;
    }

    .ambassador-badge{
        font-size:12px;
        padding:6px 15px;
        margin-bottom:12px;
    }

    .ambassador-icon{
        font-size:48px;
        margin-bottom:8px;
    }

    .ambassador-title{
        font-size:40px;
        margin:6px 0 8px;
    }

    .ambassador-tagline{
        max-width:600px;
        font-size:16px;
        line-height:1.5;
    }


    /* Brand sections */
    .brand-section{
        width:94%;
    }

    .brand-section-header{
        margin-bottom:25px;
    }

    .brand-section-header h2{
        font-size:38px;
        letter-spacing:2px;
        margin-bottom:6px;
    }

    .brand-section-header p{
        font-size:17px;
        letter-spacing:1px;
    }

    .brand-section + .brand-section{
        padding-top:30px;
    }

    .tae-header::after,
    .koo-header::after{
        width:190px;
        height:2px;
        margin-top:15px;
    }


    /* Brand grid */
    .brand-grid{
        gap:35px;
        padding:15px;
    }

    .brand-card{
        flex:0 1 300px;
        width:300px;
    }

    .brand-image{
        padding:18px;
    }

    .brand-card img{
        height:280px;
    }

    .brand-info{
        padding:11px;
    }

    .brand-info h3{
        font-size:20px;
    }

    .brand-tags{
        font-size:16px;
    }

    .brand-link{
        margin-top:10px;
        padding:6px 13px;
        font-size:15px;
    }
}

/* =========================
   MOBILE BRAND PAGE
========================= */

@media (max-width:768px){
    .ambassador-header{
        padding:12px 8px 18px;
    }

    .ambassador-header::before{
        width:280px;
        height:280px;
        top:-100px;
    }

    .ambassador-badge{
        font-size:.6rem;
        letter-spacing:1px;
        padding:5px 12px;
        margin-bottom:9px;
    }

    .ambassador-icon{
        font-size:2.5rem;
        margin-bottom:6px;
    }

    .ambassador-title{
        font-size:1.7rem;
        margin:4px 0 7px;
        letter-spacing:.5px;
    }

    .ambassador-tagline{
        max-width:330px;
        font-size:.8rem;
        line-height:1.4;
    }

    .ambassador-header .hero-divider{
        width:190px;
        margin-top:13px;
    }

    .brand-section{
        margin:35px 0;
        width:90%;
        overflow:hidden;
    }

    .brand-section-header{
        padding:0 10px;
        margin-top: 0;
    }

    .brand-section-header h2{
        font-size:28px;
        letter-spacing:2px;
    }

    .brand-section-header p{
        font-size:10px;
    }

    .tae-header::after,
    .koo-header::after{
        width:150px;
    }

    .brand-grid{
        display:grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:8px;
        padding:10px;
        width:100%;
        box-sizing:border-box;
    }

    .brand-card{
        width:100%;
        min-width:0;
        overflow:hidden;
        box-sizing:border-box;
    }

    .brand-card img{
        width:100%;
        height:80px;
        object-fit:contain;
    }

    .brand-info{
        padding:8px;
    }

    .brand-info h3{
        font-size:13px;
        line-height:1.2;
    }

    .brand-tags{
        font-size:10px;
    }

    .brand-link{
        margin-top:8px;
        padding:4px 10px;
        font-size:10px;
    }
}