:root {
    --academy-section-bg: #0c1827;
    --academy-text-white: #ffffff;
    --academy-text-muted: rgba(255, 255, 255, 0.7);
    --academy-primary-gradient: linear-gradient(90deg, #ff9800 0%, #ff7043 100%);
    --academy-blue-gradient: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    --academy-glass-bg: rgba(255, 255, 255, 0.05);
    --academy-glass-border: rgba(255, 255, 255, 0.1);
    --academy-glass-hover: rgba(255, 255, 255, 0.08);
    --academy-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   VEBENDE AKADEMİ - ACADEMY HERO SECTION
   ========================================================= */

.vb-academy-hero-section {
    background-image: url('/img/vebende-akademi-bg.jpg?v=3');
    background-size: cover;
    background-position: center 50%;
    padding: 130px 0;
    position: relative;
    /* Metinlerin kırpılmasını engelle */
    overflow: visible;
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.vb-academy-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, rgba(12, 24, 39, 0.92) 0%, rgba(12, 24, 39, 0.75) 50%, rgba(12, 24, 39, 0.20) 100% );
    z-index: 1;
}


/* Bootstrap / genel z-index */
.z-index-2 {
    position: relative;
    z-index: 2;
}


/* =========================================================
   BADGE
   ========================================================= */

.vb-academy-badge {
    display: inline-block;
    background: var(--academy-primary-gradient);
    color: var(--academy-text-white);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.20);
}


/* =========================================================
   MAIN HERO TITLE
   ========================================================= */

.vb-academy-title {
    font-size: 2.8rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0 0 20px 0;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
}


/* Gradient text */

.vb-academy-gradient-text {
    background: var(--academy-blue-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.vb-academy-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--academy-text-muted) !important;
    margin: 0 0 25px 0;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
}


/* =========================================================
   AÇIK AKADEMİ LINK
   ========================================================= */

.vb-academy-announcement-text-link {
    text-decoration: none !important;
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    transition: transform 0.3s ease;
}

    .vb-academy-announcement-text-link:hover {
        transform: scale(1.03);
    }


/* =========================================================
   AÇIK AKADEMİ BAŞLIK
   ========================================================= */

.vb-academy-announcement-title {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    /* Kritik: sabit yükseklik yok */
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0 0 12px 0;
    /*
     * Üst ve alt harflerin kırpılmasını önlüyoruz.
     */
    padding: 0.10em 0 0.16em 0;
    font-size: clamp(2.2rem, 8vw, 3.6rem);
    /*
     * 1.08 yerine biraz daha rahat değer.
     */
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    color: transparent;
    background: var(--academy-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(255, 152, 0, 0.15);
    /*
     * Metnin hiçbir parent tarafından kesilmemesi için
     */
    overflow: visible;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}


/* =========================================================
   AÇIK AKADEMİ AÇIKLAMA / ALT METİN
   ========================================================= */

.vb-academy-announcement-sub {
    display: block;
    width: 100%;
    color: #00c6ff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    transition: color 0.3s ease;
}


.vb-academy-announcement-text-link:hover
.vb-academy-announcement-sub {
    color: #ff9800;
}


/* =========================================================
   AÇIK AKADEMİ AÇIKLAMA PARAGRAFLARI
   Eğer announcement içinde p kullanılıyorsa
   ========================================================= */

.vb-academy-announcement-text-link p {
    height: auto;
    min-height: 0;
    max-height: none;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.6;
    overflow: visible;
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.vb-academy-btn-primary {
    display: inline-block;
    background: var(--academy-blue-gradient);
    color: var(--academy-text-white) !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 25px rgba(0, 198, 255, 0.25);
}


    .vb-academy-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0, 198, 255, 0.35);
    }


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.vb-academy-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--academy-text-white) !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 30px;
    border-radius: 12px;
    border: 2px solid var(--academy-glass-border);
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}


    .vb-academy-btn-secondary:hover {
        background-color: var(--academy-glass-hover);
        border-color: var(--academy-text-white);
        transform: translateY(-2px);
    }


/* =========================================================
   FEATURE CARD LINK
   ========================================================= */

.vb-academy-card-link {
    text-decoration: none !important;
}


/* =========================================================
   FEATURE CARD
   ========================================================= */

.vb-academy-feature-card {
    background: var(--academy-glass-bg);
    border: 1px solid var(--academy-glass-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--academy-shadow);
}


.vb-academy-card-link:hover
.vb-academy-feature-card {
    background: var(--academy-glass-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   FEATURE CARD ICON
   ========================================================= */

.vb-academy-card-icon {
    background: var(--academy-glass-hover);
    border: 1px solid var(--academy-glass-border);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00c6ff;
    font-size: 1.35rem;
    flex-shrink: 0;
}


/* =========================================================
   FEATURE CARD CONTENT
   ========================================================= */

.vb-academy-card-content h4 {
    color: var(--academy-text-white);
    font-size: 1.25rem;
    margin-bottom: 8px;
}


.vb-academy-card-content p {
    color: var(--academy-text-muted) !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    height: auto;
    min-height: 0;
    overflow: visible;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 991px) {

    .vb-academy-hero-section {
        padding: 80px 0;
    }

    .vb-academy-title {
        font-size: 2.2rem;
    }

    .vb-academy-feature-card {
        padding: 20px;
    }

    .vb-academy-announcement-title {
        font-size: clamp(2.2rem, 7vw, 3.2rem);
    }

    .vb-academy-announcement-sub {
        font-size: 1.5rem;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .vb-academy-hero-section {
        padding: 60px 0;
    }

    .vb-academy-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .vb-academy-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .vb-academy-announcement-title {
        font-size: 2.55rem;
        line-height: 1.15;
        letter-spacing: -1.2px;
        padding: 0.10em 0 0.16em;
    }

    .vb-academy-announcement-sub {
        font-size: 1.25rem;
        line-height: 1.4;
    }
}
