.service-articles-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-article-card { display: flex; min-width: 0; overflow: hidden; color: #172039; text-decoration: none; flex-direction: column; background: #fff; border: 1px solid #e9e5f1; border-radius: 16px; box-shadow: 0 13px 32px rgba(32,28,56,.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-article-card:hover { color: #172039; border-color: rgba(103,8,199,.25); box-shadow: 0 18px 40px rgba(32,28,56,.11); transform: translateY(-4px); }
.service-article-card__image { display: block; height: 190px; overflow: hidden; background: #f4f0fb; }
.service-article-card__image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-article-card:hover .service-article-card__image img { transform: scale(1.04); }
.service-article-card__body { display: flex; min-height: 225px; flex-direction: column; padding: 22px; }
.service-article-card__date { margin-bottom: 10px; color: #d84265; font-size: 12px; font-weight: 600; }
.service-article-card__body > strong { font-size: 19px; line-height: 1.3; }
.service-article-card__text { display: -webkit-box; margin-top: 12px; overflow: hidden; color: #61708a; font-size: 13px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.service-article-card__more { margin-top: auto; padding-top: 20px; color: #6419ed; font-size: 13px; font-weight: 700; }
.service-article-card__more b { margin-left: 8px; font-size: 18px; font-weight: 400; }
@media (max-width: 991.98px) { .service-articles-grid { grid-template-columns: 1fr; }.service-article-card { display: grid; grid-template-columns: 220px minmax(0,1fr); }.service-article-card__image { height: 100%; min-height: 220px; }.service-article-card__body { min-height: 220px; } }
@media (max-width: 575.98px) { .service-article-card { display: flex; }.service-article-card__image { height: 190px; min-height: 0; }.service-article-card__body { min-height: 210px; } }
