.sekce-konkurz {
    padding: 4vh 5vw;
    display: flex;
    justify-content: center;
}

.konkurz-obsah {
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
}

.konkurz-obrazek {
    flex: 1;
    max-width: 400px;
}

.konkurz-obrazek img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.konkurz-texty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}

.konkurz-texty p {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    color: var(--kefir-cerna);
    margin: 0;
}

.konkurz-texty strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .konkurz-obsah {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .konkurz-obrazek {
        max-width: 80%;
        align-self: center;
    }
}

/* =========================================
   SEKCE VÝHERCE KONKURZU
   ========================================= */
.sekce-vyherce-konkurzu {
    padding: 4vh 5vw;
    display: flex;
    justify-content: center;
}

.vyherce-obsah {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.vyherce-nadpis {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--kefir-cerna);
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

.vyherce-karta-obal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px; /* Zabrání tomu, aby se karta roztáhla příliš do šířky */
}