.section-dropdown {
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: inset 0 -1px 0 rgb(221 225 227);
}

.section-dropdown__title {
    display: flex;
    align-content: start;
    align-items: center;
    margin: 0;
    gap: 10px;
    font-size: 16px;
    transition: opacity 0.3s ease-in-out;
}
.js-section-dropdown__title {
    cursor: pointer;
}
.section-dropdown__title > svg {
    width: 16px;
    height: 16px;
}

.section-dropdown--show .js-section-dropdown__title{
    margin-bottom: 20px;
}

.section-dropdown--show .section-dropdown__title > svg {
    transform: rotate(180deg);
}

.section-dropdown__content {
    display: none;
}
.section-dropdown__content > *:last-child {
    margin-bottom: 0 !important;
}

.section-dropdown--show .section-dropdown__content{
    display: block;
}

@media (min-width: 1200px) {
    .section-dropdown__title {
        opacity: .7;
    }
    .section-dropdown__title:hover,
    .section-dropdown--show .section-dropdown__title {
        opacity: 1;
    }
}