/* =========================================================
   SORU NOTLARI
========================================================= */

.notes-page {
    min-height: 100vh;

    padding: 42px 0 70px;

    background: #f3f6fa;
}


/* =========================================================
   BAŞLIK
========================================================= */

.notes-head {
    margin-bottom: 24px;
}

.notes-head h1 {
    margin: 6px 0 9px;

    color: #071b35;

    font-size: 38px;
    line-height: 1.2;
}

.notes-head p {
    max-width: 720px;

    margin: 0;

    color: #6f8194;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   ÖZET
========================================================= */

.notes-summary {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 22px;

    padding: 17px 19px;

    background: #ffffff;

    border: 1px solid #dfe7f0;
    border-radius: 13px;
}

.notes-summary-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    background: #eaf9f1;

    border-radius: 11px;

    font-size: 21px;
}

.notes-summary strong {
    display: block;

    color: #071b35;

    font-size: 17px;
}

.notes-summary span {
    display: block;

    margin-top: 3px;

    color: #788a9d;

    font-size: 13px;
}


/* =========================================================
   KATEGORİ GRID
========================================================= */

.notes-category-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;
}


/* =========================================================
   KATEGORİ KARTI
========================================================= */

.note-category-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 14px;

    min-width: 0;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #dfe7f0;
    border-radius: 14px;

    box-shadow:
        0 10px 26px
        rgba(30, 58, 85, .045);
    
    color: inherit;

    text-decoration: none;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        
}

.note-category-card:hover {
    transform: translateY(-2px);

    border-color: #bad6f0;

    box-shadow:
        0 14px 32px
        rgba(30, 58, 85, .08);
}


/* NUMARA */

.note-category-number {
    position: absolute;

    top: 12px;
    right: 14px;

    color: #9aacbd;

    font-size: 11px;
    font-weight: 900;
}


/* İKON */

.note-category-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    background: #eef6ff;

    border-radius: 11px;

    font-size: 21px;
}


/* İÇERİK */

.note-category-content {
    min-width: 0;

    padding-right: 8px;
}

.note-category-content h2 {
    margin: 0 24px 7px 0;

    color: #071b35;

    font-size: 18px;
    line-height: 1.35;
}

.note-category-content p {
    margin: 0;

    color: #718398;

    font-size: 13px;
    line-height: 1.6;
}

.note-category-status {
    display: inline-block;

    margin-top: 13px;

    color: #147df5;

    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .notes-category-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 650px) {

    .notes-page {
        padding: 28px 0 50px;
    }

    .notes-head h1 {
        font-size: 30px;
    }

    .notes-category-grid {
        grid-template-columns: 1fr;
    }

    .note-category-card {
        padding: 18px;
    }
}


/* =========================================================
   KÜÇÜK TELEFON
========================================================= */

@media (max-width: 430px) {

    .notes-head h1 {
        font-size: 27px;
    }

    .notes-summary {
        align-items: flex-start;
    }

    .note-category-content h2 {
        font-size: 17px;
    }
}
