/* Контейнер */
.aktivitat_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Переключатель годов */
.aktivitat_year-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-family: 'Unageo';
    font-size: 22px;
    color: var(--link-color);
}

.year-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--link-color);
    transition: 0.3s;
}

.year-btn:hover {
    transform: scale(1.2);
}

/* Список ссылок */
.aktivitat_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
}

.aktivitat_list li a {
    display: inline-block;
    font-family: 'Unageo';
    font-size: 18px;
    color: var(--link-color);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.aktivitat_list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--link-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.aktivitat_list li a:hover::after {
    width: 100%;
    left: 0;
}

/* Модальное окно */
.aktivitat_modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 1000;
    overflow: auto;
    padding: 20px;
    box-sizing: border-box;
}

.aktivitat_modal-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    background: var(--hntrgrnd-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
}

.aktivitat_modal-content img {
    width: 100%;
    height: auto;
    max-height: 50vh;
    border-radius: 8px;
    object-fit: contain;
    margin-top: 30px;
}

.aktivitat_modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #dde3f4;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.aktivitat_modal-description {
    margin-top: 15px;
    color: #dde3f4;
    word-wrap: break-word;
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
}
