div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

.info__items_t{display:flex;margin-left:-15px; margin-right:-15px; flex-wrap:wrap;}
.info__img img{width:100%;  margin-top:15px;}
.info__item_t{padding-right:15px; padding-left:15px; }
.info__item_t .text{margin-bottom:15px;  font-size:14px; line-height:1.2;}
.info__item_t h3{margin-bottom:15px; margin-top: 15px;}
.info__item_t .info__img{}

/* 🎪 Ярмарочная палитра */
:root {
    --fair-red: #b3261e;
    --fair-yellow: #f4c430;
    --fair-cream: #fff8e7;
    --fair-brown: #5a3a1b;
}

/* Карточка */
.info__item_t {
    background: var(--fair-cream);
    border-radius: 18px;
    border: 3px solid var(--fair-brown);
    box-shadow: 6px 6px 0 var(--fair-brown);
    position: relative;
    transition: transform .25s ease;
}

.info__item_t:hover {
    transform: rotate(-0.5deg) translateY(-4px);
}

/* Картинка */
.info__img img {
    border-bottom: 3px dashed var(--fair-brown);
}

/* Контент */
.info__content_t {
    padding: 22px;
    color: var(--fair-brown);
}

.info__content_t h3 {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
	color:#c21516;
}

/* 🎟 Ярмарочная цена */
.price {
    margin-top: auto;
    background: repeating-linear-gradient(
        45deg,
        var(--fair-red),
        var(--fair-red) 10px,
        #c73229 10px,
        #c73229 20px
    );
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    padding: 18px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: inset 0 0 0 3px #fff,
                0 10px 20px rgba(0,0,0,0.25);
    position: relative;
}

/* "Гвоздики" */
.price::before,
.price::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    top: 10px;
}

.price::before {
    left: 10px;
}

.price::after {
    right: 10px;
}

/* Кнопка */
.buy a {
    margin-top: 16px;
    background: var(--fair-yellow);
    color: var(--fair-brown);
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 14px;
    box-shadow: 0 4px 0 var(--fair-brown);
}

.buy a:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--fair-brown);
}

/* 📱 Мобильная версия */
@media (max-width: 768px) {

    .info__content_t {
        padding: 18px;
    }

    .info__content_t h3 {
        font-size: 18px;
    }

    .price {
        font-size: 22px;
        padding: 20px 16px;
        border-radius: 16px;
    }

    .buy a {
        padding: 18px;
        font-size: 16px;
    }
}