/* Top "ABOUT US" heading – match weight & spacing */
.about-page-heading {
    background: #f9fafb;
    padding: 20px 30px;
    text-align: left;
}

.about-page-heading h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    /* bold like WP */
    text-transform: uppercase;
    letter-spacing: .06em;
    /* subtle tracking like WP */
    color: rgb(51, 51, 51);
}

/* Hero spacing & overlay */
.about-hero {
    position: relative;
    padding: clamp(110px, 14vw, 200px) 16px;
    background-image: var(--about-bg);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--about-overlay, rgba(0, 0, 0, .45));
}

/* dotted texture like the live site */
.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 20px 20px, 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: .18;
}

/* Content sizing */
.about-hero__inner {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.about-hero__title {
    margin: 0 0 32px;
    font-weight: 700;
    font-size: 43px;
    line-height: 1.2;
}

.about-hero__body {
    margin: 0 auto;
    max-width: 820px;
    /* match WP width */
    text-align: center;
    color: #fff;
}

/* Paragraphs exactly like WP computed styles */
.about-hero__body,
.about-hero__body p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    /* 1.5 */
    color: #fff;
    text-align: center;
}

/* Spacing between paragraphs */
.about-hero__body p {
    margin: 0 0 20px;
}

.about-hero__body p:last-child {
    margin-bottom: 0;
}