/*** typography record CSS ***/
    .column .layout_menu > li > a {
        display: block;
        padding: 10px 15px;
        color: #30363b;
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        transition: background-color 0.3s ease, color 0.3s ease;
        border-radius: 5px;
    }
    .column .layout_menu > li > a:hover {
        background-color: #f0f0f0;
        color: #007bff;
    }
    .column .layout_menu > li > a.active {
        background-color: transparent;
        color: #30363b;
        font-weight: 700;
        box-shadow: none;
        border-bottom: 2px solid #30363b;
        border-radius: 0;
    }

