/* Reklamní banner */
.reklama-banner {
    position: relative;
    width: 1200px;
    min-height: 800px;
    border: 1px solid #7A3E52;
    border-radius: 20px;
    overflow: visible;
    display: flex;
    align-items: center;
    padding: 30px 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.reklama-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.65);
}

.reklama-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.reklama-content h2 {
    margin: 0 0 10px;
    color: #7A3E52;
    font-size: 32px;
    line-height: 1.2;
}

.reklama-content p {
    margin: 0 0 20px;
    font-size: 18px;
    color: #333;
}

.reklama-button {
    display: inline-block;
    background: #7A3E52;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 24px;
    border: 1px solid #7A3E52;
    border-radius: 30px;
    transition: .3s ease;
}

.reklama-button:hover {
    background: #5E2F3F;
    border-color: #5E2F3F;
}

/* Mobil */
@media (max-width: 768px) {
    .reklama-banner {
        min-height: 140px;
        padding: 20px;
    }

    .reklama-content h2 {
        font-size: 24px;
    }

    .reklama-content p {
        font-size: 16px;
    }
}