/* ═══════════════════════════════════════════════════════════
   ACPS Homepage Builder — Front-End Section Styles
═══════════════════════════════════════════════════════════ */

/* ── Section wrapper ───────────────────────────────────── */
.acps-custom-section {
    position: relative;
}

/* Light text override (when BG is dark) */
.acps-custom-section.acps-section-light,
.acps-custom-section.acps-section-light h1,
.acps-custom-section.acps-section-light h2,
.acps-custom-section.acps-section-light h3,
.acps-custom-section.acps-section-light h4,
.acps-custom-section.acps-section-light h5,
.acps-custom-section.acps-section-light p,
.acps-custom-section.acps-section-light li {
    color: #fff;
}

/* ── Text block ────────────────────────────────────────── */
.acps-block-text .acps-block-heading {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    color: inherit;
}
.acps-block-text .acps-block-body {
    font-size: 1rem;
    line-height: 1.75;
    color: inherit;
    opacity: .88;
}
.acps-block-text .acps-block-body p { margin-bottom: 12px; }
.acps-block-text .acps-block-body ul,
.acps-block-text .acps-block-body ol { padding-left: 20px; }

/* ── Image block ───────────────────────────────────────── */
.acps-block-image .acps-img {
    border-radius: 8px;
    display: block;
}
.acps-img-caption {
    font-size: .85rem;
    color: #888;
    margin-top: 8px;
    text-align: center;
}

/* ── Video block ───────────────────────────────────────── */
.acps-block-video .ratio {
    border-radius: 8px;
    overflow: hidden;
}
.acps-video-caption {
    font-size: .85rem;
    color: #888;
    margin-top: 8px;
    text-align: center;
}

/* ── HTML block ────────────────────────────────────────── */
.acps-block-html { width: 100%; }

/* ── Button block ──────────────────────────────────────── */
.acps-block-button { padding: 8px 0; }

/* ── Icon Box ──────────────────────────────────────────── */
.acps-block-icon-box {
    padding: 24px 16px;
}
.acps-icon-box-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    line-height: 1;
}
.acps-icon-box-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.acps-icon-box-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.acps-icon-box-desc {
    font-size: .93rem;
    line-height: 1.65;
    color: inherit;
    opacity: .8;
    margin: 0;
}

/* ── Card ──────────────────────────────────────────────── */
.acps-block-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    transition: transform .25s, box-shadow .25s;
    height: 100%;
}
.acps-block-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.acps-card-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.acps-card-content {
    padding: 20px;
}
.acps-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1d2327;
}
.acps-card-desc {
    font-size: .9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}
.acps-card-btn {
    display: inline-block;
    font-size: .85rem;
    padding: 8px 18px;
}
