/**
 * Styly pro reklamní systém
 */

/* Základní kontejner pro reklamy v článcích */
.in-article-ad {
    margin: 1.5rem 0;
    padding: 1rem 0;
    position: relative;
}

/* Speciální styl pro upoutávky na články autora - bez linek */
.author-articles-ad {
    border: none;
    padding: 1rem 0;
}

.in-article-ad .ad-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Nadpis reklamy */
.in-article-ad .ad-title {
    color: #af431b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.in-article-ad .ad-title i {
    color: #af431b;
    margin-right: 0.5rem;
}

/* Upoutávka na články autora - styl jako na homepage */
.author-articles-ad .inspiration-card {
    transition: all 0.3s ease;
    border: 1px solid #e0d2c2;
    border-radius: 16px;
    overflow: hidden;
    background: white;
}

.author-articles-ad .inspiration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.author-articles-ad .inspiration-card:hover .inspiration-image {
    transform: scale(1.05);
}

.author-articles-ad .ad-article-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.author-articles-ad .ad-article-title a {
    color: #2e1f16;
    text-decoration: none;
    transition: color 0.2s ease;
}

.author-articles-ad .ad-article-title a:hover {
    color: #af431b;
}

.author-articles-ad .ad-article-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Newsletter box */
.newsletter-ad {
    background: linear-gradient(135deg, #f5efe6 0%, #e0d2c2 100%);
    border: none;
    border-radius: 12px;
    padding: 2rem;
}

.newsletter-ad .ad-container {
    max-width: 500px;
}

.newsletter-ad .newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-ad .input-group {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-ad .form-control {
    border-color: #e0d2c2;
}

.newsletter-ad .form-control:focus {
    border-color: #af431b;
    box-shadow: 0 0 0 0.2rem rgba(175, 67, 27, 0.25);
}

/* Banner reklama */
.banner-ad .ad-container {
    max-width: 728px;
}

.banner-ad img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsivní design */
@media (max-width: 768px) {
    .in-article-ad {
        margin: 1rem -15px;
        padding: 0.5rem 15px;
    }
    
    /* Skrytí indikátoru na mobilu */
    .in-article-ad::before {
        display: none;
    }
    
    /* Inspiration card na mobilu */
    .author-articles-ad .inspiration-card .row {
        flex-direction: column;
    }
    
    .author-articles-ad .inspiration-image-wrapper {
        height: 180px !important;
    }
    
    .author-articles-ad .card-body {
        min-height: auto !important;
        padding: 1rem !important;
    }
    
    .newsletter-ad {
        padding: 1.5rem;
    }
}

/* Indikátor pro upoutávky na články autora */
.author-articles-ad::before {
    display: none; /* Používáme overlay přímo na obrázku */
}

/* Indikátor pro ostatní reklamy */
.in-article-ad::before {
    content: "ELIUVA DOPORUČUJE";
    position: absolute;
    top: -15px;
    right: 0;
    background: #f5efe6;
    color: #999;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 0 0 0 4px;
    font-weight: 500;
}

/* Skrytí indikátoru pro newsletter */
.newsletter-ad::before {
    display: none;
}