/* =====================================================
   ДИЗАЙН-СИСТЕМА
===================================================== */

:root {

    /* === BRAND BLUE === */
    --primary: #002576;        /* тёмно-синий */
    --с: #001a54;   /* затемнение */
    --primary-light: #0c4d87;  /* средний синий */
    --accent: #3496c3;         /* светло-голубой */
    --accent-soft: #ccf3fd;    /* очень светлый голубой */
    
    /* === BRAND RED === */
    --brand-red: #db3e3d;
    --brand-red-dark: #aa2729;

    /* === BACKGROUNDS === */
    --bg-light: #f2f2f2;
    --white: #ffffff;

    /* === TEXT === */
    --text-main: #1a1a1a;
    --text-muted: #6b6b6b;

    --radius: 14px;
    --transition: all 0.3s ease;
}

/* =====================================================
   БАЗА
===================================================== */

body {
    font-family: 'Segoe UI', sans-serif;
    color: var(--text-main);
    background: var(--bg-light);
    margin: 0;
    padding-top: 110px;
}

main {
    transition: margin-top 0.3s ease;
}
.modal-body {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/* =====================================================
   HEADER / NAVBAR
===================================================== */

#mainNavbar {
    background: linear-gradient(90deg, var(--primary-light), var(--primary-light));
    padding: 20px 0;
    transition: var(--transition);
    z-index: 1050;
}

#mainNavbar.shrink {
    padding: 8px 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

/* ЛОГО */

.navbar-brand img {
    height: 85px;
    transition: var(--transition);
}

#mainNavbar.shrink .navbar-brand img {
    height: 60px;
}

/* =====================================================
   MODAL CUSTOM STYLE
===================================================== */

.custom-modal {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
}

.custom-modal-header {
        background: var(--primary-dark);
    color: #000000;
    border: none;
}

.custom-modal-body {
    background: var(--accent);
    padding: 30px;
}

.custom-modal-footer {
    background: var(--primary-dark);
    border: none;
    padding: 15px 25px;
}

/* Inputs */
.custom-input {
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    transition: var(--transition);
}

.custom-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(11, 61, 145, 0.15);
}

/* Кнопка отправки */
.modal-submit-btn {
    background: var(--white);
    color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 20px;
    transition: var(--transition);
}

.modal-submit-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

/* НАВИГАЦИЯ */

.navbar-nav .nav-link {
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent) !important;
}

/* DROPDOWN */

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 18px;
    transition: var(--primary-light);
}

.dropdown-item:hover {
    background: rgba(11, 61, 145, 0.08);
    color: var(--primary);
}

/* =====================================================
   FOOTER
===================================================== */

.footer-top {
    background: linear-gradient(90deg, #3496c3, #3496c3);
    color: var(--white);
    padding: 50px 0;
}

.footer-bottom {
    background: var(--accent);
    color: var(--accent-soft);
    padding: 18px 0;
    font-size: 14px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--accent-soft);
    padding-left: 6px;
}

/* =====================================================
   КАРУСЕЛИ
===================================================== */

.news-carousel,
.team-carousel {
    height: 490px;
}
.team-carousel .carousel-item {
    text-align: center;
}

