/**
 * Colors
 */
/**
 * fonts
 */
/**
 * Breakpoints
 */
/** Media Queries
** phone = Viewport width is 767px or lower
** tablet = Viewport width is between 768px to 991px
** M = Viewport width is between 992px to 1199px
** L = Viewport width is between 1200px to 1399px
** XL = Viewport width is 1400px or higher
**/
.posts-page {
  color: #000000;
  background: #ffffff;
}
.posts-page .head {
  background: #DBFF00;
  padding: 64px 0 196px;
}
@media screen and (max-width: 768px) {
  .posts-page .head {
    padding: 40px 0 180px;
  }
}
.posts-page .head .container {
  display: flex;
  gap: 80px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .posts-page .head .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.posts-page .head h1 {
  min-width: 280px;
  font-family: "Francois One", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 110%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .posts-page .head h1 {
    font-size: 28px;
    line-height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .posts-page .head h1 {
    font-size: 32px;
    max-width: 180px;
  }
}
.posts-page .head p {
  font-size: 24px;
  line-height: 140%;
  max-width: 640px;
}
@media screen and (max-width: 768px) {
  .posts-page .head p {
    font-size: 16px;
  }
}
.posts-page .posts-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: -132px;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .posts-page .posts-list {
    margin-top: -160px;
  }
}
@media screen and (max-width: 768px) {
  .posts-page .posts-list {
    grid-template-columns: 1fr;
  }
}
.posts-page .posts-list .media__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.posts-page .posts-list .media__item img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.posts-page .posts-list .media__item .categories {
  display: flex;
  gap: 5px;
}
.posts-page .posts-list .media__item .categories__item {
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  padding: 6px 9px;
  border: 1px #000000 solid;
  border-radius: 4px;
  color: #000000;
}
.posts-page .posts-list .media__item h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  color: #000000;
}
.posts-page .pagination {
  margin-bottom: 64px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.posts-page .pagination .page-numbers {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  vertical-align: middle;
  color: #000000;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.posts-page .pagination .page-numbers.current {
  background: #E9E9E9;
  border-radius: 50%;
}
.posts-page .pagination .page-numbers .next, .posts-page .pagination .page-numbers .prev {
  display: block;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_17_716)'%3E%3Cpath d='M10.2465 6.22913L3.94434 0.0463867L2.33897 1.56158L8.64109 7.74433L10.2465 6.22913Z' fill='black'/%3E%3Cpath d='M3.82578 12.2975L10.251 6.23315L8.67544 4.68747L2.25025 10.7518L3.82578 12.2975Z' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_17_716'%3E%3Crect width='12' height='12' fill='white' transform='matrix(1 1.74846e-07 1.74846e-07 -1 0 12)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-size: contain;
  width: 12px;
  height: 12px;
}
.posts-page .pagination .page-numbers .prev {
  transform: rotate(180deg);
}

/*# sourceMappingURL=media-info.css.map */
