/* Tylko układ (flex, grid, gap, order) – style wizualne w _visuals.scss (uniwersalne klasy). */

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero__cta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero__trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin: 0;
    padding: 0;
}

.hero__media {
    order: -1;
    width: 100%;
}

.hero__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .hero__content {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }

    .hero__text {
        flex: 1;
        min-width: 0;
    }

    .hero__media {
        flex: 0 0 42%;
        order: 0;
    }
}