/* Menu VC element (academia_menu) — titel met optioneel icoon + menulijst. */

.tt-menu {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 24px;
}

.tt-menu__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.tt-menu__title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--lighter-green, #ddf1e1);
    line-height: 0;
}

.tt-menu__title-icon-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 30px;
}

.tt-menu__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    line-height: 36px;
    font-weight: 700;
}

.tt-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tt-menu__list > li + li {
    margin-top: 12px;
}

.tt-menu .tt-menu__list a {
    position: relative;
    display: block;
    /* rechts ruimte voor de pijl; pas links/verticaal aan naar wens */
    padding: 12px 32px 12px 16px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    color: var(--font-color, #0A2636);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.tt-menu .tt-menu__list a:hover,
.tt-menu .tt-menu__list a:focus {
    background: var(--lighter-green, #ddf1e1);
    text-decoration: none;
}

.tt-menu .tt-menu__list a:hover .tt-menu__label,
.tt-menu .tt-menu__list a:focus .tt-menu__label,
.tt-menu .tt-menu__list a:hover .tt-menu__subtitle,
.tt-menu .tt-menu__list a:focus .tt-menu__subtitle {
    color: var(--green, #1FA238);
}

.tt-menu__label {
    position: relative;
    display: block;
    padding-left: 15px;
    margin-bottom: 1px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: var(--font-color, #0A2636);
    transition: color 0.2s ease;
}

.tt-menu__label::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 26px;
    color: var(--green, #1FA238);
}

.tt-menu__subtitle {
    display: block;
    padding-left: 15px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: var(--font-color, #0A2636);
    transition: color 0.2s ease;
}

.tt-menu__arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0;
}

.tt-menu__arrow svg {
    display: block;
}
