/* Секция страницы серии (from-blog spad) */
.from-blog {
    padding-top: 50px;
    padding-bottom: 50px;
}

.from-blog .blog__item {
    margin-bottom: 30px;
}

/* Описание серии (blog__details__text) */
.blog__details__text {
    margin-bottom: 45px;
}

.blog__details__text h1 {
    color: #252525;
    font-weight: 700;
    margin-bottom: 20px; /* Добавлено для отступа */
}

.blog__details__text p {
    font-size: 16px;
    line-height: 26px;
    color: #6f6f6f;
    margin-bottom: 15px;
}

/* Заголовок секции (section-title) */
.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h4 {
    color: #1c1c1c;
    font-weight: 700;
    position: relative;
}

.section-title h4:after {
    position: absolute;
    left: 0;
    bottom: -15px;
    right: 0;
    height: 4px;
    width: 50px;
    background: #fda417;
    content: "";
    margin: 0 auto;
}

/* Карточки моделей (blog__item) */
.blog__item {
    margin-bottom: 60px;
}

.blog__item__pic {
    margin-bottom: 15px; /* Отступ под изображением */
}

.blog__item__pic img {
    max-width: 100%;
    height: auto;
}

.blog__item__text {
    padding-top: 0; /* Убрал лишний padding для center */
    text-align: center;
}

.blog__item__text h5 {
    margin-bottom: 12px;
}

.blog__item__text h5 a {
    font-size: 20px;
    color: #1c1c1c;
    font-weight: 700;
    text-decoration: none; /* Убрал underline по умолчанию */
}

.blog__item__text h5 a:hover {
    color: #339933;
    text-decoration: underline;
}

/* Ссылки в каталоге (grtitle) */
a.grtitle:link {
    color: #252525;
    text-align: center;
    font-size: 110%;
    font-weight: bold;
    text-decoration: none;
}

a.grtitle:visited {
    color: #252525;
    text-decoration: none;
}

a.grtitle:hover {
    color: #339933;
    text-decoration: underline;
}

/* Выравнивание по центру (для align="center" в HTML) */
[align="center"] {
    text-align: center;
}

/* Медиа-запросы (базовые для responsive) */
@media only screen and (max-width: 767px) {
    .from-blog {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .blog__details__text h1 {
        font-size: 24px;
    }
    
    .blog__item__text h5 a {
        font-size: 18px;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
}