:root {
  --white: white;
}

ul.link__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.link__item {
    display: flex;
    gap: 8px;
    cursor: pointer;
}

.link__icon {
    min-width: 16px;
    height: 16px;
    margin-top: 3px;
    background-color: #1A73E8; 
    mask-image:  url('http://gymn5.baranovichi.edu.by/ru/sm_full.aspx?guid=81393');
    mask-repeat: no-repeat;
    mask-size: cover;
}

.link__icon--link { 
    mask-image:  url('http://gymn5.baranovichi.edu.by/ru/sm_full.aspx?guid=84803');
}

.link__text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: #1A73E8;
}

.link__text:hover {
    text-decoration: underline;
}

.link__text:visited {
    color: #1056b0;
}

/* Стили для заголовков аккордеона */
.accordion__header {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 100%;
    border: none;
    padding: 18px 50px 18px 20px;
    text-decoration: none;
    font-size: 16px;
    text-align: left;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
}

/* Анимированная стрелка с использованием псевдоэлементов */
.accordion__header::before,
.accordion__header::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 12px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.accordion__header::before {
    transform: translateY(-50%) rotate(45deg);
    right: 28px;
}

.accordion__header::after {
    transform: translateY(-50%) rotate(-45deg);
    right: 20px;
}

.accordion__header.active::before {
    transform: translateY(-50%) rotate(-45deg);
}

.accordion__header.active::after {
    transform: translateY(-50%) rotate(45deg);
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    .accordion__header::before,
    .accordion__header::after {
        right: 15px;
        width: 10px;
    }

    .accordion__header::before {
        right: 23px;
    }
}

.lightrope {
   display: none;
}