.team-carousel img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
}
/* Левая */
.news-carousel {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    /* чтобы скругление работало на картинках */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Правая */

.team-carousel {
    background: var(--white);
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.team-slide-img {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
}

.team-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    text-align: center;
}

.team-name {
    color: #000080 !important;
    font-weight: 600;
    margin: 0;
}
.team-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
.team-title.no-underline::after {
    display: none;
}
.team-title::after {
    content: "";
    width: 70px;
    height: 4px;
   background: linear-gradient(90deg, var(--brand-red), var(--accent));
    display: block;
    margin: 10px auto 0;
    border-radius: 4px;
}

/* =====================================================
   NEWS CARD
===================================================== */

.news-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.news-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.news-title a {
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

.news-title a:hover {
    color: var(--primary);
}

.news-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.news-intro {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-more {
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.news-more:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

/* =====================================================
   MEDIA
===================================================== */

.media-section {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.media-card {
    margin-bottom: 20px;
    transition: var(--transition);
}

.media-card:hover {
    transform: translateY(-6px);
}

.media-card img {
    width: 100%;
    border-radius: 12px;
    height: 200px;
    object-fit: cover;
}

.media-title {
    font-weight: 600;
    margin-top: 10px;
}

.media-date {
    font-size: 13px;
    color: var(--text-muted);
}

.btn-media {
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-media:hover {
    background: var(--brand-red);
}

/* =====================================================
   СПОНСОРЫ (анимация)
===================================================== */

.sponsors-side a,
.sponsor-main {
    opacity: 0;
    transform: translateY(-40px);
    transition: 0.6s ease;
}

.sponsors-side a.show,
.sponsor-main.show {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   АДАПТИВ
===================================================== */

@media (max-width: 992px) {

    body {
        padding-top: 90px;
    }

    .navbar-brand img {
        height: 70px;
    }

    #mainNavbar.shrink .navbar-brand img {
        height: 55px;
    }

}

@media (max-width: 768px) {

    .team-slide img {
        max-height: 300px;
    }
}

/* Контактный блок */
.footer-contact-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: var(--radius);
}

/* Текст футера */
.footer-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Кнопка */
.footer-cta-btn {
    background: var(--white);
    color: var(--primary);
    border-radius: 10px;
    padding: 12px 20px;
    border: none;
    transition: var(--transition);
}

.footer-cta-btn:hover {
background: var(--brand-red);
color: #fff;
    transform: translateY(-3px);
}

/* ====== ТАБЫ (ГОРИЗОНТАЛЬНО ЖЁСТКО) ====== */

.docs-tabs {
    display: flex;
    justify-content: space-between;
    /* распределяем по ширине */
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.docs-tab {
    flex: 1;
    /* равная ширина */
    text-align: center;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    /* оптимально для col-lg-3 */
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 0;
    color: var(--text-main);
    position: relative;
    transition: var(--transition);
}

/* Подчеркивание */
.docs-tab::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Активная вкладка */
.docs-tab.active {
    color: var(--primary);
}

.docs-tab.active::after {
    width: 60%;
    /* не 100%, выглядит изящнее */
}

/* Hover эффект */
.docs-tab:hover::after {
    width: 40%;
}

.docs-tab:not(.active) {
    opacity: 0.7;
}

.docs-tab:hover {
    opacity: 1;
}


/* =================================
   КОНТЕНТ ТАБОВ
================================= */

.docs-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.docs-content.active {
    display: block;
}


/* =================================
   ЭЛЕМЕНТ ДОКУМЕНТА
================================= */

.docs-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.docs-item:last-child {
    border-bottom: none;
}

.docs-title {
    display: block;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-main);
    line-height: 1.5;
    transition: var(--transition);
}

.docs-title:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.docs-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

.docs-column {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: 100%;
}

/* =================================
   АНИМАЦИЯ
================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    margin: 0 8px;
    color: var(--primary);
    font-weight: 600;
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    transition: 0.2s ease;
}

.breadcrumb-item a:hover {
    opacity: 0.7;
}

.breadcrumb-item.active {
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== ПЛАШКА ДОКУМЕНТА ===== */

.document-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
    position: relative;
}

/* Hover-эффект */
.document-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

/* Левая цветная полоска (спортивный акцент) */
.document-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;
    border-radius: 4px;
    background: var(--brand-red);
}

/* Заголовок */
.document-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Если заголовок ссылка */
.document-title a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s ease;
}

.document-title a:hover {
    color: var(--primary);
}

/* Метаданные (дата, размер и т.д.) */
.document-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.85rem;
    color: #777;
}

/* Иконки */
.document-meta i {
    color: var(--primary);
    margin-right: 6px;
}

/* Картинка документа (если есть) */
.document-item img {
    margin-top: 15px;
    border-radius: 12px;
    max-width: 100%;
}

/* Адаптив */
@media (max-width: 768px) {
    .document-item {
        padding: 18px;
    }

    .document-title {
        font-size: 1.05rem;
    }
}

/* =====================================================
   КАРТОЧКА ПРОТОКОЛА
===================================================== */

.protocol-item {
    display: flex;
    justify-content: center;
    /* центрирование */
    margin-bottom: 24px;
    /* расстояние между протоколами */
}

.protocol-title {
    display: block;
    width: 100%;
    max-width: 820px;
    /* ограничиваем ширину */
    text-align: center;

    background: var(--white);
    padding: 22px 28px;

    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);

    transition: var(--transition);
}

/* Hover эффект */
.protocol-title:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    color: var(--primary-dark);
}

/* =====================================================
   РУКОВОДСТВО (УЛУЧШЕННАЯ ВЕРСИЯ)
===================================================== */



/* Контент */
.team-card-body {
    padding: 24px;
    text-align: center;
}

/* ФИО */
.team-name {
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}


/* Должность */
.team-position {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    /* оставить фирменный цвет */
}


/* Контакты */
.team-contact {
    font-size: 15px;
    color: #333;
    /* было muted — теперь читаемо */
}

.team-contact strong {
    color: var(--text-main);
}


