/* ================================================
   EGITIM.NET.TR - HABER SONU SINIF + YORUM ALANI
   DAHA SADE / KURUMSAL SÜRÜM
================================================ */

#kitap-haber-sonu {
    width: 100%;
    max-width: 720px;
    margin: 24px auto 18px;
    padding: 0 8px;
    box-sizing: border-box;
}


/* =========================
   SINIF BUTONU
========================= */

#kitap-haber-sonu .khs-sinif {
    display: none;
    text-align: center;
    margin: 0 0 16px;
}

#kitap-haber-sonu .khs-sinif a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 46px;
    padding: 0 26px;

    background: linear-gradient(135deg, #2458b8 0%, #3f73d1 55%, #5a6edb 100%);
    color: #fff !important;

    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .1px;
    text-decoration: none !important;

    border: 0;
    border-radius: 999px;

    box-shadow:
        0 8px 18px rgba(41, 83, 170, .18),
        0 2px 6px rgba(35, 53, 94, .08);

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        opacity .18s ease;
}

#kitap-haber-sonu .khs-sinif a::after {
    content: "›";
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

#kitap-haber-sonu .khs-sinif a:hover {
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow:
        0 11px 22px rgba(41, 83, 170, .24),
        0 3px 8px rgba(35, 53, 94, .10);
}


/* =========================
   YORUM KUTUSU
========================= */

#kitap-haber-sonu .khs-kutu {
    position: relative;
    overflow: hidden;

    padding: 24px 24px 20px;

    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 60%, #f7f9fd 100%);
    border: 1px solid #dbe3ef;
    border-radius: 18px;

    box-shadow:
        0 8px 22px rgba(29, 45, 84, .05);

    text-align: center;
    box-sizing: border-box;
}

#kitap-haber-sonu .khs-kutu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 108px;
    height: 5px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #2c5fbd 0%, #4e83da 55%, #6c79de 100%);
    border-radius: 0 0 10px 10px;
}

#kitap-haber-sonu .khs-kutu::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(92, 119, 221, .06), transparent 28%);
    pointer-events: none;
}


/* BAŞLIK */

#kitap-haber-sonu .khs-baslik {
    position: relative;
    z-index: 1;

    margin: 8px 0 14px;

    color: #26395f;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}


/* METİN */

#kitap-haber-sonu .khs-kutu p {
    position: relative;
    z-index: 1;

    max-width: 610px;
    margin: 0 auto 9px !important;
    padding: 0 !important;

    color: #5f6b80 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.72 !important;
    text-align: center !important;
}

#kitap-haber-sonu .khs-kutu strong {
    color: #2f3e5c;
    font-weight: 700;
}


/* ALT SATIR */

#kitap-haber-sonu .khs-alt {
    position: relative;
    z-index: 1;

    max-width: 420px;
    margin: 14px auto 0;
    padding: 12px 0 0;

    border-top: 1px solid #e2e8f0;

    color: #7d889c;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================
   MOBİL
========================= */

@media (max-width: 600px) {

    #kitap-haber-sonu {
        max-width: 100%;
        margin: 20px auto 16px;
        padding: 0 4px;
    }

    #kitap-haber-sonu .khs-sinif {
        margin-bottom: 14px;
    }

    #kitap-haber-sonu .khs-sinif a {
        min-height: 43px;
        max-width: 96%;
        padding: 0 18px;
        font-size: 12px;
        gap: 8px;
    }

    #kitap-haber-sonu .khs-kutu {
        padding: 20px 16px 18px;
        border-radius: 16px;
    }

    #kitap-haber-sonu .khs-baslik {
        margin: 7px 0 12px;
        font-size: 17px;
        line-height: 1.35;
    }

    #kitap-haber-sonu .khs-kutu p {
        font-size: 13px !important;
        line-height: 1.65 !important;
        margin-bottom: 8px !important;
    }

    #kitap-haber-sonu .khs-alt {
        margin-top: 12px;
        padding-top: 10px;
        font-size: 12px;
    }
}