.blog-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.blog-hero__item {
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.blog-hero__content {
  text-align: center;
  color: #fff;
  max-width: 850px;
  z-index: 2;
}
.blog-hero__date {
  font-size: 14px;
  font-weight: 400;
  text-transform: lowercase;
  display: block;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
.blog-hero__title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.blog-hero__btn {
  display: inline-block;
  padding: 8px 40px;
  font-size: 14px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}
.blog-hero__btn:hover {
  background: #fff;
  color: #000;
}

.js-blog-carousel {
  margin-bottom: 0;
}

.blog-hero .slick-slider, .blog-hero .slick-initialized {
  margin-bottom: 0 !important;
}
.blog-hero .slick-dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}
.blog-hero .slick-dots li {
  margin: 0 6px;
  width: auto;
  height: auto;
}
.blog-hero .slick-dots li button {
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: none;
}
.blog-hero .slick-dots li button:before {
  display: none !important;
}
.blog-hero .slick-dots li.slick-active {
  background: none !important;
}
.blog-hero .slick-dots li.slick-active button {
  background: #fff;
  width: 45px;
  border-radius: 20px;
  border: 2px solid #fff;
}
.blog-hero .slick-prev-news, .blog-hero .slick-next-news {
  position: absolute;
  bottom: 38px;
  z-index: 10;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: opacity 0.3s;
  outline: none;
}
.blog-hero .slick-prev-news:hover, .blog-hero .slick-next-news:hover {
  opacity: 0.6;
}
.blog-hero .slick-prev-news {
  left: calc(50% - 130px);
}
.blog-hero .slick-next-news {
  right: calc(50% - 130px);
}

.blog-list {
  padding: 60px 0;
  background-color: #fff;
}

.blog-item {
  display: flex;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.blog-item__thumbnail {
  flex: 0 0 40%;
  overflow: hidden;
}
.blog-item__thumbnail a, .blog-item__thumbnail img {
  display: block;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-item__content {
  flex: 1;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-item__category a {
  color: #D01318;
  text-decoration: none;
  font-weight: 700;
}
.blog-item__separator {
  color: #999;
  font-size: 10px;
}
.blog-item__date {
  color: #999;
  font-weight: 400;
}
.blog-item__title {
  margin-bottom: 15px;
}
.blog-item__title a {
  font-size: 26px;
  line-height: 1.2;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  transition: color 0.3s;
}
.blog-item__title a:hover {
  color: #D01318;
}
.blog-item__excerpt {
  margin-bottom: 25px;
}
.blog-item__excerpt p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-item__btn {
  background: #000;
  color: #fff;
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}
.blog-item__btn:hover {
  background: #D01318;
}
@media (max-width: 991px) {
  .blog-item {
    flex-direction: column;
  }
  .blog-item__thumbnail {
    flex: 0 0 auto;
    height: 250px;
  }
  .blog-item__content {
    padding: 30px 20px;
  }
  .blog-item__title a {
    font-size: 22px;
  }
  .blog-item__btn {
    width: 100%;
    text-align: center;
  }
}

.blog-filters {
  background-color: #f2f2f2;
  padding: 20px 0;
}
.blog-filters__title-mobile {
  display: none;
}
.blog-filters__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.blog-filters__nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 35px;
}
.blog-filters__nav ul li {
  display: inline-block;
}
.blog-filters__nav ul li a {
  text-decoration: none;
  color: #666;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.blog-filters__nav ul li a:hover {
  color: #E30613;
}
.blog-filters__nav ul li.current-cat a {
  color: #E30613;
  font-weight: 700;
}
.blog-filters__search form {
  background: #fff;
  border-radius: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2px 15px;
  width: 350px;
  border: 1px solid #e0e0e0;
}
.blog-filters__search form input {
  border: none;
  outline: none;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  background: transparent;
}
.blog-filters__search form button {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
}
.blog-filters__search form button svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 991px) {
  .blog-filters {
    padding: 30px 0;
  }
  .blog-filters__title-mobile {
    display: block;
    text-align: left;
    color: #E30613;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 15px;
  }
  .blog-filters__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-filters__nav {
    width: 100%;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 20px;
    position: relative;
  }
  .blog-filters__nav ul {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 15px;
    width: 100%;
  }
  .blog-filters__nav ul::-webkit-scrollbar {
    display: none;
  }
  .blog-filters__search {
    width: 100%;
  }
  .blog-filters__search form {
    width: 100%;
    justify-content: flex-end;
  }
}

.post-details {
  padding-bottom: 60px;
  background: linear-gradient(to bottom, #f2f2f2 280px, #ffffff 280px);
}
.post-details__breadcrumb {
  padding: 65px 0 30px;
}
.post-details__breadcrumb p {
  font-size: 12px;
  color: #999;
  margin: 0;
}
.post-details__breadcrumb p a {
  text-decoration: none;
  color: #999;
  transition: color 0.3s;
}
.post-details__breadcrumb p a:hover {
  color: #D01318;
}
.post-details__banner {
  margin-bottom: 40px;
  position: relative;
}
.post-details__banner img {
  max-width: 930px;
  max-height: 300px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.post-details__banner .hide-mobile {
  display: block;
}
.post-details__banner .show-mobile {
  display: none;
}
.post-details__header {
  margin-bottom: 30px;
}
.post-details__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
}
.post-details__category a {
  color: #D01318;
  text-decoration: none;
  font-weight: 700;
}
.post-details__separator {
  color: #ccc;
  font-size: 10px;
}
.post-details__date {
  color: #999;
  font-weight: 400;
}
.post-details__title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: #222;
  margin: 0;
}
.post-details__content .container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.post-details__content .entry-content {
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
}
.post-details__content .entry-content img, .post-details__content .entry-content figure, .post-details__content .entry-content iframe, .post-details__content .entry-content video, .post-details__content .entry-content table {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.post-details__content .entry-content table {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}
.post-details__content .entry-content p, .post-details__content .entry-content h1, .post-details__content .entry-content h2, .post-details__content .entry-content h3, .post-details__content .entry-content h4, .post-details__content .entry-content ul, .post-details__content .entry-content ol {
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .post-details {
    background: #ffffff;
    padding-bottom: 40px;
  }
  .post-details__breadcrumb {
    padding: 15px 0;
  }
  .post-details__breadcrumb p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .post-details__banner {
    margin-bottom: 25px;
  }
  .post-details__banner img {
    max-height: none;
    border-radius: 15px;
  }
  .post-details__banner .hide-mobile {
    display: none;
  }
  .post-details__banner .show-mobile {
    display: block;
  }
  .post-details__title {
    font-size: 26px;
    line-height: 1.3;
  }
  .post-details__meta {
    font-size: 13px;
  }
  .post-details__content {
    padding: 0;
  }
  .post-details .container--narrow {
    padding: 0 20px;
    width: 100%;
  }
}

#ez-toc-container {
  font-family: "3DS-V2", sans-serif;
  background-color: #f8f8f8;
  border: none;
  border-left: 4px solid #D01318;
  border-radius: 6px;
  padding: 20px 24px 20px 20px;
  margin: 30px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: auto;
  max-width: 100%;
}
#ez-toc-container .ez-toc-title {
  font-family: "3DS-V2", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #D01318;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px 0;
  padding: 0;
}
#ez-toc-container .ez-toc-title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
#ez-toc-container .ez-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#ez-toc-container .ez-toc-list-level-1 > li {
  padding: 4px 0;
  border-bottom: 1px solid #ececec;
}
#ez-toc-container .ez-toc-list-level-1 > li:last-child {
  border-bottom: none;
}
#ez-toc-container .ez-toc-list-level-1 > li > a {
  font-family: "3DS-V2", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: color 0.2s ease;
}
#ez-toc-container .ez-toc-list-level-1 > li > a:hover {
  color: #D01318;
  text-decoration: none;
}
#ez-toc-container .ez-toc-list-level-3 {
  margin: 4px 0 4px 16px;
  padding: 0;
  list-style: none;
}
#ez-toc-container .ez-toc-list-level-3 > li {
  padding: 2px 0;
}
#ez-toc-container .ez-toc-list-level-3 > li > a {
  font-family: "3DS-V2", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  text-decoration: none;
  display: block;
  padding: 3px 0 3px 12px;
  border-left: 2px solid #e0e0e0;
  transition: color 0.2s ease, border-color 0.2s ease;
}
#ez-toc-container .ez-toc-list-level-3 > li > a:hover {
  color: #D01318;
  border-left-color: #D01318;
}
#ez-toc-container .ez-toc-title-toggle {
  color: #D01318;
  font-size: 14px;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.post-share__label {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}
