/*************************/
/* Card post*/
/**************************/
.sw--auto.cols--blog .swiper-slide {
  width: 30rem;
}

.post-card {
  background: var(--c-neutral-0);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--c-neutral-100);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-card a:hover {
  color: var(--c-primary-600);
}

.post-card__image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 3;
}

.post-card__content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__title {
  font-size: var(--fs-16);
  font-weight: bold;
  color: var(--c-neutral-900);
  line-height: 1.8;
}

.post-card__meta-date {
  font-size: var(--fs-14);
  color: var(--c-neutral-500);
}

.post-card__excerpt {
  color: var(--c-neutral-900);
  font-size: var(--fs-14);
  margin-top: 0.5rem;
}

.post-card__more {
  display: flex;
  align-items: center;
  color: var(--c-secondary-800);
  font-size: var(--fs-16);
  font-weight: bold;
  transition: background-color 0.3s ease;
  justify-self: end;
  gap: 0.8rem;
  margin-top: auto;
  margin-right: auto;
  padding-top: 0.5rem;
}

.post-card__more::after {
  content: "\e912";
  font-family: var(--ff-icon);
  font-size: 1rem;
}

/*************************/
/* Card tour */
/**************************/
.sw--auto.cols--tours .swiper-slide {
  width: 30rem;
}

.tour-card {
  background: var(--c-neutral-0);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--c-neutral-100);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tour-card a:hover {
  color: var(--c-primary-600);
}

.tour-card__image {
  position: relative;
  overflow: hidden;
}

.tour-card__image img {
  width: 100%;
  object-fit: cover;
}

.tour-card__content {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card__title {
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: bold;
  font-size: var(--fs-16);
  color: var(--c-neutral-900);
}

.tour-card__meta {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.tour-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--fs-14);
  color: var(--c-neutral-900);
}

.tour-card__meta-item i {
  font-size: 2rem;
  color: var(--c-primary-600);
}

.tour-card__link {
  display: flex;
  align-items: center;
  color: var(--c-secondary-800);
  font-size: var(--fs-16);
  font-weight: bold;
  transition: background-color 0.3s ease;
  justify-self: end;
  gap: 0.8rem;
  margin-top: auto;
  margin-right: auto;
}

.tour-card__link::after {
  content: "\e912";
  font-family: var(--ff-icon);
  font-size: 1rem;
}

/*************************/
/* Card service*/
/**************************/
.card-service {
  background: var(--c-neutral-0);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--c-neutral-100);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card__image {
  position: relative;
  display: block;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2 / 1;
}

.service-card__content {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  /* flex: 1; */
}

.service-card__title {
  font-size: var(--fs-16);
  font-weight: bold;
  line-height: 1.8;
}

.service-card__more::after {
  content: "\e912";
  font-family: var(--ff-icon);
  line-height: 1;
  font-size: 1rem;
}

.service-card__more {
  color: var(--c-secondary-800);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/*************************/
/* Card video */
/**************************/
.video-card {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-card__image {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background-color: #000;
}

.video-card__duration {
  position: absolute;
  background: #7a7979;
  color: #fff;
  border-radius: 4px;
  font-size: var(--fs-14);
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 0.5rem 1rem;
  line-height: 1;
}

.video-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.video-card__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.video-card__title {
  font-size: var(--fs-18);
}

.video-card__cat {
  font-size: var(--fs-14);
  color: #636363;
}

/*************************/
/* pagination*/
/**************************/
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-16);
  font-weight: 700
}

ul.page-numbers {
  margin-top: min(4rem, 7vw);
  padding-bottom: 1rem
}

.page-numbers li {
  margin: 0 .5rem
}

.page-numbers li a,
.page-numbers li span {
  line-height: 1;
  height: 3.8rem;
  min-width: 3.8rem;
  border: 1px solid var(--c-neutral-200);
  color: var(--c-secondary-500);
  padding: .8rem;
  border-radius: 8px;
  transition: .3s;
  white-space: nowrap;
  background: var(--c-neutral-0)
}

.page-numbers li a:hover {
  border-color: var(--c-secondary-800);
}

.prev.page-numbers,
.next.page-numbers {
  font-size: 1rem
}

.page-numbers i {
  vertical-align: baseline;
}

.page-numbers.dots {
  all: unset;
  display: block;
  font-weight: 700
}

.page-numbers li span.current {
  pointer-events: none
}

.page-numbers li span.current {
  color: var(--c-neutral-0);
  background: var(--c-secondary-800);
  border-color: var(--c-secondary-800);
}