.ar {
    width: 100%;
    color: #081b4a;
}

.ar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 6px;
}

.ar__title {
    margin: 0;
    color: #081b4a;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
}

.ar__badge {
    padding: 5px 11px;
    border: 1px solid #1bbbd3;
    border-radius: 999px;
    color: #10abc5;
    font-size: 12px;
    white-space: nowrap;
}

.ar__item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 68px;
    padding: 4px 0;
    border-bottom: 1px solid #edf0f4;
}

.ar__icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
}

.ar__icon {
    display: block;
    max-width: 42px;
    max-height: 42px;
    object-fit: contain;
}

.ar__text {
    color: #25345d;
    font-size: 16px;
    line-height: 1.25;
}

.ar__link {
    color: #08afcb;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

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

.ar__item--extra {
    display: none;
}

.ar--expanded .ar__item--extra {
    display: grid;
}

.ar__toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 12px 0 0 62px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #08afcb;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

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

.ar__toggle-icon {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    transition: transform .2s ease;
}

.ar--expanded .ar__toggle-icon {
    transform: rotate(180deg);
}

@media (max-width: 700px) {
    .ar__header {
        align-items: flex-start;
    }

    .ar__title {
        font-size: 21px;
    }

    .ar__item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
    }

    .ar__link {
        grid-column: 2;
        justify-self: start;
        padding-bottom: 5px;
    }

    .ar__toggle {
        margin-left: 52px;
    }
}
.ar__error {
    padding: 12px 14px;
    border: 1px solid #efb7b7;
    border-radius: 8px;
    background: #fff4f4;
    color: #8a2020;
    font-size: 14px;
}
