.row {
      display: flex;
    }

    .col-sm-6 {
      flex: 1;
      width: 100%;
    }

    .kiwi-news-ul {
      list-style: none;
      background: #fafbfc;
      border-radius: 8px;
      padding: 20px;
      columns: 2;
      column-gap: 40px;
    }

    .kiwi-news-ul li {
      display: flex;
      align-items: center;
      padding: 15px 0;
      border-bottom: 1px solid #e1e5e9;
      transition: all 0.3s ease;
      break-inside: avoid;
      page-break-inside: avoid;
    }

    .kiwi-news-ul li:hover {

      transform: translateX(5px);
      border-radius: 5px;
      padding-left: 15px;
    }

    .kiwi-news-date {
      color: #8e9aaf;
      font-size: 0.9rem;
      min-width: 85px;
      margin-right: 20px;
      font-weight: 500;
    }

    .kiwi-news-ul a {
      color: #2c3e50;
      text-decoration: none;
      flex: 1;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .kiwi-news-ul a:hover {
      color: #667eea;
    }

