.clanek-main {
    background-color: #f0f2f5;
    padding: 120px 0 80px 0;
    min-height: 100vh;
}

.clanek-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
}

.clanek-breadcrumb a {
    color: #379967;
    text-decoration: none;
}

.clanek-breadcrumb a:hover {
    text-decoration: underline;
}

.clanek-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* ČLÁNEK */
.clanek-content {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.clanek-header {
    padding: 40px 40px 0 40px;
}

.clanek-badge {
    display: inline-block;
    background: #379967;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.clanek-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #0b2429;
    line-height: 1.2;
    margin-bottom: 16px;
}

.clanek-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f2f5;
}

.clanek-foto-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 600px;
}

.clanek-foto {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
}

.clanek-perex {
    padding: 30px 40px 0 40px;
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    font-weight: 500;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 25px;
    margin-bottom: 5px;
}

.clanek-body {
    padding: 25px 40px 40px 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.clanek-back {
    padding: 0 40px 40px 40px;
}

/* SIDEBAR */
.clanek-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0b2429;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.sidebar-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    gap: 15px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    align-items: center;
}

.sidebar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.sidebar-card-foto {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-card-placeholder {
    background: #e3e8ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.sidebar-card-info {
    flex: 1;
}

.sidebar-card-badge {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #379967;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.sidebar-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0b2429;
    line-height: 1.3;
    margin-bottom: 4px;
}

.sidebar-card-date {
    font-size: 12px;
    color: #888;
}

/* NOVINKY STRÁNKA */
.novinky-hero {
    background: #fff;
    padding: 120px 0 40px 0;
    border-bottom: 1px solid #f0f2f5;
}

.novinky-featured {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    margin-bottom: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.novinky-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.novinky-featured-img {
    height: 380px;
    overflow: hidden;
}

.novinky-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.novinky-featured:hover .novinky-featured-img img {
    transform: scale(1.03);
}

.novinky-featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.novinky-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.clanek-galerie {
    padding: 30px 40px;
    border-top: 1px solid #f0f2f5;
}

.clanek-galerie-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: #0b2429;
    margin-bottom: 16px;
}

.clanek-galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.clanek-galerie-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s, opacity 0.2s;
}

.clanek-galerie-item img:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

@media (max-width: 850px) {
    .clanek-galerie { padding: 20px; }
    .clanek-galerie-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
    .novinky-featured {
        grid-template-columns: 1fr;
    }
    .novinky-featured-img {
        height: 250px;
    }
    .novinky-featured-content {
        padding: 25px;
    }
    .novinky-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 850px) {
    .clanek-main {
        padding: 100px 0 60px 0;
    }

    .clanek-layout {
        grid-template-columns: 1fr;
    }

    .clanek-title {
        font-size: 28px;
    }

    .clanek-header,
    .clanek-perex,
    .clanek-body,
    .clanek-back {
        padding-left: 20px;
        padding-right: 20px;
    }

    .clanek-foto-wrapper {
        height: 400px;
    }
}