.detail-news {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(186px, 1fr));
    gap: 35px;
}

.news__img {
    height: 220px;
    margin-bottom: 20px;
}

.news__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
}

.false-title {
    height: 0;
    opacity: 0;
    margin: 0;
}


  .article-related-sections {
                    margin: 30px 0;
                }

                /* Настройка одинаковой высоты слайдов */
                .related-sections-slider .slick-track {
                    display: flex !important;
                    align-items: stretch;
                }

                .related-sections-slider .slick-slide {
                    height: auto !important;
                    display: flex;
                }

                .section-slide {
                    padding: 0 10px;
                    width: 100%;
                    display: flex;
                }

                .section-card {
                    display: flex;
                    flex-direction: column;
                    width: 100%;
                    text-decoration: none;
                    color: #333;
                    transition: 0.3s;
                    background: #fff;
                }

                .section-card:hover {
                    opacity: 0.8;
                }

                .section-card__image {
                    height: 200px;
                    /* Фиксированная высота для всех фото */
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    overflow: hidden;
                    /* Рамка удалена по просьбе пользователя */
                }

                .section-card__image img {
                    max-width: 100%;
                    max-height: 100%;
                    object-fit: contain;
                    /* Фото вписывается в блок без искажений */
                }

                .no-image {
                    background: #eee;
                    width: 100%;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: #999;
                    font-size: 14px;
                }

                .section-card__title {
                    text-align: center;
                    margin-top: 15px;
                    flex-grow: 1;
                    /* Чтобы заголовок занимал оставшееся место, выравнивая карточки */
                    display: flex;
                    align-items: flex-start;
                    justify-content: center;
                    padding-bottom: 10px;
                    color: #fe6a00;
                }



                .author-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}