  /* =========================
     Articles list (t-m.kz)
     ========================= */

  .central-content {
    padding: 24px 16px;
    color: #2b2f2f;
    line-height: 1.5;
  }

  @media (min-width: 992px) {
    .central-content {
      padding: 28px 24px;
    }
  }

  .articles-title h1 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
  }

  @media (min-width: 992px) {
    .articles-title h1 {
      font-size: 28px;
    }
  }

  /* Grid */
  .articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  @media (min-width: 576px) {
    .articles-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  /* Если хочешь на больших экранах 3 колонки, раскомментируй */
  @media (min-width: 1200px) {
    .articles-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  /* Card */
  .article-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  @media (hover: hover) {
    .article-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 26px rgba(0,0,0,.07);
      border-color: rgba(0,0,0,.12);
    }
  }

  .article-thumb {
    position: relative;
    aspect-ratio: auto;
    overflow: hidden;
  }

  .article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Если картинка не загрузилась, пусть не ломает верстку */
  .article-thumb img[alt=""] {
    background: #f3f4f6;
  }

  .article-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }

  .article-meta {
    font-size: 12px;
    color: rgba(0,0,0,.55);
    line-height: 1.2;
  }

  .article-link {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
  }

  @media (min-width: 992px) {
    .article-link {
      font-size: 17px;
    }
  }

  .article-link a {
    color: #d12c24; /* твой корпоративный красный */
    text-decoration: none;
  }

  .article-link a:hover {
    text-decoration: underline;
  }

  .article-excerpt {
    color: rgba(0,0,0,.72);
    font-size: 14px;
    line-height: 1.55;
    /* аккуратное ограничение текста */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.55em * 3);
  }

  /* "Читать" как спокойная подсказка */
  .article-footer {
    margin-top: auto;
    padding-top: 4px;
    font-size: 13px;
    color: rgba(0,0,0,.55);
    display: inline-flex;
    gap: 8px;
    align-items: center;
  }

  .article-footer .arrow {
    font-size: 16px;
    line-height: 1;
    transform: translateY(1px);
  }

  /* Убираем старые отступы/float-эффекты если где-то наследуются */
  .article-text, .article-text * {
    float: none !important;
  }