/* Modul: Články a Aktuality - Styly */

.clanky-section {
    padding: 40px 0;
    background-color: #fff;
}

.clanky-section .container {
    max-width: 1200px;
}

/* Položka článku/aktuality */
.clanek-item {
    display: flex;
    background-color: #fff;
    overflow: hidden;
    aspect-ratio: 2 / 1;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.clanek-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.clanek-obrazek {
    width: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.clanek-obsah {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #2C2A3F0D;
}

.clanek-nazev {
    font-style: normal;
    font-weight: bold;
    font-size: 5cqw;
    line-height: 1.2;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 0px;
    color: #2C2A3F;
    margin: 0 0 10px 0;
}

.clanek-popis {
    font-size: 2.8cqw;
    line-height: 1.4;
    font-family: 'Barlow', sans-serif;
    color: #666;
    margin: 0;
    flex: 1;
}

.clanek-link {
    font-size: 2.8cqw;
    font-weight: bold;
    font-family: 'Barlow', sans-serif;
    color: #EC6839;
    text-decoration: none;
    margin-top: 10px;
    align-self: flex-start;
}

.clanek-link:hover {
    text-decoration: underline;
}

/* Container query pro responzivní fonty */
.clanky-section .col-12,
.clanky-section .col-md-6 {
    container-type: inline-size;
}

/* Swiper pagination */
.clanky-dots {
    margin-top: 30px !important;
    position: relative !important;
    bottom: auto !important;
}

.clanky-dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    opacity: 1;
    margin: 0 5px;
}

.clanky-dots .swiper-pagination-bullet-active {
    background-color: #EC6839;
}

/* Mobil */
@media (max-width: 767px) {
    .clanek-item {
        flex-direction: column;
        aspect-ratio: 1 / 1.5;
    }
    
    .clanek-obrazek {
        width: 100%;
        height: 50%;
    }
    
    .clanek-obsah {
        width: 100%;
        height: 50%;
    }
    
    .clanek-nazev {
        font-size: 7cqw;
    }
    
    .clanek-popis {
        font-size: 4cqw;
    }
    
    .clanek-link {
        font-size: 4cqw;
    }
}
