.ta-posts__heading {
  font-size: 20px;
}
.ta-posts-section {
    display: flex;
    gap: 20px;
  }
  .ta-posts-left {
    flex: 1;
  }
  .ta-posts-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .ta-posts-section article {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
  }
  .ta-posts-section img {
    width: 100%;
    height: auto;
    display: block;

  }
  .ta-posts-section h3 {

    font-size: 16px;
  }

  .ta-post {
    display: flex;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .ta-post__thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }
  
  .ta-post__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px;
  }
  
  .ta-post__meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
  }
  
  .ta-post__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
  }

  .ta-post-right {
    display: flex;
  }