﻿/* ======================================================
   RESET / BASE
   ====================================================== */
html {
    overflow-y: scroll;
}
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f4f6f8;
    color: #222;
}

a {
    color: #005bbb;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* ======================================================
   CONTAINER
   ====================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ======================================================
   HEADER
   ====================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgb(244, 246, 248);
    border-bottom: 1px solid #e2e6ea;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
}

.header-brand {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #111827;
    max-width: 420px; /* ограничиваем ширину */
    line-height: 1.3; /* комфортные две строки */
    white-space: normal; /* разрешаем перенос */
}


.brand-subtitle {
    font-size: 12px;
    color: #4b5563;
}

.header-nav {
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: 30px; 
}

.header-contact {
    padding-left: 16px;
}

.nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    padding: 4px 0;
    transition: color 0.25s ease;
}

    .nav-link:hover {
        color: #2563eb;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background-color: #2563eb;
        transition: width 0.25s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

/* ======================================================
   HERO
   ====================================================== */
.hero {
    background: linear-gradient(90deg, #005bbb, #2d9cdb);
    color: #ffffff;
    padding: 30px 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    align-items: center;
    gap: 20px;
}

.hero-center {
    text-align: center;
}

    .hero-center h1 {
        margin: 0;
        font-size: 32px;
    }

    .hero-center p {
        margin-top: 10px;
        font-size: 16px;
        opacity: 0.95;
    }

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-logo img {
        max-width: 100px;
        max-height: 100px;
        object-fit: contain;
        filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
    }

/* ======================================================
   LAYOUT
   ====================================================== */
.layout-full {
    display: grid;
    grid-template-columns: 340px 1fr 340px; /* боковые шире */
    gap: 18px; /* расстояние меньше */
    padding: 50px 0; /* чуть компактнее */
}

    .layout-full aside {
        padding: 0 10px;
    }

.center-column {
    min-width: 0;
}

/* ======================================================
   LEFT COLUMN
   ====================================================== */
.side-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.side-link {
    background: #ffffff;
    padding: 14px 16px;
    border-left: 5px solid #005bbb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    .side-link strong {
        display: block;
        font-size: 14px;
        color: #005bbb;
    }

    .side-link span {
        font-size: 13px;
        color: #555;
    }

/* ======================================================
   CARD / STATS
   ====================================================== */
.card {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat {
    background: #ffffff;
    padding: 26px 20px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-align: center;
}

.stat-number {
    font-size: 34px;
    font-weight: bold;
    color: #005bbb;
}

.stat-label {
    font-size: 14px;
    color: #555;
}

/* ======================================================
   NEWS
   ====================================================== */
.news-card {
    display: block;
    background: #ffffff;
    padding: 14px;
    border-radius: 6px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card,
.side-link,
.news-card,
.stat,
.hero-logo img {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .card:hover {
        transform: translateY(-6px);
    }

    .side-link:hover {
        transform: translateY(-4px);
    }

    .news-card:hover {
        transform: translateY(-3px);
    }

    .stat:hover {
        transform: translateY(-6px) scale(1.03);
    }

    .hero-logo img:hover {
        transform: scale(1.08);
    }

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    margin-top: 60px;
    padding: 20px 0;
    font-size: 13px;
    color: #555;
}

/* ======================================================
   ADAPTIVE
   ====================================================== */
@media (max-width: 992px) {
    .layout-full {
        grid-template-columns: 1fr;
    }

        .layout-full aside {
            order: 2;
        }

    .center-column {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-logo-right {
        display: none;
    }

    .header-inner {
        flex-direction: column;
        height: auto;
        padding: 12px 0;
        gap: 10px;
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* ======================================================
   USEFUL LINKS WITH LOGOS
   ====================================================== */
.useful-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    margin-top: 12px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    color: #1f2937;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .useful-link img {
        width: 48px;
        height: auto;
        flex-shrink: 0;
    }

    .useful-link span {
        font-size: 14px;
        line-height: 1.4;
    }

    .useful-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.14);
    }
/* ======================================================
   TAKZDOROVO GIF FIX
   ====================================================== */

.healthy-block {
    padding: 0;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden; /* ВАЖНО: обрезает чёрный контур */
}

.healthy-link {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

    .healthy-link img {
        display: block;
        width: 223px;
        max-width: 100%;
        background-color: #ffffff; /* маскируем чёрный фон */
        border: none;
        outline: none;
    }

/* ===== TAKZDOROVO WITHOUT BACKGROUND ===== */
.healthy-transparent {
    display: flex;
    justify-content: center;
}

    .healthy-transparent img {
        display: block;
        width: 223px;
        max-width: 100%;
        background: transparent;
    }

section.container h1 {
    margin-bottom: 30px;
    color: #1f2937;
}

section.container ul {
    padding-left: 20px;
}

section.container li {
    margin-bottom: 8px;
}
/* ======================================================
   ABOUT PAGE — HERO COLOR STYLE
   ====================================================== */

.about-page .card {
    background: linear-gradient( 135deg, #005bbb, #2d9cdb );
    color: #ffffff;
    border-radius: 8px;
}

/* Заголовки */
.about-page h1,
.about-page h3 {
    color: #ffffff;
}

/* Текст */
.about-page p,
.about-page li {
    color: rgba(255,255,255,0.95);
}

/* Списки */
.about-page ul {
    padding-left: 20px;
}

/* Лёгкое визуальное отличие карточек друг от друга */
.about-page .card:not(:last-child) {
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
/* ======================================================
   MANAGEMENT PAGE
   ====================================================== */

.management-page h1 {
    margin-bottom: 20px;
    color: #1f2937;
}

.management-intro {
    font-size: 16px;
    color: #374151;
    margin-bottom: 40px;
    max-width: 900px;
    line-height: 1.6;
}

/* Карточки руководства */
.manager-card {
    background: linear-gradient( 135deg, #005bbb, #2d9cdb );
    color: #ffffff;
    border-radius: 10px;
    padding: 26px;
    margin-bottom: 24px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

    /* Заголовок должности */
    .manager-card h3 {
        margin-top: 0;
        margin-bottom: 12px;
        font-size: 16px;
        font-weight: 500;
        opacity: 0.95;
    }

/* ФИО */
.manager-name {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
/* ======================================================
   HEADER CONTACT
   ====================================================== */

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 13px;
    line-height: 1.3;
}

.contact-phone {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

.contact-time {
    font-size: 12px;
    color: #6b7280;
}

@media (max-width: 992px) {
    .header-contact {
        align-items: center;
        font-size: 12px;
        margin-top: 6px;
    }

    .contact-phone {
        font-size: 14px;
    }

    .contact-time {
        display: none; /* на мобилках оставляем только номер */
    }
}
/* ======================================================
   CENTER COLUMN — HERO GRADIENT
   ====================================================== */

.center-column .card {
    background: linear-gradient( 135deg, #005bbb, #2d9cdb );
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

    /* Заголовки */
    .center-column .card h2,
    .center-column .card h3 {
        color: #ffffff;
    }

    /* Текст */
    .center-column .card p,
    .center-column .card li {
        color: rgba(255,255,255,0.95);
    }

    /* Списки */
    .center-column .card ul {
        padding-left: 20px;
    }

/* Чуть больше воздуха между блоками */
.center-column .card {
    margin-bottom: 30px;
}


/* ======================================================
   CONTACTS PAGE
   ====================================================== */

.contacts-page .card {
    background: linear-gradient( 135deg, #005bbb, #2d9cdb );
    color: #ffffff;
    border-radius: 8px;
}

.contacts-page h1,
.contacts-page h3 {
    color: #ffffff;
}

.contacts-page p {
    color: rgba(255,255,255,0.95);
}
/* ======================================================
   FEEDBACK FORM
   ====================================================== */

.form-group {
    margin-bottom: 14px;
}

.form-control {
    width: 100%;
    padding: 8px 10px;
    border-radius: 4px;
    border: none;
}

.form-group span {
    font-size: 12px;
    color: #fee2e2;
}

.btn-submit {
    background: #ffffff;
    color: #005bbb;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

    .btn-submit:hover {
        background: #e0f2fe;
    }

/* ======================================================
   FEEDBACK FORM — ANIMATED
   ====================================================== */

.feedback-form {
    width: 100%;
}

/* FLOATING LABEL GROUP */
.floating-group {
    position: relative;
    margin-bottom: 22px;
    width: 100%;
}

    .floating-group input,
    .floating-group textarea {
        width: 100%;
        padding: 12px 10px;
        background: rgba(255,255,255,0.95);
        border: none;
        border-radius: 6px;
        outline: none;
        font-size: 14px;
    }

    .floating-group label {
        position: absolute;
        top: 50%;
        left: 12px;
        transform: translateY(-50%);
        color: #6b7280;
        font-size: 14px;
        pointer-events: none;
        transition: all 0.25s ease;
    }

    /* WHEN ACTIVE */
    .floating-group input:focus + label,
    .floating-group input:not(:placeholder-shown) + label,
    .floating-group textarea:focus + label,
    .floating-group textarea:not(:placeholder-shown) + label {
        top: -8px;
        left: 8px;
        font-size: 12px;
        color: #e0f2fe;
        background: transparent;
    }

    /* ERROR TEXT */
    .floating-group span {
        font-size: 12px;
        color: #fee2e2;
    }

/* BUTTON ANIMATION */
.btn-submit-animated {
    margin-top: 10px;
    background: #ffffff;
    color: #005bbb;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-submit-animated:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.25);
        background: #e0f2fe;
    }

/* SUCCESS / ERROR */
.form-success {
    color: #d1fae5;
    margin-bottom: 12px;
}

.form-error {
    color: #fee2e2;
    margin-bottom: 12px;
}
/* ======================================================
   DISABLE CARD HOVER FOR FEEDBACK FORM
   ====================================================== */

.card.no-hover {
    transform: none !important;
}

    .card.no-hover:hover {
        transform: none !important;
        box-shadow: inherit !important;
        cursor: default;
    }
/* ======================================================
   FOOTER CENTERED
   ====================================================== */

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* ссылка */
.site-footer a {
    color: #005bbb;
    font-weight: 600;
    text-decoration: none;
}

    .site-footer a:hover {
        text-decoration: underline;
    }

.news-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(30%) contrast(1.05);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.news-card:hover .news-img {
    transform: scale(1.04);
    filter: grayscale(0%) contrast(1.1);
}
/* ===== PHARMACIES PAGE ===== */

.pharmacy-controls {
    display: grid;
    grid-template-columns: 1fr 280px auto;
    gap: 14px;
    margin-bottom: 20px;
}

    .pharmacy-controls input,
    .pharmacy-controls select {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        border-radius: 6px;
        border: 1px solid #d1d5db;
    }

.download-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    background: #005bbb;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}

    .btn:hover {
        background: #004a99;
    }

.pharmacy-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.pharmacy-item {
    background: #f9fafb;
    padding: 14px 16px;
    border-left: 4px solid #005bbb;
    border-radius: 6px;
    transition: opacity 0.35s ease, transform 0.35s ease;
    animation: fadeUp 0.35s ease forwards;
}

    .pharmacy-item:hover {
        background: #eef4ff;
      
    }

    .pharmacy-item strong {
        display: block;
        font-size: 14px;
        color: #1f2937;
        margin-bottom: 4px;
    }

    .pharmacy-item span {
        font-size: 13px;
        color: #374151;
    }

    .pharmacy-item em {
        display: block;
        font-size: 12px;
        color: #6b7280;
        margin-top: 4px;
        font-style: normal;
    }

.pharmacy-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #6b7280;
    padding: 20px;
}

.pharmacy-map {
    height: 420px;
    border-radius: 6px;
    overflow: hidden;
}


/* MOBILE */
@media (max-width: 768px) {
    .pharmacy-controls {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        justify-content: center;
    }
}
/* ===== СПИСОК АПТЕК ===== */
.pharmacy-list {
    max-height: 600px; /* высота блока (можно 500–700) */
    overflow-y: auto; /* вертикальный скролл */
    padding-right: 10px; /* чтобы скролл не наезжал */
}

    /* аккуратный скролл (необязательно, но красиво) */
    .pharmacy-list::-webkit-scrollbar {
        width: 8px;
    }

    .pharmacy-list::-webkit-scrollbar-track {
        background: #f1f3f5;
        border-radius: 4px;
    }

    .pharmacy-list::-webkit-scrollbar-thumb {
        background: #c1c7cd;
        border-radius: 4px;
    }

        .pharmacy-list::-webkit-scrollbar-thumb:hover {
            background: #9aa1a9;
        }
/* ===== КОНТЕЙНЕР СПИСКА АПТЕК (ФОН КАК HERO) ===== */
.pharmacy-list {
    background: linear-gradient( 135deg, #005bbb 0%, #2d9cdb 100% );
    padding: 20px;
    border-radius: 12px;
    max-height: 600px;
    overflow-y: auto;
}




    .pharmacy-item:last-child {
        margin-bottom: 0;
    }
/* ===== ОПИСАНИЕ РАЗДЕЛА АПТЕК (КАК HERO) ===== */
.pharmacy-intro {
    background: linear-gradient( 135deg, #005bbb 0%, #2d9cdb 100% );
    color: #ffffff;
    padding: 18px 22px;
    margin-bottom: 16px;
    border-radius: 12px;
}

    .pharmacy-intro p {
        margin: 0;
        font-size: 18px;
        line-height: 1.6;
        opacity: 0.95;
    }
/* ===== КНОПКА ЛОКАЦИИ ===== */
.loc-btn {
    margin-top: 10px;
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: #2563eb;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

    .loc-btn:hover {
        color: #1d4ed8;
        text-decoration: underline;
    }
/* ===== ПОДСВЕТКА КАРТЫ ПРИ ПЕРЕХОДЕ ===== */
#map {
    transition: box-shadow 0.4s ease;
}

    #map.map-highlight {
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.35);
    }


/* ===== SHIMMER ===== */
.shimmer {
    height: 64px;
    border-radius: 8px;
    margin-bottom: 12px;
    background: linear-gradient( 90deg, #e5e7eb 25%, #f3f4f6 37%, #e5e7eb 63% );
    background-size: 400% 100%;
    animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}
/* ===== АКТИВНАЯ КАРТОЧКА ===== */
.pharmacy-item.active {
    outline: 2px solid #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.25);
}

/* ===== КНОПКА ЛОКАЦИИ (КРУПНЕЕ) ===== */

@media (max-width: 768px) {
    #map {
        height: 100vh;
        border-radius: 0;
    }
}

.search-sticky {
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(135deg, #005bbb, #2d9cdb);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

    .search-sticky input {
        width: 100%;
        padding: 10px 14px;
        border-radius: 8px;
        border: none;
    }
/* ===== HERO-STYLE SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #005bbb 0%, #2d9cdb 100%);
    padding: 28px;
    border-radius: 14px;
    margin-bottom: 24px;
    color: #ffffff;
}

    /* ===== ВНУТРЕННЯЯ КАРТОЧКА ===== */
    .hero-section .hero-card {
        background: rgba(255, 255, 255, 0.95);
        color: #0f172a;
        padding: 22px;
        border-radius: 10px;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    }

    /* ===== ЗАГОЛОВКИ ===== */
    .hero-section h1,
    .hero-section h3 {
        margin-top: 0;
        color: #0f172a;
    }

    /* ===== ТЕКСТ ===== */
    .hero-section p,
    .hero-section li {
        font-size: 14px;
        line-height: 1.6;
        color: #334155;
    }

    /* ===== СПИСКИ ===== */
    .hero-section ul,
    .hero-section ol {
        padding-left: 18px;
    }

/* ===== АНИМАЦИЯ ПОЯВЛЕНИЯ ===== */
.hero-section {
    opacity: 0;
    transform: translateY(12px);
    animation: heroFadeUp 0.5s ease forwards;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================================
   SCROLL / HOVER ANIMATIONS
   ====================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

    /* небольшие задержки */
    .reveal.delay-1 {
        transition-delay: 0.1s;
    }

    .reveal.delay-2 {
        transition-delay: 0.2s;
    }

    .reveal.delay-3 {
        transition-delay: 0.3s;
    }
    .reveal.delay-4 {
        transition-delay: 0.4s;
    }
    .reveal.delay-5 {
        transition-delay: 0.5s;
    }
    .reveal.delay-6 {
        transition-delay: 0.6s;
    }
/* Скрываем правый нижний угол карты ТОЛЬКО на странице аптек */
.leaflet-bottom.leaflet-right {
    display: none !important;
}


.pharmacy-card {
    background: #f9fafb;
    padding: 14px 16px;
    border-left: 4px solid #005bbb;
    border-radius: 6px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .pharmacy-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    }



.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

    .reveal.show {
        opacity: 1;
        transform: translateY(0);
    }
    .stat:hover {
        transform: translateY(-4px);
    }
    .side-link:hover {
        transform: translateY(-4px);
    }
    .card:hover {
        transform: translateY(-4px);
    }

.healthy-transparent:hover {
    transform: translateY(-4px);
}


.pharmacy-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    will-change: transform, opacity;
}

    .pharmacy-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .pharmacy-item.hidden {
        opacity: 0;
        transform: translateY(16px);
        pointer-events: none;
    }

    .pharmacy-item:hover {
        transform: translateY(-4px);
    }


.a11y-only-left {
    position: absolute;
    left: 12px;
    top: 12px;
    height: 48px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 6px;
    cursor:pointer;
}



    .a11y-btn:hover {
        background: #e5e7eb;
    }

body.a11y {
    background: #ffffff !important;
    color: #000000 !important;
}

body.a11y {
    background: #ffffff !important;
    color: #000000 !important;
}

    body.a11y *,
    body.a11y a {
        color: #000000 !important;
        background: #ffffff !important;
        box-shadow: none !important;
    }

    body.a11y img,
    body.a11y video,
    body.a11y svg {
        display: none !important;
    }
@media (max-width: 768px) {
    .a11y-only-left {
        height: 30px;
        padding: 0 10px;
        margin-top: 20px;
    }

    .a11y-text {
        display: none; /* скрываем текст */
    }

    .a11y-icon {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .header-nav {
        gap: 18px;
    }
}
.header-nav {
    display: flex;
    gap: 20px; /* было меньше — делаем больше */
}
/* ===== NEWS LOADER ===== */
.news-loader {
    background: #ffffff;
    padding: 14px;
    border-radius: 6px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.news-loader-img {
    height: 120px;
    border-radius: 4px;
    margin-bottom: 10px;
    background: linear-gradient( 90deg, #e5e7eb 25%, #f3f4f6 37%, #e5e7eb 63% );
    background-size: 400% 100%;
    animation: shimmer 1.2s infinite;
}

.news-loader-line {
    height: 12px;
    border-radius: 4px;
    margin-bottom: 8px;
    background: linear-gradient( 90deg, #e5e7eb 25%, #f3f4f6 37%, #e5e7eb 63% );
    background-size: 400% 100%;
    animation: shimmer 1.2s infinite;
}

    .news-loader-line.short {
        width: 60%;
    }

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}