/* Карточка из Руководства*/
.team-card {
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.team-card img {
    width: 100%;
    height: auto;
    display: block;
}
/* Мягкий hover всей карточки */
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Анимация фото */
.team-card:hover .team-photo img {
    transform: scale(1.03);
}
/* Фото */
.team-photo {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f3f5f9;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Если нет фото */
.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

/* Контент */
.team-card-body {
    padding: 18px;
    text-align: center;
}

/* Имя */
.team-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
}
/* Должность */
.team-position {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

/* Контакты */
.team-contact {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}
/* =====================================================
   ДОКУМЕНТ / PDF-КАРТОЧКА (в стиле дизайн-системы)
===================================================== */

.news-item {
    margin-bottom: 20px;
}

/* ==========================================
   КАРТОЧКА ДОКУМЕНТА — МИНИМАЛ
========================================== */

.protocol-link {
    display: block;
    text-decoration: none;
    background: var(--white);
    border-radius: 18px;
    padding: 26px 30px;
    transition: var(--transition);
}

.protocol-link:hover {
    background: var(--accent-soft);

    transform: translateY(-4px);
}

/* Контент */
.protocol-card-content {
    display: block;
    /* убираем flex, так как иконки нет */
}

/* Заголовок */
.protocol-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 6px;
    transition: var(--transition);
}

.protocol-link:hover .protocol-name {
    color: var(--primary);
}

/* Дата */
.protocol-meta {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-contacts li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    transition: 0.3s ease;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contacts li:hover .footer-icon {
    background: rgba(255, 255, 255, 0.18);
}

.carousel-image-wrapper {
    position: relative;
}

.carousel-image-wrapper img {
    width: 100%;
    height: auto;          /* Высота автоматическая, пропорции сохраняются */
    max-height: 500px;     /* Но не выше 500px */
    object-fit: contain;   /* contain - показывает всё изображение, cover - обрезает */
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.35) 60%,
            rgba(0, 0, 0, 0.15) 100%);
}

.custom-caption {
    bottom: 70px;
    text-align: left;
    max-width: 700px;
}

.custom-caption h3 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}

.carousel-text {
    font-size: 17px;
    line-height: 1.7;
    color: #f5f5f5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.custom-carousel-control {
    width: 70px;
    opacity: 1;
    transition: all 0.3s ease;
}


/* При наведении - чуть ярче */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(34%) sepia(98%) saturate(1236%) hue-rotate(172deg) brightness(110%) contrast(97%);
    transform: scale(1.1);
}
.custom-carousel-control:hover .carousel-control-prev-icon,
.custom-carousel-control:hover .carousel-control-next-icon {
    transform: scale(1.15);
    filter: brightness(0) drop-shadow(0 0 10px rgba(0, 0, 0, 1));
}



/* =======================
   MOBILE TOGGLER
======================= */

/* ===== Кнопка бургер ===== */

.custom-toggler {
    border: none;
    padding: 6px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-toggler:focus {
    box-shadow: none;
}

.toggler-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background: #fff;
    display: block;
}

.toggler-icon::before,
.toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: #fff;
}

.toggler-icon::before {
    top: -7px;
}

.toggler-icon::after {
    top: 7px;
}

/* Анимация в крестик */
.navbar-toggler[aria-expanded="true"] .toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ===== Мобильное меню ===== */
@media (max-width: 991px) {

    /* Уменьшаем высоту navbar */
    #mainNavbar {
        padding: 6px 0;
    }
    /* Контейнер выпадающего меню */
    #mainNavbar .navbar-collapse {

        margin-top: 10px;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }

    /* Вертикальное меню без гигантских отступов */
    #mainNavbar .navbar-nav {
        gap: 8px;
        align-items: flex-start;
    }

    /* Ссылки меньше и аккуратнее */
    #mainNavbar .nav-link {
        font-size: 16px;
        padding: 6px 0;
    }

}
.carousel-title-link {
    color: #fff;
    text-decoration: none;
}

.carousel-title-link:hover {
    color: #fff;
    text-decoration: none;
}

.stylish-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #db3e3d; /* Ярко-красный — как куртка */
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px; /* Овальная форма как у современных кнопок */
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(219, 62, 61, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.stylish-button-news {
    display: inline-block;
    padding: 10px 24px;
    background-color: #3496c3; /* основной цвет */
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px; /* меньшее закругление */
    border: none; /* убрали рамку */
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}
.stylish-button-news:hover {
    background-color: #2a7aa0; /* лёгкий hover-эффект */
}

/* Эффект "лыжни" при наведении */
.stylish-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.stylish-button:hover {
    background-color: #c62e2d; /* Чуть темнее красный при наведении */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(219, 62, 61, 0.4);
    color: white;
}

.stylish-button:hover::before {
    left: 100%; /* Эффект проезжающей лыжни/блика */
}

.stylish-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(219, 62, 61, 0.3);
}

/* Альтернативный вариант с обводкой (если нужна более сдержанная версия) */
.stylish-button-outline {
    background-color: transparent;
    border: 2px solid #db3e3d;
    color: #db3e3d;
    box-shadow: none;
}

.stylish-button-outline:hover {
    background-color: #db3e3d;
    color: white;
}
}
.col-lg-9 .news-image { /* Задайте вашим изображениям этот класс */
    width: 100%;        /* Ширина на весь родителя */
    height: 250px;      /* Фиксированная высота */
    object-fit: cover;  /* Изображение обрежется, чтобы заполнить контейнер без искажений */
    /* object-fit: contain; - Изображение впишется целиком, возможно появление пустых полей */
}