/* ====== ОСНОВНЫЕ СТИЛИ КАРТОЧЕК ====== */
.blog-card {
border-radius:16px;
padding:24px;
margin-bottom:24px;
text-align:center;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
background:#fff;
}
.blog-card__number {
margin:0 auto 16px;
width:50px;height:50px;
border-radius:50%;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:18px;
box-shadow:0 3px 6px rgba(0,0,0,0.25);
}
.blog-card h2, .blog-card h3 {
margin:0 0 16px;
font-size:22px;
font-weight:normal;
}
.blog-card p, .blog-card ul {
margin:0 0 14px;
line-height:1.7;
font-size:16px;
color:#222;
}
.blog-card img {
border-radius:12px;
max-width:100%;
height:auto;
}
.blog-card ul {
list-style:none;
padding:0;
text-align:left;
max-width:700px;
margin:0 auto;
}
.blog-card ul li {
position:relative;
padding-left:20px;
margin-bottom:8px;
}
.blog-card ul li::before {
content:'';
width:8px;height:8px;
border-radius:50%;
background:#000;
position:absolute;
top:9px;left:0;
}
/* ====== АКЦИЯ ====== */
.promo-action {
border-radius:12px;
padding:24px;
margin:24px 0;
text-align:center;
background:linear-gradient(90deg,#ffb100,#ff6f31);
color:#fff;
box-shadow:0 4px 12px rgba(0,0,0,0.12);
}
.promo-action h3 {
margin:0 0 8px;
font-size:22px;
color:#fff;
}
.promo-action p {
margin:0 0 16px;
font-size:16px;
}
.promo-action a {
display:inline-block;
background:#e53935;
color:#fff;
padding:12px 24px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}
/* ====== ПОЛНЫЙ ФИКС СЛАЙДЕРА ====== */
.zfs-wrapper, .zfs-wrapper * { box-sizing:border-box!important; }
.zfs-wrapper::before,
.zfs-wrapper::after,
.zfs-track::before,
.zfs-track::after {
content:none!important;
display:none!important;
border:none!important;
background:none!important;
}
.zfs-wrapper {
background:#eaf4fd;
padding:50px 20px;
border-radius:16px;
margin:40px 0 50px;
text-align:center;
}
.zfs-icon {
width:48px;height:48px;
border-radius:50%;
background:#5da2c7;color:#fff;
display:flex;align-items:center;justify-content:center;
margin:0 auto 15px;
font-size:22px;font-weight:bold;
}
.zfs-title {
color:#5da2c7;font-size:26px;margin-bottom:35px;font-weight:600;
}
.zfs-area { position:relative; max-width:1100px; margin:0 auto; }
.zfs-track {
display:flex!important;
gap:16px!important;
overflow-x:auto!important;
scroll-behavior:smooth!important;
padding:10px 0!important;
white-space:nowrap!important;
border:none!important;
}
.zfs-slide {
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
flex:0 0 auto!important;
min-width:240px!important;
padding:14px 18px!important;
background:#fff!important;
border-radius:12px!important;
font-size:16px!im...