/* Hero block, mobile first. */
.sg-hero {
    padding: 32px 0 48px;
}

.sg-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sg-hero__copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sg-hero__title {
    margin: 0;
    font-size: clamp(1.85rem, 2vw + 1.4rem, 2.85rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--sg-text);
}

.sg-hero__lead {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.65;
    color: var(--sg-muted);
    max-width: 38rem;
}

.sg-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.sg-hero__note {
    margin: 0;
    font-size: 1rem;
    color: var(--sg-muted);
}

.sg-hero__visual {
    display: flex;
    gap: 14px;
}

.sg-hero__swatch {
    flex: 1;
    max-width: 160px;
    min-height: 120px;
    border-radius: var(--sg-radius-lg);
    box-shadow: var(--sg-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.sg-hero__swatch--green {
    background-color: var(--sg-green);
}

.sg-hero__swatch--red {
    background-color: var(--sg-red);
}

.sg-hero__swatch-text {
    margin: 0;
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
}

@media (min-width: 48rem) {
    .sg-hero {
        padding: 48px 0 64px;
    }

    .sg-hero__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .sg-hero__copy {
        flex: 1;
        min-width: 0;
    }

    .sg-hero__visual {
        flex: 0 0 280px;
        margin-top: 0;
    }

    .sg-hero__swatch {
        min-height: 140px;
    }

    .sg-hero__swatch-text {
        font-size: 1.05rem;
    }
}

@media (min-width: 64rem) {
    .sg-hero__visual {
        flex-basis: 300px;
    }
}