.post-share__label strong {
  color: #D01318;
}
.post-share__links {
  display: flex;
  gap: 10px;
}
.post-share .share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
}
.post-share .share-icon svg {
  width: 31px;
  height: 31px;
  display: block;
}
.post-share .share-icon:hover {
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .post-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .post-share__links {
    flex-wrap: wrap;
  }
}

.related-content {
  padding: 80px 0;
  background-color: #F8F8F8;
}
.related-content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.related-content__title {
  font-size: 32px;
  color: #333;
  font-weight: 600;
  margin: 0;
}
.related-content__nav {
  display: flex !important;
  gap: 12px;
  align-items: center;
  position: relative;
}
.related-content__btn {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  margin: 0 !important;
  width: 44px;
  height: 44px;
  background-color: #FFF;
  border: 1px solid #D1D1D1;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
  padding: 0;
}
.related-content__btn:hover {
  background-color: #000;
  border-color: #000;
  color: #FFF;
}
.related-content__btn svg {
  display: block;
}
.related-content__slider {
  margin: 0 -15px;
  display: flex;
  overflow: hidden;
}
.related-content__slider.slick-initialized {
  display: block;
  overflow: visible;
}
.related-content__item {
  padding: 0 15px;
  outline: none;
}

.post-card {
  display: block;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-color: #000;
  transition: transform 0.3s ease;
}
.post-card__figure {
  margin: 0;
  position: relative;
  aspect-ratio: 1.1/1;
  overflow: hidden;
}
.post-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.post-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}
.post-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 2;
}
.post-card__date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  display: block;
}
.post-card__title {
  font-size: 18px;
  color: #FFF;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}
.post-card:hover .post-card__image {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .post-card__title {
    font-size: 16px;
  }
  .post-card__caption {
    padding: 15px;
  }
  .post-card .related-content {
    padding: 50px 0;
  }
  .post-card .related-content__title {
    font-size: 24px;
  }
  .post-card .related-content__header {
    margin-bottom: 25px;
  }
}

.category-page {
  background-color: #fcfcfc;
  padding-bottom: 80px;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}

.breadcrumb {
  padding: 20px 0;
  font-size: 13px;
  color: #999;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #999;
  text-decoration: none;
  transition: 0.3s;
}
.breadcrumb a:hover {
  color: #E31D1A;
}
.breadcrumb span {
  color: #ccc;
  margin: 0 5px;
}

.category-intro {
  margin-bottom: 40px;
  padding-top: 40px;
}
.category-intro__title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 10px 0 15px;
}
.category-intro__excerpt {
  color: #666;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.6;
}

