.bac-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.bac-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 768px) {
    .bac-list { grid-template-columns: 1fr; }
}

/* ── Item ──────────────────────────────────────────────────────────────────── */

.bac-item {
    background: #ede4d6;
    border: 1px solid #d1c5b2;
    border-radius: 8px;
    overflow: hidden;
}

/* ── Header / trigger ──────────────────────────────────────────────────────── */

.bac-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 24px;
}

.bac-item__title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.1;
    color: #504d49;
    flex: 1;
}

/* ── Icon circle ───────────────────────────────────────────────────────────── */

.bac-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 0.769px solid #c6b69f;
    border-radius: 50%;
}

.bac-icon-v {
    transition: opacity 0.25s ease;
}

.bac-item.is-open .bac-icon-v {
    opacity: 0;
}

/* ── Body (smooth expand via grid trick) ───────────────────────────────────── */

.bac-item__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.bac-item.is-open .bac-item__body {
    grid-template-rows: 1fr;
}

.bac-item__content {
    overflow: hidden;
    padding: 0 88px 0 24px; /* 64px right + 24px base = 88px; no top pad — gap from header */
}

.bac-item.is-open .bac-item__content {
    padding-bottom: 24px;
}

/* ── Content typography ────────────────────────────────────────────────────── */

.bac-item__content p,
.bac-item__content li {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #504d49;
    margin-top: 0;
}

.bac-item__content p + p {
    margin-top: 12px;
}

@media (max-width: 600px) {
    .bac-item__header {
        padding: 16px;
        gap: 16px;
    }

    .bac-item__title {
        font-size: 17px;
    }

    .bac-item__content {
        padding: 0 16px 0 16px;
    }

    .bac-item.is-open .bac-item__content {
        padding-bottom: 16px;
    }

    .bac-item__content p,
    .bac-item__content li {
        font-size: 16px;
    }
}
