.category-posts {
  margin-top: 90px;
}

.category-posts h2 {
  color: var(--color-canvas-text);
  font-family: 'Poppins';
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

.category-posts__description-wrapper {
  align-items: center;
  color: var(--color-canvas-text);
  display: flex;
  flex-direction: row;
  font-family: 'Poppins';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  justify-content: space-between;
  line-height: 150%;
  margin-bottom: 15px;
}

.category-posts__link {
  color: var(--color-brand-blue);
  background: none;
  text-align: right;
  text-decoration: none;
}

.category-posts__link .arrow-svg {
  display: inline-block;
  vertical-align: middle;
  color: var(--color-brand-blue);
}

.category-posts__link:hover {
  color: var(--color-grey);
}

.category-posts__link:hover .arrow-svg {
  color: var(--color-grey);
}

@media (max-width: 768px) {
  .category-posts {
    margin-top: 30px;
  }

  .category-posts h2 {
    font-size: 32px;
  }

  .category-posts .category-posts__link {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
  }

  .category-posts--first {
    padding-top: 60px;
  }

  .category-posts__description {
      margin-bottom: 1.5rem;
  }

  .category-posts__link {
    text-align: left;
  }

  .category-posts .post-list {
    background-color: var(--color-white);
    border-radius: 15px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    padding: 15px;
    position: relative;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .category-posts .post-list a {
    align-items: flex-start;
    flex-direction: row-reverse;
    margin: 0;
  }

  .category-posts .post-list .post-category {
    margin: 0 0 15px !important;
    padding: 0;
  }

  .category-posts .post-list .post-meta {
    padding-bottom: 0;
  }
}