/* ========== HOLDFAST CONSTRUCTIONS — PAGE-SPECIFIC ========== */

/* ---- Hero Variant ---- */
.cs-hero--light {
    background: var(--white);
}

/* Feature cards — zig-zag right column */
.cs-hero__cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cs-hero__card {
    background: var(--white);
    border: 1px solid var(--grey-03);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cs-hero__card:nth-child(odd) {
    margin-right: 2rem;
}

.cs-hero__card:nth-child(even) {
    margin-left: 2rem;
}

.cs-hero__card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background: var(--grey-02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-green);
}

.cs-hero__card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cs-hero__card-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.cs-hero__card-text span {
    font-size: 0.75rem;
    color: var(--grey-05);
    margin: 0;
    line-height: 1.2;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .cs-hero__chat-card {
        left: 1rem;
        bottom: 1rem;
        width: 240px;
    }

    .cs-hero__card { box-shadow: none; }

    .cs-hero__cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .cs-hero__card:nth-child(odd) {
        margin-right: 0;
    }

    .cs-hero__card:nth-child(even) {
        margin-left: 0;
    }
}

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