.eda-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1920 / 800; /* desktop poměr */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;

}

.eda-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.eda-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eda-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.35)
    );
    z-index: 1;
}

.eda-hero__inner {
    position: relative;
    z-index: 2;
    
    width: 1280px;
  max-width:100%;
}

/* Typografie */
.eda-hero__title {
    font-size: 3rem;
    line-height: 1.1;
    margin: 0 0 20px;
    color:#fff!important;
}

.eda-hero__subtitle {
    font-size: 1.25rem;
    color:#fff!important;
    line-height: 1.5;
    margin: 0 0 30px;
    width: 640px;
    max-width: 100%;
}

.eda-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.eda-hero__btn {
    padding: 0.5407911001em 1em;
    text-decoration:none!important;
    font-weight: 600;
    text-transform:uppercase;
    border-radius:3px;
}

.eda-hero__btn--primary {

}

.eda-hero__btn--primary:hover {
    box-shadow: inset 0 0 0 120px rgba(0, 0, 0, 0.18)!important;
}

.eda-hero__btn--secondary {
background:transparent!important;
border: 1px solid #fff;
  
}

.eda-hero__btn--secondary:hover {
     box-shadow: inset 0 0 0 120px rgba(0, 0, 0, 0.18)!important;
     
}

/* Mobil < 768px */
@media (max-width: 1024px) {
    .eda-hero {
        aspect-ratio: 1080 / 1350; /* mobilní poměr */
        padding: 60px 16px;
    }

.eda-hero__title {
    font-size: 2em;
    line-height: 1.2;
    margin: 0 0 20px;
    color:#fff!important;
}

.eda-hero__subtitle{
font-size:1em;

}

}

