/* =====================
   YANGILIKLAR GRID SECTION
   ===================== */
.news-grid-section {
    padding: 50px 0 60px;
    background: #f8f9fb;
}

/* ---------- Featured large card ---------- */
.news-featured-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 460px;
    margin-bottom: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.news-featured-card .feat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}
.news-featured-card:hover .feat-img { transform: scale(1.04); }
.news-featured-card .feat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,40,.82) 0%, rgba(10,20,40,.25) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 30px;
}
.feat-overlay .cat-badge {
    display: inline-block;
    background: #1a3a5c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 10px;
    width: fit-content;
}
.feat-overlay .feat-date {
    color: rgba(255,255,255,.75);
    font-size: 12px;
    margin-bottom: 8px;
}
.feat-overlay h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
}
.feat-overlay h2 a { color: inherit; text-decoration: underline; }
.feat-overlay h2 a:hover { opacity: .85; }
.feat-overlay p {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    margin-bottom: 14px;
}
.feat-overlay .batafsil-link {
    color: #60b3f0;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.feat-overlay .batafsil-link:hover { text-decoration: underline; }

/* ---------- Small bottom cards ---------- */
.news-small-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 230px;
    box-shadow: 0 3px 14px rgba(0,0,0,.10);
}
.news-small-card .small-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.news-small-card:hover .small-img { transform: scale(1.05); }
.news-small-card .small-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,40,.80) 0%, rgba(10,20,40,.15) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
}
.small-overlay .cat-badge {
    display: inline-block;
    background: #1a3a5c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 30px;
    margin-bottom: 6px;
    width: fit-content;
}
.small-overlay .small-date {
    color: rgba(255,255,255,.72);
    font-size: 11px;
    margin-bottom: 5px;
}
.small-overlay h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}
.small-overlay h3 a { color: inherit; text-decoration: underline; }
.small-overlay .batafsil-link {
    color: #60b3f0;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}
.small-overlay .batafsil-link:hover { text-decoration: underline; }

/* =====================
   SIDEBAR - faqat yangiliklar
   ===================== */
.news-sidebar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 16px rgba(0,0,0,.08);
    overflow: hidden;
}
.news-sidebar-header {
    background: #1a3a5c;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 14px 18px;
}
.sidebar-news-item {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f3f6;
    align-items: flex-start;
    transition: background .18s;
}
.sidebar-news-item:last-child { border-bottom: none; }
.sidebar-news-item:hover { background: #f5f8fb; }
.sidebar-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}
.sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}
.sidebar-news-item:hover .sidebar-thumb img { transform: scale(1.08); }
.sidebar-news-body { flex: 1; min-width: 0; }
.sidebar-news-badge {
    display: inline-block;
    background: #1a3a5c;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.sidebar-news-body h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1a2b3c;
    line-height: 1.35;
    margin: 0 0 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sidebar-news-body h4 a { color: inherit; text-decoration: none; }
.sidebar-news-body h4 a:hover { color: #1a3a5c; text-decoration: underline; }
.sidebar-batafsil {
    color: #1a7dc4;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}
.sidebar-batafsil:hover { text-decoration: underline; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 991px) {
    .news-featured-card { height: 340px; }
    .news-small-card    { height: 200px; }
    .news-sidebar       { margin-top: 24px; }
}
@media (max-width: 767px) {
    .news-featured-card { height: 270px; }
    .news-grid-section  { padding: 30px 0; }
    .feat-overlay h2    { font-size: 18px; }
}