.at-91b10582-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.at-91b10582-item {
    background: #091540;
    border: 1px solid #1d3557;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.at-91b10582-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    user-select: none;
}

.at-91b10582-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

.at-91b10582-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #64b5f6;
    transition: transform 0.3s ease;
}

.at-91b10582-icon-svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Transition to minus (-) sign */
.at-91b10582-icon-line-v {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.at-91b10582-item.is-active .at-91b10582-icon-line-v {
    transform: scaleY(0);
    opacity: 0;
}

.at-91b10582-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 32px;
}

.at-91b10582-item.is-active .at-91b10582-content {
    max-height: 2000px;
    transition: max-height 0.5s ease-in, padding 0.3s ease;
    padding-bottom: 32px;
}

.at-91b10582-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.at-91b10582-tag {
    background-color: #0d225c;
    border: 1px solid #1d3557;
    border-radius: 50px;
    color: #8cb2f2;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.at-91b10582-tag:hover {
    background-color: #1d3557;
    color: #ffffff;
}
