.latest-horizontal-wrap {
    margin-bottom: 1.5rem;
  }
  .horizontal-card {
    display: flex;
    gap: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1rem;
    align-items: center;
    background: #fff;
    height: 100%;
    flex-wrap: wrap;
  }
  .horizontal-card .thumb {
    flex-shrink: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: #f1f1f1;
    max-height: 150px;
  }
  .horizontal-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .horizontal-card .text {
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .horizontal-card .text a {
    color: #222;
    text-decoration: none;
  }
  .horizontal-card .text a:hover {
    text-decoration: underline;
  }
  @media (max-width: 767px) {
    .horizontal-card {
      flex-direction: column;
      text-align: center;
    }
    .horizontal-card .thumb {
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 3;
    }
    .horizontal-card .thumb img {
      width: 100%;
      height: auto;
    }
    .horizontal-card .text {
      margin-top: 0.5rem;
      font-size: 1rem;
    }
  }