div.accordion {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: flex-start;

    &.halved {
        > div.item {
            width: calc(50% - 9px);
            min-width: 400px;
            justify-content: center;

            @media (max-width: 400px) {
                width: 100%;
                min-width: unset;
            }
        }
    }

    > div.item {
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: var(--borderRadius);
        width: 100%;

        div.title {
            background-color: white;
            border: solid var(--taurusNetworkDarkBlue) 1px;
            border-radius: var(--borderRadius);
            padding: 16px;
            font-size: 18px;
            font-weight: bold;

            background-image: url("../../images/carets/down-EGmb9gn.svg");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;

            background-color: #B9D8E5;
            cursor: pointer;

            span:not(.inline) {
                display: block;
                font-weight: normal;
                font-size: 14px;
            }
        }

        &.highlight {
            div.title {
                background-color: var(--taurusNetworkPrimary);
            }
        }

        > div.card {
            display: none;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            box-shadow: none;
        }

        &.open {
            > div.title {
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;  
                border-bottom: 0;
                background-image: url("../../images/carets/up-3hcBqYc.svg");
            }

            > div.card {
                display: block;
            }
        }
    }
}