/* Swiper */
@media (min-width: 1280px) {
  .swiper-button-prev {
    background-image: url("../assets/address/arrow_left.png");
    background-size: 100% 100%;
  }

  .swiper-button-next {
    background-image: url("../assets/address/arrow_right.png");
    background-size: 100% 100%;
  }
}

/* ---------------------------------------------- */
/* ---------------------------------------------- */

/* Blog Section */
.blog-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.blog-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.blog-section .content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media (min-width: 1280px) {
  .blog-section .container {
    width: 1200px;
    gap: 60px;
  }

  .blog-section .title {
    font-size: 52px;
    font-weight: 400;
    line-height: var(--h1-line-height-mobile);
    text-align: left;
  }

  .blog-section .content {
    display: flex;
    flex-direction: row;
    gap: 36px;
  }
}

/* Posts Section */
.posts-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.posts-section .posts-panel {
  display: flex;
  flex-direction: column;
  gap: 36px;
  /*align-items: center;*/
}

.posts-section .posts-panel .post-card {
  min-width: 288px;
  max-width: 100%;
  height: auto;
  border-style: solid;
  border-width: 1px;
  border-color: var(--border-color);
  border-radius: 12px;
  padding: 16px;
}
.posts-section .posts-panel .post-card.active:hover {
  cursor: pointer;
  border-color: #434343;
}

.posts-section .posts-panel .post-card .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.posts-section .posts-panel .post-card .content-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.posts-section .posts-panel .post-card .content-title {
  font-family: Ubuntu;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0;
  color: #353535;
}

.posts-section .posts-panel .post-card .content-description {
  font-family: Ubuntu;
  font-weight: 300;
  font-size: 16px;
  line-height: 20.8px;
  letter-spacing: 0;
  color: #353535;
}

.posts-section .posts-panel .post-card .content-views {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.posts-section .posts-panel .post-card .content-views .view-count {
  font-family: Ubuntu;
  font-weight: 400;
  font-size: 16px;
  line-height: 20.8px;
  letter-spacing: 0;
}

.posts-section .posts-panel .post-card .content-views .view-icon {
  display: flex;
  align-items: center;
}

.posts-section .posts-panel .post-card .content-views .view-icon img {
  width: 21.5px;
  height: 14.3px;
}

.posts-section .posts-panel .post-card .content-image {
  overflow: hidden;
  border-radius: 12px;
}

.posts-section .posts-panel .post-card .content-image img {
  object-fit: cover;
  min-width: 256px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.posts-section .posts-pagination {
  display: flex;
  flex-direction: row;
  align-self: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.posts-section .posts-pagination .page {
  padding: 12px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.posts-section .posts-pagination .page:hover {
  background-color: #bfc0c5;
  color: #FFFFFF;
  cursor: pointer;
}

.posts-section .posts-pagination .page.selected {
  background-color: #bfc0c5;
  color: #FFFFFF;
}

.posts-section .posts-pagination .page.back,
.posts-section .posts-pagination .page.forward {
  border-radius: 28px;
  padding: 10px 24px;
  width: fit-content;
}

@media (min-width: 1280px) {
  .posts-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  
  .posts-section .posts-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: max-content;
    grid-auto-flow: dense;
    grid-gap: 36px;
    align-items: start;
  }

  .posts-section .posts-column {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .posts-section .posts-panel .post-card {
    min-height: unset;
    max-width: 376px;
    height: auto;
    border-style: solid;
    border-width: 1px;
    border-color: var(--border-color);
    border-radius: 12px;
    padding: 20px;
  }
  
  .posts-section .posts-panel .post-card .content {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  .posts-section .posts-panel .post-card .content-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .posts-section .posts-panel .post-card .content-title,
  .posts-section .posts-panel .post-card .content-description {
    width: 336px;
    color: #353535;
    font-family: Ubuntu;
  }
  
  .posts-section .posts-panel .post-card .content-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 31.2px;
  }

  .posts-section .posts-panel .post-card .content-description {
    font-weight: 300;
    font-size: 16px;
    line-height: 20.8px;
    letter-spacing: 0.16px;
  }
  
  .posts-section .posts-panel .post-card .content-views {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
  }
  
  .posts-section .posts-panel .post-card .content-views .view-icon {
    display: flex;
    align-items: center;
  }

  .posts-section .posts-panel .post-card .content-views .view-icon img {
    width: 21.5px;
    height: 14.3px;
  }
  
  .posts-section .posts-panel .post-card .content-views .view-count {
    font-family: Ubuntu;
    font-weight: 400;
    font-size: 16px;
    line-height: 20.8px;
    color: #353535;
  }

  .posts-section .posts-panel .post-card .content-image {
    overflow: hidden;
    border-radius: 12px;
  }
  
  .posts-section .posts-panel .post-card .content-image img {
    object-fit: cover;
    width: 336px;
    height: 253px;
  }

  .posts-section .posts-pagination .page {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

/* ---------------------------------------------- */
/* ---------------------------------------------- */
