/* Clickable List Block */
.acv-clickable-list-block {
    padding: 90px 190px;
    background: #ffffff;
    border-style: solid;
    border-width: 1px;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-color: #dedede;
}

.acv-clickable-list-block.is-pinned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.acv-clickable-list-block.is-pinned .acv-clickable-list-inner {
    height: 100%;
    max-height: calc(100vh - 180px);
}

.acv-clickable-list-placeholder {
    width: 100%;
}

.acv-clickable-list-inner {
    max-width: 1600px;
    margin: 0 auto;
}

.acv-clickable-list-heading {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    margin: 0 0 20px;
}

.acv-clickable-list-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5b66;
    margin-bottom: 40px;
    max-width: 800px;
}

.acv-clickable-list-intro p {
    margin: 0 0 1em;
}

.acv-clickable-list-intro p:last-child {
    margin-bottom: 0;
}

.acv-clickable-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.acv-clickable-list-titles {
    display: flex;
    flex-direction: column;
    border-left: 2px solid #e1e7ee;
    padding-left: 18px;
    gap: 10px;
}

.acv-clickable-list-button {
    background: none;
    border: none;
    text-align: left;
    font-size: 1.5rem;
    color: #b8bec4;
    padding: 8px 0 8px 14px;
    position: relative;
    cursor: pointer;
    font-weight: 200;
    transition: color 0.2s ease;
}

.acv-clickable-list-button::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 32px;
    border-radius: 999px;
    background: transparent;
}

.acv-clickable-list-button.is-active {
    color: #0f6b82;
    font-weight: 400;
}

.acv-clickable-list-button.is-active::before {
    background: #0f6b82;
}

.acv-clickable-list-button:focus-visible {
    outline: none;
    color: #0f6b82;
}

.acv-clickable-list-content {
    border-radius: 0;
}

.acv-clickable-list-panel {
    display: none;
    color: #0f2b3b;
    line-height: 1.8;
    font-size: 1rem;
    background: #f3f5f7;
    border-radius: 0;
    padding: 40px;
    min-height: 220px;
}

.acv-clickable-list-panel.is-active {
    display: block;
}

.acv-clickable-list-panel.has-image {
    background: transparent;
    padding: 0;
    min-height: 0;
}

.acv-clickable-list-panel.has-image.is-active {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
}

.acv-clickable-list-panel.has-image img {
    max-width: 65%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .acv-clickable-list-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .acv-clickable-list-titles {
        flex-direction: row;
        flex-wrap: wrap;
        border-left: none;
        border-top: 2px solid #e1e7ee;
        padding-left: 0;
        padding-top: 18px;
    }

    .acv-clickable-list-button {
        flex: 1 1 45%;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .acv-clickable-list-block {
        padding: 60px 20px;
    }

    .acv-clickable-list-heading {
        font-size: 2rem;
    }

    .acv-clickable-list-panel:not(.has-image) {
        padding: 28px;
    }
}
