/* ==========================================
   MEVZUAT GENEL
========================================== */


.mevzuat-wrapper {
    max-width: 1440px;
    margin: 30px auto;
    min-height: 700px;
    background: #fff;
    display: flex;
}

/* ==========================================
   SOL MENÜ
========================================== */

.mevzuat-sidebar {
    width: 300px;
    flex-shrink: 0;
    background: #222222;
    color: #fff;
}

.mevzuat-menu {
    padding: 30px 0;
}

.mevzuat-menu-group {
    width: 100%;
}

.mevzuat-menu-title {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 30px;

    background: none;
    border: 0;

    color: #fff;

    font-size: 16px;
    font-weight: 500;

    text-align: left;
    text-decoration: none;

    cursor: pointer;
}

.mevzuat-menu-title:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.mevzuat-arrow {
    font-size: 25px;
    line-height: 1;

    transition: transform .2s ease;
}

.mevzuat-menu-group.open .mevzuat-arrow {
    transform: rotate(90deg);
}


/* ==========================================
   ALT MENÜ
========================================== */

.mevzuat-submenu {
    display: none;

    padding: 0 20px 12px 30px;
}

.mevzuat-menu-group.open .mevzuat-submenu {
    display: block;
}

.mevzuat-submenu a {
    display: block;

    padding: 9px 15px;

    color: rgba(255,255,255,.80);

    font-size: 14px;

    text-decoration: none;

    border-left: 2px solid transparent;
}

.mevzuat-submenu a:hover {
    color: #fff;
    background: rgba(255,255,255,.05);
}


/* ==========================================
   SAĞ İÇERİK
========================================== */

.mevzuat-content {
    flex: 1;
    min-width: 0;

    padding: 10px 50px;

    background: #fff;
}

.mevzuat-content h1 {
    margin: 0 0 20px;

    font-size: 30px;
    font-weight: 700;
}

.mevzuat-content hr {
    margin: 0 0 30px;

    border: 0;
    border-top: 1px solid #ddd;
}

.mevzuat-text {
    max-width: 1100px;

    font-size: 16px;
    line-height: 1.75;
}

.mevzuat-text p {
    margin-bottom: 18px;
}


/* ==========================================
   MOBİL
========================================== */

@media (max-width: 900px) {

    .mevzuat-wrapper {
        flex-direction: column;
    }

    .mevzuat-sidebar {
        width: 100%;
    }

    .mevzuat-content {
        padding: 30px 20px;
    }

}