.design-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 632px;
    background: #f5f1ec;
}

.design-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.design-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: clamp(3.1rem, 4vw, 4.3rem) clamp(2rem, 3.2vw, 3.4rem);
    background: #f5f1ec;
    text-align: right;
    max-width: 540px;

    .design-ruler {
        margin-right: 0;
    }
}

.design-hero__copy h1 {
    margin: 0;
    text-align: right;
    width: 100%;
    font-family: "Cormorant", serif;
    font-weight: 500;
    font-size: 59px;
    line-height: 0.9;
    letter-spacing: 0;
}

.design-hero__copy p {
    margin: 1.55rem 0 0.55rem;
    color: #2e3036;
    font-size: 18px;
    letter-spacing: 0.035em;
}

@media (max-width: 900px) {
    .design-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .design-hero__media {
        height: 392px;
    }

    .design-hero__copy {
        padding: 3.95rem 1.9rem 4.35rem;
        align-items: center;

        .design-ruler {
            margin-inline: auto;
        }
    }

    .design-hero__copy h1 {
        max-width: 18rem;
        font-size: 32px;
        line-height: 0.96;
        text-align: center;
    }

    .design-hero__break--desktop {
        display: none;
    }

    .design-hero__copy p {
        margin-top: 1.75rem;
        font-size: 1.14rem;
        letter-spacing: 0.02em;
    }
}