.category-nav {
  background-color: #efefef;
  border-top: 1px solid #e0e0e0;
  margin-bottom: 50px;
  width: 100%;
}
.category-nav .container .category-nav__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.category-nav .container .category-nav__flex ul#menu-menu-blog {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.category-nav .container .category-nav__flex ul#menu-menu-blog li {
  display: block;
}
.category-nav .container .category-nav__flex ul#menu-menu-blog li a {
  text-decoration: none;
  color: #666;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 20px 0;
  display: block;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}
.category-nav .container .category-nav__flex ul#menu-menu-blog li:hover a, .category-nav .container .category-nav__flex ul#menu-menu-blog li.current-menu-item a {
  color: #E31D1A;
  border-bottom-color: #E31D1A;
}
.category-nav .container .category-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 25px;
  padding: 0 20px;
  width: 320px;
  height: 40px;
  box-sizing: border-box;
}
.category-nav .container .category-search input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  background: transparent;
  color: #333;
  height: 100%;
}
.category-nav .container .category-search button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.post-item {
  display: flex;
  gap: 50px;
  background: #FFF;
  padding: 40px;
  border-radius: 30px;
  margin-bottom: 40px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.post-item__image {
  flex: 0 0 45%;
  max-width: 45%;
}
.post-item__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.post-item__content {
  flex: 1;
  min-width: 0;
}
.post-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 15px;
}
.post-item__meta .post-item__cat {
  color: #E31D1A;
  font-weight: 700;
}
.post-item__meta .post-item__sep {
  color: #ddd;
}
.post-item__meta .post-item__date {
  color: #999;
}
.post-item__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  word-wrap: break-word;
}
.post-item__title a {
  color: #1a1a1a;
  text-decoration: none;
}
.post-item__excerpt {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}
.post-item__excerpt p {
  margin: 0;
}
.post-item__btn {
  display: inline-block;
  background: #000;
  color: #FFF;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  white-space: nowrap;
}
.post-item__btn:hover {
  background: #E31D1A;
}
.post-item .more-link {
  display: none;
}

@media (max-width: 992px) {
  .category-intro__title {
    font-size: 36px;
  }
  .category-nav .container .category-nav__flex {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .category-nav .container .category-nav__flex ul#menu-menu-blog {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .category-nav .container .category-nav__flex ul#menu-menu-blog li a {
    padding: 10px 0;
  }
  .post-item {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    align-items: stretch;
  }
  .post-item__image {
    width: 100%;
    max-width: 100%;
    flex: none;
  }
  .post-item__content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .category-intro__title {
    font-size: 28px;
  }
  .category-search {
    width: 100%;
    max-width: 100%;
  }
  .post-item {
    padding: 20px;
  }
  .post-item__title {
    font-size: 22px;
  }
  .post-item__btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}/*# sourceMappingURL=blog.css.map */