/* =========================
   Aktualności
   ========================= */
.posts__title {
  margin-bottom: 64px;
  margin-top: 0;
}

/* TAGI */
.posts__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 80px;
  padding: 0;
  list-style: none;
}

.posts__tag a {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 9999px;
  padding: 5px 16px;
  font-size: var(--fs-body);
  text-decoration: none;
  transition: all .15s ease;
}

.posts__tag a:hover {
  background: color-mix(in srgb, var(--primary-color) 15%, white);
}

.posts__tag-icon {
  position: relative;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
}

.posts__tag-icon img {
  display: none;
}

.posts__tag.is-active a {
  background: var(--primary-color);
  color: #fff;
}

.posts__tag.is-active .posts__tag-icon {
  background: #fff;
  border-color: #fff;
  width: 19px;
  height: 19px;
  top: 0px;
}

.posts__tag.is-active .posts__tag-icon img {
  display: block;
  position: relative;
  top: 0px;
  left: 0px;
}

.posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 80px;
}

.posts__thumb img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: .1s all ease;
}

.posts__thumb img:hover {
  border-radius: 75px;
}

.posts__categories {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.posts__category {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 9999px;
}

.posts__title-item {
  margin-block: 16px;
}

.posts__title-item a {
  text-decoration: none;
  color: inherit;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-regular);
}

.posts__item:hover .posts__thumb img {
  border-radius: 75px;
}

.posts__date {
  margin-top: 16px;
  font-size: 18px;
  color: var(--gray-500, #777);
  display: block;
}

.posts .pagination {
  margin-top: 80px;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 996px) {
  .posts__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 64px;
  }

  .posts__thumb img {
    height: 360px;
  }
}

@media (max-width: 692px) {
  .posts__title {
    margin-bottom: 48px;
  }
  .posts__grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }

  .posts__thumb img {
    height: 320px;
  }

  .posts__tag a {
    font-size: 16px;
  }

  .posts__tag.is-active .posts__tag-icon {
    width: 17px;
    height: 17px;
  }

  .posts__tag.is-active .posts__tag-icon img {
    width: 16px;
  }

  .posts__tags {
    margin: 0 0 56px;
  }
}