.about-page {
    background: var(--bg-dark);
}

/* HERO */

.about-hero {
    position: relative;
    height: 40vh;
    min-height: 220px;
    max-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* IMAGE HERO */

.about-hero-image {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: translate(-50%, -50%);
    z-index: 1;
}

/* OVERLAY */

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 17, 21, 0.5),
            rgba(15, 17, 21, 0.85));
    z-index: 2;
}

/* CONTENT */

.about-hero-content {
    position: relative;
    z-index: 3;
}

/* IMAGE */

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/wp-content/uploads/2026/03/about-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
}

/* OVERLAY */

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 17, 21, 0.5),
            rgba(15, 17, 21, 0.85));
    z-index: 2;
}

/* CONTENT */

.about-hero-content {
    position: relative;
    z-index: 3;
}

/* CONTENT */

.about-content {
    padding: 100px 0;
}

.about-container {
    max-width: 800px;
}

.about-container p {
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 25px;
}