/* =========================================================
   SORU NOTU DETAY
========================================================= */

.note-detail-page {
    min-height: 100vh;

    padding: 35px 0 65px;

    background: #f3f6fa;
}


/* BREADCRUMB */

.note-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 22px;

    color: #8292a3;

    font-size: 12px;
}

.note-breadcrumb a {
    color: #147df5;

    font-weight: 700;

    text-decoration: none;
}

.note-breadcrumb strong {
    color: #32485e;
}


/* BAŞLIK */

.note-detail-head {
    margin-bottom: 25px;
}

.note-detail-head h1 {
    margin: 6px 0 8px;

    color: #071b35;

    font-size: 36px;
}

.note-detail-head p {
    margin: 0;

    color: #718398;

    line-height: 1.6;
}


/* NOT LİSTESİ */

.note-content-list {
    display: grid;

    gap: 16px;
}


/* KART */

.note-content-card {
    position: relative;

    display: grid;

    grid-template-columns:
        48px minmax(0, 1fr);

    gap: 17px;

    padding: 24px;

    background: #ffffff;

    border: 1px solid #dfe7f0;

    border-radius: 15px;

    box-shadow:
        0 10px 28px
        rgba(30, 58, 85, .045);
}


/* NUMARA */

.note-content-number {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: #eaf4ff;

    border-radius: 11px;

    color: #147df5;

    font-size: 17px;
    font-weight: 900;
}


/* İÇERİK */

.note-content-body h2 {
    margin: 2px 0 13px;

    color: #071b35;

    font-size: 22px;

    line-height: 1.35;
}

.note-content-text p {
    margin: 0 0 13px;

    color: #536a80;

    font-size: 14px;

    line-height: 1.75;
}

.note-content-text p:last-child {
    margin-bottom: 0;
}


/* İPUCU */

.note-tip {
    margin: 15px 0;

    padding: 14px 16px;

    background: #fff8e5;

    border-left: 4px solid #f0ad24;

    border-radius: 8px;

    color: #665226;

    font-size: 13px;

    line-height: 1.65;
}


/* ÖRNEK */

.note-example {
    margin: 15px 0;

    padding: 15px 17px;

    background: #f1f8ff;

    border-left: 4px solid #147df5;

    border-radius: 8px;
}

.note-example span {
    display: block;

    margin-bottom: 5px;

    color: #147df5;

    font-size: 10px;
    font-weight: 900;
}

.note-example strong {
    color: #17324d;

    font-size: 15px;
}


/* PREFIX KARTLARI */

.note-prefix-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 10px;

    margin: 17px 0;
}

.note-prefix-grid > div {
    padding: 14px;

    background: #f7f9fc;

    border: 1px solid #e2e8ef;

    border-radius: 10px;
}

.note-prefix-grid strong,
.note-prefix-grid span,
.note-prefix-grid small {
    display: block;
}

.note-prefix-grid strong {
    margin-bottom: 5px;

    color: #147df5;

    font-size: 17px;
}

.note-prefix-grid span {
    color: #142d46;

    font-weight: 800;
}

.note-prefix-grid small {
    margin-top: 5px;

    color: #77899b;

    line-height: 1.4;
}


/* BOŞ */

.note-empty {
    padding: 55px 25px;

    background: #ffffff;

    border: 1px solid #dfe7f0;

    border-radius: 15px;

    text-align: center;
}

.note-empty > div {
    font-size: 40px;
}

.note-empty h2 {
    color: #071b35;
}

.note-empty p {
    color: #718398;
}


/* TABLET */

@media (max-width: 800px) {

    .note-prefix-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* MOBİL */

@media (max-width: 600px) {

    .note-detail-page {
        padding-top: 25px;
    }

    .note-detail-head h1 {
        font-size: 29px;
    }

    .note-content-card {
        grid-template-columns: 1fr;

        padding: 18px;
    }

    .note-content-body h2 {
        font-size: 20px;
    }
}


/* KÜÇÜK TELEFON */

@media (max-width: 430px) {

    .note-prefix-grid {
        grid-template-columns: 1fr;
    }
}