.vasarlok-hero-img-wrap {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.mt-10 {
    margin-top: 10px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-5 {
    margin-top: 5px;
}

.vasarlok-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* kitölti a teljes területet, vágással */
    display: block;
}

.section-1 {
    width: 100%;
    background-color: rgb(9, 64, 71);
    background-image: url("/img/aboutus/tropical_cut.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: right top;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
    color: white;
}
.section-col-top {
    padding: 40px 10px;
    margin-top: 70px;
}
.section-1-numbers {
    margin-top: 20px;
    z-index: 1000;
}

/* 3 kártya egymás mellett, egységes magassággal */
.numbers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 20px 10px;
    color: #fff;
}

/* maga a kártya */
.num-section {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 22px 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* vertikálisan is középre */
    text-align: center;

    min-height: 190px; /* egységes “kártya” magasság */
}

/* #1 #2 #3 formázás (a kártyán belüli első span) */
.num-section > span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 10px;
}

/* szöveg (a kártyán belüli második span) */
.num-section > span:last-child {
    line-height: 1.45;
    max-width: 30ch; /* opcionális: szebb tördelés */
}
.sec-1-subtitle {
    font-size: 18px;
    line-height: 1.5;
    max-width: 60ch; /* opcionális: szebb tördelés */
    text-align: center;
}
.num-section span,
.sec-1-subtitle {
    font-size: 28px;
}
/* reszponzív */
@media (max-width: 900px) {
    .numbers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .numbers {
        grid-template-columns: 1fr;
    }
}
