.about {
    background: var(--color-section-bg);
    padding-block: var(--space-section-y);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about__video {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 579 / 360;
}

.about__video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-overlay);
}

/* This is a bare <button>, so the kit's (0,1,1) button rule would otherwise give it
   a 1px border and 25px/120px padding. */
.about .about__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 70px;
    height: 74px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
}

/* The kit's `button:hover/:focus` is (0,2,1) and beats the resting rule above,
   so without this the play button paints a red box with a border on hover. */
.about .about__play:hover,
.about .about__play:focus {
    background: none;
    border: none;
}

.about__video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Scoped one level deeper than the class alone: Elementor's Global Kit styles
   bare h1-h6 and p at (0,1,1), which beats a single class and an inherited color. */
.about .about__eyebrow {
    color: var(--color-brand-red);
    font-weight: var(--font-weight-bold);
    font-size: var(--text-h2);
    margin-block-end: 1rem;
}

/* The kit sets text-transform:uppercase and letter-spacing:1px on bare h3 at
   (0,1,1) — without answering those two, this heading renders in ALL CAPS. */
.about .about__heading {
    color: var(--color-ink);
    font-size: var(--text-h3);
    font-weight: var(--font-weight-bold);
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.2;
    margin-block-end: 1rem;
}

.about__text p {
    margin-block-end: 1rem;
}

@media (max-width: 811px) {
    .about__grid {
        grid-template-columns: 1fr;
    }
}
