:root {
    --four-ink: #2b2b2b;
    --four-muted: #5f5f5f;
    --four-border: #eaeaea;
}

.four-things {
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.four-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 26px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: start;
}

.four-title {
    margin: 0 0 24px 0;
    font-size: 30px;
    font-weight: 650;
    line-height: 1.05;
    color: var(--four-ink);
}

.four-copy p {
    font-size: 16px;
    /* was 20px */
    line-height: 1.65;
}

.four-copy strong {
    color: var(--four-ink);
    font-weight: 800;
}

.four-image {
    border-left: 4px solid #0000;
    overflow: hidden;
}

.four-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    background: #ddd;
}


@media (max-width: 980px) {
    .four-wrap {
        grid-template-columns: 1fr;
    }

    .four-image img {
        height: 380px;
    }

    .four-title {
        font-size: 40px;
    }
}

.float-image {
    float: right;
    /* THIS is what makes it wrap */
    width: 420px;
    max-width: 50%;
    height: auto;
    margin: 0 0 20px 40px;
    /* space between image + text */
    display: block;
    border-radius: 6px;
}

/* ✅ Prevent following sections from sliding up beside the float */
.four-copy::after {
    content: "";
    display: block;
    clear: both;
}