.news-page-decor{
    position: relative;
    min-height: 100vh;
}

/* LEVÁ STRANA */
.news-page-decor::before{
    content:"";
    position:absolute;
    left:0;
    top:50px;
    width:220px;
    height:100%;
    background:url("/themes/pohadka/images/decor-left.png") repeat-y left top;
    background-size:contain;
    pointer-events:none;
    z-index:0;
    opacity:.7; 
}

/* PRAVÁ STRANA */
.news-page-decor::after{
    content:"";
    position:absolute;
    right:0;
    top:50px;
    width:220px;
    height:100%;
    background:url("/themes/pohadka/images/decor-right.png") repeat-y right top;
    background-size:contain;
    pointer-events:none;
    z-index:0;
    opacity:.7;
}

/* 🔥 zesvětlení */
.news-overlay{
    position:absolute;
    inset:0;
    background: rgba(255,245,235,.6);
    z-index:1;
}

/* obsah nad tím */
.news-list-container{
    position:relative;
    z-index:2;
}

.news-detail-container{
    position:relative;
    z-index:2;
}

.news-item,
.featured-news{
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: all .25s ease;
}

/* hover */
.news-item:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,.1);
}

.news-card-title{
    font-size: 22px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 10px;
}

.news-link{
    text-decoration:none;
    color:inherit;
}

/* datum */
.news-meta{
    font-size:14px;
    color:#9a98a5;
}

/* text */
.news-excerpt{
    color:#6c6c7a;
    line-height:1.6;
    margin-bottom:20px;
}

.news-read-more{
    display:inline-block;
    background:#f6c64b;
    color:white !important;
    padding:10px 22px;
    border-radius:40px;
    font-weight:600;
    text-decoration:none;
    transition:.2s;
}

.news-read-more:hover{
    background:#f0b931;
    color: white !important;
}

.featured-news{
    padding:10px;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,.95),
        rgba(255,245,235,.9)
    );

    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

/* badge */
.featured-badge{
    display:inline-block;
    background:#f48da3;
    color:white;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

/* title větší */
.featured-title{
    font-size:28px;
    font-weight:800;
    color:var(--color-title);
}

.featured-link{
    text-decoration:none;
    color:inherit;
}

.featured-link:hover{
    color:#ff9a6b;
}

/* excerpt */
.featured-excerpt{
    font-size:16px;
    color:#6c6c7a;
    line-height:1.7;
}

/* CTA */

.news-item{
    padding:10px;
}

.news-item::after{
    content:"";
    position:absolute;
    right:15px;
    bottom:15px;
    width:40px;
    height:40px;
    background:url("/themes/pohadka/images/stars.svg") no-repeat center;
    background-size:contain;
    opacity:.15;
}

.btn-news-pink {
    align-self: flex-start;
    background: #f48da3;
    color: white !important;
    border-radius: 40px;
    padding: 12px 26px;
    font-weight: 700;
    text-decoration: none;
    transition: .2s;
}

.btn-news-pink:hover {
    background: #ef6986;
    color:white !important;
}