/* =========================================================
   JOURNAL QUICK MENU - 3 COLUMN
   ========================================================= */

.journal-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin: 24px 0;
}


/* =========================================================
   MENU ITEM
   ========================================================= */

.journal-menu-grid a {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 58px;
    padding: 12px 16px;

    box-sizing: border-box;

    background: #FFFFFF;

    border: 1px solid #E5E7EB;
    border-left: 4px solid #991B1B;

    border-radius: 6px;

    color: #7F1D1D !important;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;

    text-align: center;
    text-decoration: none !important;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.journal-menu-grid a:hover,
.journal-menu-grid a:focus {

    background: #991B1B;

    border-color: #991B1B;

    color: #FFFFFF !important;

    text-decoration: none !important;

    transform: translateY(-2px);

    box-shadow:
        0 5px 14px rgba(127, 29, 29, 0.15);
}


/* =========================================================
   TABLET
   2 COLUMN
   ========================================================= */

@media (max-width: 768px) {

    .journal-menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

}


/* =========================================================
   SMARTPHONE
   1 COLUMN
   ========================================================= */

@media (max-width: 480px) {

    .journal-menu-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .journal-menu-grid a {
        min-height: 52px;
    }

}