/* =========================================
   TABOLI IMPORTANT NOTES
========================================= */

.taboli-notes-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 237, 0, 0.10), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(239, 48, 55, 0.08), transparent 35%),
        #fff;
}


/* Main Card */

.taboli-notes-card {
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        #fff8f8 0%,
        #ffffff 55%,
        #fff5f5 100%
    );

    border: 1px solid rgba(239, 48, 55, 0.15);
    border-radius: 28px;

    padding: 42px;

    box-shadow:
        0 20px 60px rgba(80, 20, 20, 0.08),
        0 4px 15px rgba(80, 20, 20, 0.04);
}


/* Decorative background */

.taboli-notes-card::before {
    content: "";
    position: absolute;

    width: 260px;
    height: 260px;

    right: -100px;
    top: -120px;

    background: rgba(239, 48, 55, 0.06);

    border-radius: 50%;
}

.taboli-notes-card::after {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    left: -80px;
    bottom: -90px;

    background: rgba(255, 237, 0, 0.08);

    border-radius: 50%;
}


/* =========================================
   HEADER
========================================= */

.notes-header {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 24px;

    margin-bottom: 38px;
}


.notes-header-icon {
    width: 72px;
    height: 72px;

    min-width: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #ef3037,
        #c9151d
    );

    color: #fff;

    border-radius: 20px;

    font-size: 32px;

    box-shadow:
        0 12px 25px rgba(239, 48, 55, 0.25);
}


.notes-eyebrow {
    display: block;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #ef3037;

    margin-bottom: 5px;
}


.notes-header h2 {
    margin: 0;

    font-size: 30px;

    font-weight: 800;

    color: #191919;
}


.notes-header p {
    margin: 7px 0 0;

    color: #777;

    font-size: 15px;
}


/* =========================================
   NOTES GRID
========================================= */

.notes-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.notes-grid > :last-child {
    grid-column: 1 / -1;
}


/* Individual note */

.note-item {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 20px;

    background: rgba(255, 255, 255, 0.85);

    border: 1px solid #eeeeee;

    border-radius: 18px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.note-item:hover {
    transform: translateY(-3px);

    border-color: rgba(239, 48, 55, 0.25);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.07);
}


/* Check icon */

.note-check {
    width: 40px;
    height: 40px;

    min-width: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #fff0f1;

    color: #ef3037;

    font-size: 19px;
}


.note-item h4 {
    margin: 1px 0 6px;

    font-size: 16px;

    font-weight: 700;

    color: #222;
}


.notes-bottom h4 {
    margin: 0;

    font-size: 16px;

    font-weight: 700;

    color: #222;
}


.note-item p {
    margin: 0;

    color: #666;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================
   WARNING ITEM
========================================= */

.note-warning {
    background:
        linear-gradient(
            135deg,
            #fff8e6,
            #fffdf7
        );

    border-color: rgba(245, 180, 0, 0.25);
}


.note-warning .note-check {
    background: #fff1c7;

    color: #d99a00;
}


.note-warning h4 {
    color: #9b7000;
}


/* =========================================
   BOTTOM IMPORTANT MESSAGE
========================================= */

.notes-bottom {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 25px;

    padding: 17px 20px;

    border-radius: 16px;

    background: #fff1f2;

    border: 1px solid rgba(239, 48, 55, 0.12);

    color: #555;

    font-size: 14px;

    line-height: 1.6;
}


.notes-bottom strong {
    color: #ef3037;
}


.notes-bottom-icon {
    width: 36px;
    height: 36px;

    min-width: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ef3037;

    color: #fff;

    font-size: 17px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .taboli-notes-card {
        padding: 25px 18px;

        border-radius: 22px;
    }

    .notes-header {
        align-items: flex-start;

        gap: 15px;

        margin-bottom: 25px;
    }

    .notes-header-icon {
        width: 55px;
        height: 55px;

        min-width: 55px;

        border-radius: 15px;

        font-size: 24px;
    }

    .notes-eyebrow {
        font-size: 10px;

        letter-spacing: 1.5px;
    }

    .notes-header h2 {
        font-size: 24px;
    }

    .notes-header p {
        font-size: 13px;
    }

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

        gap: 12px;
    }

    .note-item {
        padding: 16px;

        gap: 13px;
    }

    .note-check {
        width: 36px;
        height: 36px;

        min-width: 36px;

        border-radius: 10px;
    }

    .note-item h4 {
        font-size: 15px;
    }

    .notes-bottom h4 {
        font-size: 15px;
    }

    .note-item p {
        font-size: 13px;
    }

    .notes-bottom {
        align-items: flex-start;

        padding: 15px;

        font-size: 13px;
    }
}