/* ============================================================
   Blog Kothe — hero com carrossel sincronizado + cards
   Guia de design v1.1 (Attila Martins). Cores: #008aff / #194e82
   ============================================================ */

.blog-hero,
.blog-hero *,
.blog-card,
.blog-card * {
  font-family: "Montserrat", "Segoe UI", system-ui, sans-serif;
}

.blog-hero .elementor-widget,
.blog-card .elementor-widget {
  margin-block-end: 0;
}

/* ---------- Hero (wrapper na página) ---------- */
.blog-hero {
  position: relative;
  background: #008aff;
  overflow: hidden;
}

/* ---------- Item do destaque (listing hero-destaque) ---------- */
.blog-hero__item {
  position: relative;
  isolation: isolate;
  height: max(80vh, 720px);     /* altura FIXA: título longo cresce para cima, carrossel não se move */
  min-height: 0 !important;
  padding-top: 120px;           /* header do site é absoluto e transparente */
  color: #fff;
  overflow: hidden;
}

/* camadas de foto trocadas pelo JS (crossfade) */
.blog-hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.blog-hero__slide.is-in { opacity: 1; }

/* escurecimento 45% + degradê azul na base */
.blog-hero__item::before,
.blog-hero__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.blog-hero__item::before { background: rgba(0, 0, 0, 0.45); }
.blog-hero__item::after  { background: linear-gradient(to top, #008aff 0%, rgba(0, 138, 255, 0) 70%); }

.blog-hero__inner { position: relative; z-index: 2; }

.blog-hero__content {
  transition: opacity 0.25s ease;
}

.blog-hero__badge .jet-listing-dynamic-terms__link,
.blog-card__badge .jet-listing-dynamic-terms__link {
  display: inline-block;
  background: #008aff;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  line-height: 1.6;
}
.blog-hero__badge .jet-listing-dynamic-terms__link { font-size: 0.65rem; padding: 0.2rem 0.6rem; }
.blog-card__badge .jet-listing-dynamic-terms__link { font-size: 0.6rem;  padding: 0.15rem 0.5rem; letter-spacing: 0.06em; }

.blog-hero__date .jet-listing-dynamic-field__content,
.blog-card__date .jet-listing-dynamic-field__content {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-transform: capitalize;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.blog-hero__date .jet-listing-dynamic-field__content { font-size: 0.75rem; }
.blog-card__date .jet-listing-dynamic-field__content { font-size: 0.65rem; opacity: 0.9; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6); }

.blog-hero__title .jet-listing-dynamic-field__content {
  font-size: clamp(2rem, 2.8vw, 3.2rem);   /* grid de 920px: até 2 linhas na maioria dos títulos */
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 3;                    /* teto: nunca passa de 3 linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.blog-hero__desc .jet-listing-dynamic-field__content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
}

.blog-hero__btn .jet-listing-dynamic-link__link {
  display: inline-block;
  background: #fff;
  color: #008aff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.blog-hero__btn .jet-listing-dynamic-link__link:hover {
  background: #194e82;
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

/* ---------- Carrossel (container absoluto na base do hero) ---------- */
.blog-hero__carousel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  z-index: 3;
}

.blog-hero__carousel .jet-listing-grid__slider.swiper-lib {
  padding: 20px 12.5% !important;   /* 3 slides centrais + meio card em cada ponta */
  overflow: hidden;
}

/* gap entre cards: controle horizontal_gap do widget (28px desktop / 12px mobile) */

/* pontas cortadas: máscara transparente → preto, sem hover */
.blog-hero__carousel .swiper-slide:has(+ .swiper-slide-prev) .blog-card,
.blog-hero__carousel .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next):has(+ .swiper-slide-active) .blog-card {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.55) 55%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.55) 55%, #000 100%);
  pointer-events: none;
}
.blog-hero__carousel .swiper-slide-next + .swiper-slide .blog-card,
.blog-hero__carousel .swiper-slide-active + .swiper-slide:not(.swiper-slide-next) .blog-card {
  -webkit-mask-image: linear-gradient(to left, transparent 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.55) 55%, #000 100%);
  mask-image: linear-gradient(to left, transparent 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.55) 55%, #000 100%);
  pointer-events: none;
}

