/* ── DESKTOP ─────────────────────────────────────────────────────── */
.hc-20bca7f3-desktop-wrapper {
    display: flex;
    gap: 20px;
    height: 700px;
    font-family: sans-serif;
    padding: 20px;
    transition: gap 0.5s cubic-bezier(0.4,0,0.2,1);
}
.hc-20bca7f3-layout-boxed .hc-20bca7f3-desktop-wrapper { max-width: 1200px; margin: 0 auto; }
.hc-20bca7f3-layout-full .hc-20bca7f3-desktop-wrapper { padding: 0; }
.hc-20bca7f3-desktop-wrapper.has-expanded { gap: 0 !important; padding: 0 !important; max-width: 100% !important; }

.hc-20bca7f3-cat {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.hc-20bca7f3-desktop-wrapper.has-expanded .hc-20bca7f3-cat:not(.is-expanded) { flex: 0 0 0 !important; max-width: 0 !important; opacity: 0; }
.hc-20bca7f3-cat.is-expanded { flex: 1 !important; max-width: 100% !important; border-radius: 0 !important; }

.hc-20bca7f3-front {
    position: absolute; inset: 0; padding: 30px;
    display: flex; flex-direction: column; justify-content: space-between;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    transition: opacity 0.4s;
}
.hc-20bca7f3-cat.is-expanded .hc-20bca7f3-front { opacity: 0; pointer-events: none; }

.hc-20bca7f3-plus {
    align-self: flex-end; width: 40px; height: 40px;
    background: #e6f0c2; border: none; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
}
.hc-20bca7f3-plus svg { width: 16px; height: 16px; fill: #333; }
.hc-20bca7f3-plus:hover { transform: scale(1.1); }
.hc-20bca7f3-front h3 { color: #fff; font-family: serif; font-size: 2.5rem; margin: 0; line-height: 1.1; }

.hc-20bca7f3-desktop-expanded {
    position: absolute; inset: 0;
    background: rgba(43,31,26,0.85);
    display: flex; padding: 60px 40px 100px 40px; gap: 40px;
    color: #fff;
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s 0.1s;
    z-index: 1;
}
.hc-20bca7f3-cat.is-expanded .hc-20bca7f3-desktop-expanded { opacity: 1; pointer-events: auto; }

.hc-20bca7f3-close {
    position: absolute; top: 10px; right: 20px;
    background: transparent; border: none; color: #fff; font-size: 32px;
    cursor: pointer; z-index: 100; transition: transform 0.3s;
    display: flex; align-items: center; justify-content: center; padding: 10px;
}
.hc-20bca7f3-close svg { width: 32px; height: 32px; fill: currentColor; }
.hc-20bca7f3-close:hover { transform: scale(1.1); }

.hc-20bca7f3-exp-left {
    flex: 1 1 300px; display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
}
.hc-20bca7f3-heading { font-family: serif; font-size: 4rem; margin-bottom: 20px; color: #fff; line-height: 1.1; }
.hc-20bca7f3-desc { font-size: 1.1rem; line-height: 1.6; color: #ccc; margin-bottom: 30px; }
.hc-20bca7f3-main-btn {
    display: inline-block; padding: 15px 30px;
    background-color: #e6f0c2; color: #000;
    text-decoration: none; font-weight: bold;
    border-radius: 30px; text-transform: uppercase;
    font-size: 0.9rem; margin-bottom: 40px; transition: opacity 0.3s;
}
.hc-20bca7f3-main-btn:hover { opacity: 0.8; }

.hc-20bca7f3-nav { display: flex; gap: 15px; margin-top: auto; }
.hc-20bca7f3-nav-btn {
    background: transparent; border: none; color: #fff;
    cursor: pointer; padding: 10px;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.3s;
}
.hc-20bca7f3-nav-btn svg { width: 24px; height: 24px; fill: currentColor; }
.hc-20bca7f3-nav-btn:hover { opacity: 0.7; }

.hc-20bca7f3-exp-right {
    flex: 2 1 500px; overflow-x: auto;
    scrollbar-width: none; display: flex; align-items: center;
}
.hc-20bca7f3-exp-right::-webkit-scrollbar { display: none; }
.hc-20bca7f3-cards-wrapper { display: flex; gap: 20px; }

/* Shared card styles */
.hc-20bca7f3-card {
    flex: 0 0 300px; background: #f7f6f2;
    border-radius: 12px; padding: 24px;
    color: #333; display: flex; flex-direction: column;
}
.hc-20bca7f3-card-title { font-size: 0.9rem; text-transform: uppercase; margin: 0 0 15px; letter-spacing: 1px; color: #000; }
.hc-20bca7f3-card-img-wrap { margin-bottom: 15px; border-radius: 8px; overflow: hidden; }
.hc-20bca7f3-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.hc-20bca7f3-card-desc { font-size: 0.95rem; line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }

.hc-20bca7f3-card-btns {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto;
}
.hc-20bca7f3-card-btn {
    display: inline-block; padding: 10px 20px;
    border: 1px solid #333; border-radius: 20px;
    text-decoration: none; color: #333;
    font-size: 0.8rem; text-transform: uppercase;
    text-align: center; transition: all 0.3s;
}
.hc-20bca7f3-card-btn:hover { background: #333; color: #fff; }

/* ── MOBILE ──────────────────────────────────────────────────────── */
.hc-20bca7f3-mobile-wrapper { display: none; }

@media (max-width: 768px) {
    .hc-20bca7f3-desktop-wrapper { display: none !important; }
    .hc-20bca7f3-mobile-wrapper { display: block; }

    .hc-20bca7f3-mob-item { border-bottom: 1px solid rgba(0,0,0,0.1); }

    .hc-20bca7f3-mob-tab {
        display: flex; justify-content: space-between; align-items: center;
        width: 100%; padding: 20px;
        background: transparent; border: none;
        cursor: pointer; text-align: left;
        transition: background-color 0.3s;
    }
    .hc-20bca7f3-mob-tab:hover,
    .hc-20bca7f3-mob-item.is-open .hc-20bca7f3-mob-tab { background: rgba(0,0,0,0.05); }

    .hc-20bca7f3-mob-tab-title {
        font-family: serif; font-size: 2rem; color: #333; line-height: 1.1;
    }
    .hc-20bca7f3-mob-tab-icon { transition: transform 0.3s; flex-shrink: 0; }
    .hc-20bca7f3-mob-tab-icon svg { width: 20px; height: 20px; fill: #333; }
    .hc-20bca7f3-mob-item.is-open .hc-20bca7f3-mob-tab-icon { transform: rotate(180deg); }

    .hc-20bca7f3-mob-body { padding: 20px; }
    .hc-20bca7f3-mob-desc { font-size: 1rem; line-height: 1.6; color: #555; margin-bottom: 20px; }

    .hc-20bca7f3-mob-cards-scroll {
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .hc-20bca7f3-mob-cards-scroll::-webkit-scrollbar { display: none; }

    .hc-20bca7f3-mob-cards-row {
        display: flex; gap: 16px;
        padding-bottom: 4px;
    }
    .hc-20bca7f3-mob-cards-row .hc-20bca7f3-card { flex: 0 0 260px; }

    .hc-20bca7f3-mob-nav {
        display: flex; gap: 15px; margin-top: 20px;
    }
    .hc-20bca7f3-mob-nav .hc-20bca7f3-nav-btn { color: #333; }
    .hc-20bca7f3-mob-nav .hc-20bca7f3-nav-btn svg { fill: #333; }
}
