.blog-list-hero {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog-list-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-list-hero__overlay {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 350px;
  padding: 48px 20px;
  text-align: center;
}
.blog-list-hero__title {
  margin: 0 0 28px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: #32b6b9;
  font-family: Dincondensed, sans-serif;
}
.blog-list-hero__description {
  max-width: 1200px;
  font-size: 22px;
  line-height: 1.45;
  color: #3c3c3c;
}
.blog-list-hero__description p {
  margin-bottom: 0;
}
.blog-list-hero__description strong {
  font-weight: 700;
}

.page-content {
  font-size: 1rem;
  line-height: 1.5rem;
}
.page-content a {
  text-decoration: underline !important;
  color: #333;
}
.page-content h1 {
  color: #32b6b9;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  font-family: Dincondensed, sans-serif;
  margin-bottom: 20px;
  margin-top: 30px;
}
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  font-size: 26px;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 22px;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .page-content h2,
  .page-content h3,
  .page-content h4,
  .page-content h5,
  .page-content h6 {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
.page-content ul,
.page-content li {
  list-style: disc;
  margin-bottom: 12px;
}
.page-content ul,
.page-content ol {
  padding-left: 30px;
}
.page-content img {
  width: 100%;
  margin-bottom: 18px;
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .blog-list-hero {
    min-height: 420px;
  }
  .blog-list-hero__overlay {
    padding: 40px 20px;
  }
  .blog-list-hero__title {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .blog-list-hero__description {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .blog-list-hero {
    min-height: 340px;
  }
  .blog-list-hero__overlay {
    padding: 28px 16px;
  }
  .blog-list-hero__title {
    font-size: 38px;
    margin-bottom: 14px;
  }
  .blog-list-hero__description {
    font-size: 18px;
    line-height: 1.55;
    max-width: 620px;
  }
}
.blog-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px 20px;
  background-color: #ddf0f5;
  padding: 16px 30px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .blog-tabs {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog-tabs {
  position: sticky;
  top: 0;
  z-index: 100;
}
.blog-tabs__item {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .blog-tabs__item {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.blog-tabs__item {
  position: relative;
  background: none;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
  outline: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.blog-tabs__item.is-active {
  background-color: #32b6b9;
  color: #fff;
  font-weight: 600;
}
.blog-tabs__item:hover:not(.is-active) {
  background-color: rgba(50, 182, 185, 0.12);
}

.blog-list-content {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1280px) {
  .blog-list-content {
    max-width: 1280px;
  }
}

.blog-list-heading {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #333;
  margin: 60px 0 40px;
  font-family: Dincondensed, sans-serif;
}

.blog-list-card {
  background-color: #fafafa;
}
.blog-list-card__image {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16/10;
}
.blog-list-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.blog-list-card__image:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.blog-list-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-list-card__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-list-card__category {
  display: inline-block;
  background-color: #e0fcd5;
  color: #32b6b9;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 5px 16px;
  border-radius: 0 10px;
}
.blog-list-card__date {
  font-size: 16px;
  color: #666;
  white-space: nowrap;
}
.blog-list-card__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 24px;
  font-weight: 400;
}
@media (min-width: 320px) and (max-width: 767px) {
  .blog-list-card__title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
  }
}
.blog-list-card__title {
  line-height: 1.4;
  margin-bottom: 8px;
  color: #333;
}
.blog-list-card__title a {
  color: inherit;
  text-decoration: none;
}
.blog-list-card__title a:hover {
  text-decoration: underline;
}
.blog-list-card__summary {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.blog-list-card--hidden {
  display: none !important;
}

.blog-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 50px;
  padding-bottom: 20px;
}
.blog-pagination__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #ccc;
  background: #fff;
  color: #1a1a1a;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.blog-pagination__btn.is-active {
  background-color: #02aba3;
  border-color: #02aba3;
  color: #fff;
  font-weight: 600;
}
.blog-pagination__btn:hover:not(.is-active) {
  background-color: #f5f5f5;
  border-color: #999;
}
.blog-pagination__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #fff;
  border-color: #ddd;
  color: #999;
}
.blog-pagination__btn--nav {
  font-size: 18px;
  line-height: 1;
}

.blog-related-posts {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.blog-related-posts__inner {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1280px) {
  .blog-related-posts__inner {
    max-width: 1440px;
  }
}
.blog-related-posts__inner {
  padding: 0 20px;
}
.blog-related-posts__heading {
  text-align: center;
  font-size: 38px;
  font-weight: 400;
  color: #333;
  margin: 0 0 40px;
}
.blog-related-posts__carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.blog-related-posts__nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #32b6b9;
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.2s ease, opacity 0.2s ease;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  padding: 0;
  font-family: "system-ui", sans-serif;
}
.blog-related-posts__nav:hover {
  background-color: #28a0a3;
}
.blog-related-posts__nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.blog-related-posts .swiper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  overflow: hidden;
}
.blog-related-posts .blog-list-card {
  background-color: #fff;
}

@media (max-width: 1023px) {
  .blog-related-posts__nav {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .blog-related-posts {
    padding: 30px 0;
  }
  .blog-related-posts__inner {
    padding: 0 12px;
  }
  .blog-related-posts__heading {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .blog-related-posts__carousel {
    gap: 8px;
  }
  .blog-related-posts__nav {
    width: 34px;
    height: 34px;
    font-size: 16px;
    display: none;
  }
}