/* card ativo (central) */
.blog-hero__carousel .swiper-slide-active .blog-card {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(0, 138, 255, 0.55), 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* setas: sem círculo, sobre os cards */
.blog-hero__carousel .jet-listing-grid__slider-icon.swiper-arrow {
  width: 44px;
  height: 44px;
  margin-top: -22px;
  background: transparent;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: color 0.2s;
}
.blog-hero__carousel .jet-listing-grid__slider-icon.swiper-arrow:hover { color: #cfe6ff; }
.blog-hero__carousel .jet-listing-grid__slider-icon.swiper-arrow svg { height: 36px; }
.blog-hero__carousel .jet-listing-grid__slider-icon.swiper-arrow.prev-arrow { left: 1.2rem; }
.blog-hero__carousel .jet-listing-grid__slider-icon.swiper-arrow.next-arrow { right: 1.2rem; }

/* ---------- Card do carrossel (listing card-carrossel) ---------- */
.blog-card {
  position: relative;
  isolation: isolate;
  display: flex;
  height: 230px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  outline: 2px solid transparent;
  outline-offset: -2px;
}

/* degradê preto multiply para contraste do título */
.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 55%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* sobreposição do hover */
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  transition: background 0.25s ease;
  pointer-events: none;
}

.blog-card > .elementor-element,
.blog-card > .e-con {
  position: relative;
  z-index: 2;
  transition: opacity 0.25s ease;
}

.blog-card__title .jet-listing-dynamic-field__content {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.blog-card__desc { display: none; } /* fonte do JS para o hero */

.blog-card__read {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3 !important;
  width: auto !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  white-space: nowrap;
}
.blog-card__read .elementor-heading-title {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}

.blog-card:hover { outline-color: #fff; }
.blog-card:hover::before { background: #194e82; }
.blog-card:hover > .e-con,
.blog-card:hover > .elementor-widget:not(.blog-card__read) { opacity: 0; visibility: hidden; }
.blog-card:hover .blog-card__read { opacity: 1; visibility: visible; }

/* ---------- Responsivo ---------- */
@media (max-width: 767px) {
  .blog-hero__item { height: auto; min-height: 640px !important; padding-top: 90px; } /* no celular o hero cresce com o texto */
  .blog-hero__title .jet-listing-dynamic-field__content { font-size: 2rem; }
  .blog-hero__desc .jet-listing-dynamic-field__content { font-size: 0.9rem; }
  .blog-hero__carousel { bottom: 1.5rem; }
  .blog-hero__carousel .jet-listing-grid__slider.swiper-lib { padding: 20px 19% !important; } /* card = 62% da tela */
  /* com 1 slide por vez, as pontas visíveis são o prev e o next */
  .blog-hero__carousel .swiper-slide-prev .blog-card {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.55) 55%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.55) 55%, #000 100%);
    pointer-events: none;
  }
  .blog-hero__carousel .swiper-slide-next .blog-card {
    -webkit-mask-image: linear-gradient(to left, transparent 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.55) 55%, #000 100%);
    mask-image: linear-gradient(to left, transparent 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.55) 55%, #000 100%);
    pointer-events: none;
  }
  .blog-hero__carousel .jet-listing-grid__slider-icon.swiper-arrow svg { height: 28px; }
  .blog-hero__carousel .jet-listing-grid__slider-icon.swiper-arrow.prev-arrow { left: 0.3rem; }
  .blog-hero__carousel .jet-listing-grid__slider-icon.swiper-arrow.next-arrow { right: 0.3rem; }
}

/* ============================================================
   Mais posts — grid + sidebar (busca e categorias) + paginação
   ============================================================ */
.blog-posts,
.blog-posts *,
.blog-grid-card,
.blog-grid-card * {
  font-family: "Montserrat", "Segoe UI", system-ui, sans-serif;
}
.blog-posts .elementor-widget,
.blog-grid-card .elementor-widget { margin-block-end: 0; }

.blog-posts__title .elementor-heading-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #194e82;
  margin: 0;
}

.blog-posts__col { flex: 1 1 0; min-width: 0; }
.blog-sidebar { position: sticky; top: 90px; flex: 0 0 340px; }

/* card do grid */
.blog-posts__grid .jet-listing-grid__item > .elementor { height: 100%; }
.blog-grid-card {
  height: 100%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.blog-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  border-color: #008aff !important;
}
.blog-grid-card__img .jet-listing-dynamic-image__figure { margin: 0; }
.blog-grid-card__img img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.blog-grid-card__body { flex: 1 1 auto; }
.blog-grid-card__badge .jet-listing-dynamic-terms__link {
  display: inline-block;
  background: #008aff;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  line-height: 1.6;
}
.blog-grid-card__date .jet-listing-dynamic-field__content {
  font-size: 0.72rem;
  color: #999;
  text-transform: capitalize;
}
.blog-grid-card__title .elementor-heading-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
.blog-grid-card__title .elementor-heading-title a { color: #222; }
.blog-grid-card__title .elementor-heading-title a:hover { color: #008aff; }
.blog-grid-card__desc .jet-listing-dynamic-field__content {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-grid-card__desc { flex: 1 1 auto; }
.blog-grid-card__read .jet-listing-dynamic-link__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #008aff;
  text-decoration: none;
}
.blog-grid-card__read .jet-listing-dynamic-link__link:hover { color: #194e82; }

/* sidebar: caixas */
.blog-sidebar__box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.blog-sidebar__search { padding: 0 !important; transition: border-color 0.2s, box-shadow 0.2s; }
.blog-sidebar__search:focus-within {
  border-color: #008aff;
  box-shadow: 0 0 0 3px rgba(0, 138, 255, 0.15), 0 4px 14px rgba(0, 0, 0, 0.06);
}
.blog-sidebar__search .jet-search-filter__input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  color: #333;
  padding: 0.8rem 1.4rem;
}
.blog-sidebar__search .jet-search-filter__input::placeholder { color: #aaa; }
.blog-sidebar__search .jet-search-filter__input-clear { right: 1rem; }

.blog-sidebar__cats { padding: 1.2rem 1.4rem !important; }
.blog-sidebar__title .elementor-heading-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #194e82;
  margin: 0 0 0.6rem;
}
.blog-cats .jet-radio-list__row { border-bottom: 1px solid #f4f4f4; }
.blog-cats .jet-radio-list__row:last-child { border-bottom: 0; }
.blog-cats .jet-radio-list__item { display: block; }
.blog-cats .jet-radio-list__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  transition: color 0.2s;
}
.blog-cats .jet-radio-list__label:hover { color: #008aff; }
.blog-cats .jet-radio-list__input:checked ~ .jet-radio-list__label,
.blog-cats .jet-radio-list__input:checked + .jet-radio-list__decorator + .jet-radio-list__label {
  color: #008aff;
  font-weight: 700;
}
.blog-cats .jet-radio-list__decorator { display: none; }
.blog-cats .jet-filters-counter {
  font-size: 0.75rem;
  font-weight: 600;
  background: #008aff;
  color: #fff;
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
  margin-left: 0.5rem;
}
.blog-cats .jet-filters-counter::before,
.blog-cats .jet-filters-counter::after { content: none; }

/* paginação */
.blog-posts__pagination .jet-filters-pagination { display: flex; justify-content: center; gap: 0.5rem; }
.blog-posts__pagination .jet-filters-pagination__item {
  margin: 0;
}
.blog-posts__pagination .jet-filters-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.6rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #444;
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.blog-posts__pagination .jet-filters-pagination__item:not(.jet-filters-pagination__current):not(.jet-filters-pagination__disabled) .jet-filters-pagination__link:hover {
  border-color: #008aff;
  color: #008aff;
}
.blog-posts__pagination .jet-filters-pagination__current .jet-filters-pagination__link {
  background: #008aff;
  border-color: #008aff;
  color: #fff;
}
.blog-posts__pagination .jet-filters-pagination__disabled .jet-filters-pagination__link { opacity: 0.4; cursor: default; }
.blog-posts__pagination .jet-filters-pagination__dots { align-self: center; color: #999; }

/* loader do JetEngine durante o AJAX */
.blog-posts__grid .jet-listing-grid--loading { opacity: 0.5; }

@media (max-width: 1024px) {
  .blog-posts__layout { flex-wrap: wrap; }
  .blog-sidebar { position: static; flex: 1 1 100%; order: -1; }
}
@media (max-width: 767px) {
  .blog-posts { padding-left: 16px !important; padding-right: 16px !important; }
}

/* ============================================================
   Post individual (template Single do Theme Builder)
   ============================================================ */
.post-hero, .post-hero *, .post-body, .post-body *, .post-related, .post-related * {
  font-family: "Montserrat", "Segoe UI", system-ui, sans-serif;
}
.post-hero .elementor-widget, .post-body .elementor-widget:not(.post-content), .post-related .elementor-widget { margin-block-end: 0; }

.post-hero {
  position: relative;
  isolation: isolate;
  min-height: max(50vh, 420px);
  color: #fff;
}
.post-hero::before, .post-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.post-hero::before { background: rgba(0, 0, 0, 0.45); }
.post-hero::after  { background: linear-gradient(to top, #008aff 0%, rgba(0, 138, 255, 0) 70%); }
.post-hero__inner { position: relative; z-index: 2; }

.post-hero__badge .jet-listing-dynamic-terms__link {
  display: inline-block; background: #008aff; color: #fff;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem; border-radius: 999px; line-height: 1.6;
}
.post-hero__date .jet-listing-dynamic-field__content,
.post-hero__author .elementor-heading-title {
  font-size: 0.85rem; font-weight: 600; color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35); margin: 0;
}
.post-hero__date .jet-listing-dynamic-field__content { text-transform: capitalize; }
.post-hero__title .elementor-heading-title {
  font-size: clamp(1.9rem, 2.6vw, 2.8rem); font-weight: 800; line-height: 1.15; color: #fff; margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.post-hero__intro .jet-listing-dynamic-field__content {
  font-size: 1.05rem; line-height: 1.6; color: rgba(255, 255, 255, 0.92); max-width: 720px; margin: 0;
}

/* "Voltar para o início" */
.post-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #fff; text-decoration: none; font-weight: 600; font-size: 0.8rem;
}
.post-back__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff; font-size: 0.95rem; line-height: 1; backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
}
.post-back:hover .post-back__badge { background: #194e82; transform: translateX(-3px); }
.post-hero__back .post-back, .post-hero__back .post-back:hover { color: #fff; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35); }
.post-back--bottom .post-back, .post-back--bottom .post-back:hover { color: #194e82; }
.post-back--bottom .post-back__badge { background: #194e82; border-color: #194e82; }
.post-back--bottom .post-back:hover .post-back__badge { background: #008aff; border-color: transparent; }

/* corpo do artigo */
.post-main { flex: 1 1 0; min-width: 0; }
.post-content { font-size: 1.05rem; line-height: 1.75; color: #333; }
.post-content p { margin: 0 0 1.2rem; }
.post-content h2 {
  font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: #194e82; margin: 2rem 0 0.5rem;
}
.post-content h3 { font-size: 1.05rem; font-weight: 700; color: #194e82; margin: 1.6rem 0 0.4rem; }
.post-content strong { font-weight: 600; }
.post-content figure, .post-content .wp-block-image { margin: 1.8rem 0; }
.post-content figure img, .post-content img { width: 100%; height: auto; border-radius: 10px; display: block; }
.post-content figcaption { font-size: 0.8rem; color: #888; text-align: center; margin-top: 0.5rem; }
.post-content blockquote {
  margin: 1.5rem 0; padding: 1.2rem 1.5rem; background: #194e82; border-radius: 12px; border: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12); color: #fff; font-style: italic;
}
.post-content blockquote p { margin: 0; color: #fff; }
.post-content ul, .post-content ol { margin: 1rem 0 1.2rem; padding-left: 1.5rem; }
.post-content li { margin-bottom: 0.45rem; }
.post-content a { color: #008aff; }
.post-content a:hover { color: #194e82; }

/* sidebar estática (shortcode) */
.blog-sidebar__static { display: flex; flex-direction: column; gap: 24px; }
.blog-search-form { margin: 0; }
.blog-sidebar__heading {
  font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: #194e82; margin: 0 0 0.6rem;
}
.blog-cats-list { list-style: none; margin: 0; padding: 0; }
.blog-cats-list li { border-bottom: 1px solid #f4f4f4; }
.blog-cats-list li:last-child { border-bottom: 0; }
.blog-cats-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.45rem 0; font-size: 0.9rem; color: #333; text-decoration: none; transition: color 0.2s;
}
.blog-cats-list a:hover { color: #008aff; }
.blog-cats-list .jet-filters-counter {
  font-size: 0.75rem; font-weight: 600; background: #008aff; color: #fff;
  border-radius: 999px; padding: 0.1rem 0.55rem; margin-left: 0.5rem;
}

/* relacionados */
.post-related { border-top: 1px solid #eee; }
.post-related__title .elementor-heading-title {
  font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #194e82; margin: 0;
}
.post-related__slider .jet-listing-grid__item > .elementor { height: 100%; }
.post-related__slider .jet-listing-grid__slider.swiper-lib { padding: 12px 0 !important; }
.post-related__slider .blog-grid-card__desc .jet-listing-dynamic-field__content { -webkit-line-clamp: 2; }
.post-related__slider .jet-listing-grid__slider-icon.swiper-arrow {
  width: 44px; height: 44px; margin-top: -22px; border-radius: 50%;
  background: #fff; border: 1px solid #008aff; color: #008aff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14); transition: all 0.2s;
}
.post-related__slider .jet-listing-grid__slider-icon.swiper-arrow svg { height: 18px; }
.post-related__slider .jet-listing-grid__slider-icon.swiper-arrow:hover { border-color: #194e82; color: #194e82; }
.post-related__slider .jet-listing-grid__slider-icon.swiper-arrow.prev-arrow { left: -10px; }
.post-related__slider .jet-listing-grid__slider-icon.swiper-arrow.next-arrow { right: -10px; }
.post-related__slider .jet-listing-grid__slider-icon.swiper-arrow.swiper-button-disabled { opacity: 0.35; pointer-events: none; }

@media (max-width: 1024px) {
  .post-body { flex-wrap: wrap; }
  .post-body .blog-sidebar { position: static; flex: 1 1 100%; order: 1; }
}
@media (max-width: 767px) {
  .post-hero { padding-top: 110px !important; padding-bottom: 32px !important; }
  .post-body, .post-related { padding-left: 16px !important; padding-right: 16px !important; }
  .post-related__slider .jet-listing-grid__slider-icon.swiper-arrow { width: 34px; height: 34px; margin-top: -17px; }
  .post-related__slider .jet-listing-grid__slider-icon.swiper-arrow.prev-arrow { left: 6px; }
  .post-related__slider .jet-listing-grid__slider-icon.swiper-arrow.next-arrow { right: 6px; }
}
