/* =============================================================
   pxl-about-horner — Beth Horner & Associates About Section
   ============================================================= */

.bha-about-horner {
    padding: 80px 0 0;
    background: #fff;
}

/* ── Two-column inner ── */
.bha-about__inner {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 48px;
}

/* ── Image column ── */
.bha-about__image-col {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(18, 18, 42, 0.12);
}

.bha-about__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ── Content column ── */
.bha-about__content--no-image {
    grid-column: 1 / -1;
    max-width: 780px;
    margin: 0 auto;
}

/* ── Label ── */
.bha-about__label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #486ee2;
    margin-bottom: 18px;
}

.bha-about__label-line {
    display: block;
    flex: 1;
    max-width: 48px;
    height: 2px;
    background: #486ee2;
    border-radius: 1px;
}

/* ── Heading ── */
.bha-about__heading {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #0d0d1e;
    margin: 0 0 20px;
    letter-spacing: -0.3px;
}

.bha-about__accent {
    color: #486ee2;
}

/* ── Tagline ── */
.bha-about__tagline {
    font-size: 16px;
    font-weight: 700;
    color: #486ee2;
    line-height: 1.6;
    margin: 0 0 24px;
}

/* ── Body ── */
.bha-about__body p {
    font-size: 15px;
    line-height: 1.8;
    color: #3a3a55;
    margin: 0 0 16px;
}

.bha-about__body p:last-child {
    margin: 0;
}

/* ── CTA bar ── */
.bha-about__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 2px solid #e0e4f5;
    border-radius: 10px;
    padding: 20px 28px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.bha-about__cta-text {
    font-size: 15px;
    color: #3a3a55;
    margin: 0;
    line-height: 1.5;
}

.bha-about__cta-link {
    color: #486ee2;
    font-weight: 700;
    text-decoration: none;
    margin-left: 6px;
}

.bha-about__cta-link:hover {
    text-decoration: underline;
}

.bha-about__phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #486ee2;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.bha-about__phone-btn:hover {
    background: #2d4cc4;
    color: #fff;
}

/* ── Responsive: tablet ── */
@media (max-width: 900px) {
    .bha-about__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .bha-about__heading {
        font-size: 30px;
    }
}

/* ── Responsive: mobile ── */
@media (max-width: 600px) {
    .bha-about-horner {
        padding: 52px 0 0;
    }

    .bha-about__heading {
        font-size: 26px;
    }

    .bha-about__cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
    }

    .bha-about__phone-btn {
        width: 100%;
        justify-content: center;
    }
}
