.news-page-shell {
  padding-top: 56px;
  padding-bottom: 72px;
}

.blog-archive-shell {
  display: block;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
  border-color: rgba(59, 130, 246, 0.24);
}

.blog-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eef4fb;
}

.blog-card-image img,
.blog-card-image .blog-card-image-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.blog-card-meta,
.blog-single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.blog-card-meta a,
.blog-single-meta a {
  color: #0f766e;
}

.blog-card-dot {
  color: #94a3b8;
}

.blog-card-title,
.blog-single-title {
  margin: 0;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.blog-card-title {
  font-size: 1.5rem;
  line-height: 1.3;
}

.blog-card-title a {
  color: inherit;
}

.blog-card-excerpt {
  margin: 14px 0 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.85;
}

.blog-card-link {
  margin-top: auto;
  padding-top: 18px;
  color: #0f62fe;
  font-weight: 700;
}

.blog-card-link:hover,
.blog-card-title a:hover,
.blog-single-meta a:hover {
  color: #0847b5;
}

.blog-pagination-wrapper {
  margin-top: 36px;
}

.blog-empty-state {
  padding: 48px 36px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fff;
  text-align: center;
}

.blog-single-article {
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.blog-single-header {
  margin-bottom: 26px;
}

.blog-single-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}

.blog-single-media {
  margin: 0 0 32px;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
}

.blog-single-media img,
.blog-single-featured-image {
  display: block;
  width: 100%;
  height: auto;
}

.blog-single-content {
  color: #334155;
  font-size: 1.06rem;
  line-height: 1.95;
}

.blog-single-content > *:first-child {
  margin-top: 0;
}

.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4 {
  margin-top: 2.1em;
  margin-bottom: .75em;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.blog-single-content h2 {
  font-size: 1.75rem;
}

.blog-single-content h3 {
  font-size: 1.35rem;
}

.blog-single-content p,
.blog-single-content ul,
.blog-single-content ol,
.blog-single-content blockquote,
.blog-single-content table {
  margin-bottom: 1.2em;
}

.blog-single-content ul,
.blog-single-content ol {
  padding-left: 1.35rem;
}

.blog-single-content img {
  width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 20px;
}

.blog-single-content table {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 18px;
}

.blog-single-content table th,
.blog-single-content table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.blog-single-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.blog-sidebar .sidebar-widget {
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.blog-sidebar .sidebar-title h2 {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
}

.blog-sidebar .thumb-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.blog-sidebar .thumb-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-sidebar .thumb img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 16px;
}

.blog-sidebar .thumb-list-item-title {
  margin: 0;
  font-size: .98rem;
  line-height: 1.45;
}

.blog-sidebar .thumb-list-item-title a {
  color: #0f172a;
}

.blog-sidebar .thumb-list .cate a {
  color: #0f766e;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.blog-sidebar .widget_search .input-group {
  padding: 6px 8px;
  border-color: rgba(148, 163, 184, 0.28) !important;
  border-radius: 18px !important;
}

.blog-sidebar .widget_search input {
  min-height: 48px;
}

@media (max-width: 1199.98px) {
  .blog-card-grid {
    gap: 22px;
  }
}

@media (max-width: 991.98px) {
  .news-page-shell {
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-single-article {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .blog-card-content,
  .blog-single-article,
  .blog-sidebar .sidebar-widget {
    padding: 20px;
  }

  .blog-single-title {
    font-size: 2rem;
  }

  .blog-single-content {
    font-size: 1rem;
    line-height: 1.82;
  }

  .blog-single-footer {
    align-items: flex-start;
  }
}

.blog-hero {
  position: relative;
  margin: 0 0 18px;
  padding: 68px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.14), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #eef7ff 48%, #f8fffc 100%);
  overflow: hidden;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -42px;
  height: 84px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #ffffff 100%);
}

.blog-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.blog-hero__eyebrow,
.blog-related-kicker,
.blog-single-intro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 98, 254, 0.08);
  color: #0f62fe;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-hero__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.blog-hero__subtitle,
.blog-hero__meta,
.blog-hero__back a {
  color: #476075;
}

.blog-hero__subtitle {
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.85;
}

.blog-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.blog-hero__meta a,
.blog-hero__back a {
  color: #0f766e;
  font-weight: 700;
}

.blog-single-intro-card {
  margin: 0 0 28px;
  padding: 22px 24px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(248, 252, 255, 1) 0%, rgba(238, 247, 255, 1) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.blog-single-intro-card p {
  margin: 0;
  color: #254055;
  font-size: 1.03rem;
  line-height: 1.9;
}

.blog-single-content > p:first-of-type {
  font-size: 1.18rem;
  line-height: 1.95;
  color: #20364a;
}

.blog-single-content a {
  color: #0f62fe;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(15, 98, 254, 0.22);
  text-underline-offset: 3px;
}

.blog-single-content strong {
  color: #0f172a;
  font-weight: 800;
}

.blog-single-content ul,
.blog-single-content ol {
  padding-left: 0;
  list-style: none;
}

.blog-single-content ul li,
.blog-single-content ol li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 30px;
}

.blog-single-content ul li::before,
.blog-single-content ol li::before {
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f62fe 0%, #0f9b8e 100%);
  box-shadow: 0 0 0 6px rgba(15, 98, 254, 0.08);
  content: "";
}

.blog-single-content ol {
  counter-reset: blog-counter;
}

.blog-single-content ol li::before {
  top: 0.15em;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: none;
  counter-increment: blog-counter;
  content: counter(blog-counter);
}

.blog-single-content blockquote,
.blog-single-content .alert {
  margin: 28px 0;
  padding: 22px 24px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-left: 5px solid #0f766e;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(247, 255, 252, 1) 0%, rgba(241, 250, 249, 1) 100%);
  color: #1f3b4d;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.blog-single-content hr {
  margin: 34px 0;
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
}

.blog-single-content img {
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.blog-related-posts {
  margin-top: 44px;
  padding-top: 10px;
}

.blog-related-heading {
  margin-bottom: 20px;
}

.blog-related-heading h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-related-card {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.blog-related-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef4fb;
}

.blog-related-card-image img,
.blog-related-card-image .blog-related-card-image-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-related-card-content {
  padding: 20px;
}

.blog-related-card-content h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.blog-related-card-content h4 a {
  color: #0f172a;
  text-decoration: none;
}

.blog-related-card-content p {
  margin: 0;
  color: #536579;
  line-height: 1.8;
}

.tags .tag-item,
.share-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px 8px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f8fbff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

@media (max-width: 991.98px) {
  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    padding-top: 54px;
  }
}

@media (max-width: 767.98px) {
  .blog-single-article {
    padding: 20px;
    border-radius: 22px;
  }


  .blog-single-title {
    font-size: 1.8rem;
  }

  .blog-single-content {
    font-size: 1rem;
    line-height: 1.85;
  }

  .blog-single-content > p:first-of-type {
    font-size: 1.08rem;
  }

  .blog-single-intro-card,
  .blog-single-content blockquote,
  .blog-single-content .alert {
    padding: 18px;
    border-radius: 18px;
  }
}


.blog-single-content .section-intro {
  font-size: 1.12rem;
  line-height: 1.95;
  color: #183247;
}

.blog-single-content .editorial-grid,
.blog-single-content .two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin: 24px 0 0;
}

.blog-single-content .editorial-grid--balanced {
  align-items: stretch;
}

.blog-single-content .image-left,
.blog-single-content .image-right,
.blog-single-content .editorial-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 28px;
  align-items: center;
  margin: 24px 0 0;
}

.blog-single-content .image-left {
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
}

.blog-single-content .content-card,
.blog-single-content .info-card,
.blog-single-content .callout {
  height: 100%;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.blog-single-content .content-card--contrast {
  background: linear-gradient(180deg, #f4faff 0%, #eef8f3 100%);
}

.blog-single-content .content-card h3,
.blog-single-content .info-card h3,
.blog-single-content .callout h3 {
  margin-top: 0;
}

.blog-single-content .image-placeholder {
  overflow: hidden;
  border-radius: 24px;
  background: #eef4fb;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
  margin-bottom: 18px;
}

.blog-single-content .image-placeholder.is-tall {
  aspect-ratio: 4 / 5;
}

.blog-single-content .image-placeholder.is-wide {
  aspect-ratio: 16 / 10;
}

.blog-single-content .image-placeholder.is-square {
  aspect-ratio: 1 / 1;
}

.blog-single-content .image-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.blog-single-content .two-column .image-placeholder:last-child,
.blog-single-content .editorial-grid .image-placeholder:last-child {
  margin-bottom: 0;
}

.blog-single-content .callout {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(247, 255, 252, 1) 0%, rgba(241, 250, 249, 1) 100%);
  border-left: 5px solid #0f766e;
}

.blog-single-content .info-card p:last-child,
.blog-single-content .content-card p:last-child,
.blog-single-content .callout p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .blog-single-content .editorial-grid,
  .blog-single-content .two-column,
  .blog-single-content .image-left,
  .blog-single-content .image-right,
  .blog-single-content .editorial-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .blog-single-content .content-card,
  .blog-single-content .info-card,
  .blog-single-content .callout {
    padding: 18px;
    border-radius: 18px;
  }

  .blog-single-content .image-placeholder {
    border-radius: 18px;
  }
}
/* END SOSUAVILLAS_EDITORIAL_LAYOUT_20260331 */

/* SOSUAVILLAS RELATED SLIDER 2026-03-31 */
.page-template-content--news-single {
  position: relative;
  z-index: 1;
  padding-bottom: 44px;
}
.page-template-content--news-single .news-page-shell {
  padding-bottom: 116px;
}
.page-template-content--news-single .row {
  align-items: flex-start;
  row-gap: 36px;
}
.page-template-content--news-single .blog-single-article {
  position: relative;
  z-index: 2;
}
.page-template-content--news-single .blog-single-footer {
  margin-top: 42px;
}
.page-template-content--news-single + .bc_footer {
  margin-top: 0 !important;
}
.blog-related-slider-section {
  position: relative;
  margin-top: 52px;
  padding: 28px;
  border: 1px solid rgba(148,163,184,.20);
  border-radius: 28px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 46%, #f7fffd 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 22px 52px rgba(15,23,42,.08);
  overflow: hidden;
}
.blog-related-slider-section::before {
  content: "";
  position: absolute;
  left: -56px;
  bottom: -92px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(14,165,164,.08);
  filter: blur(8px);
  pointer-events: none;
}
.blog-related-slider-section .blog-related-shell {
  position: relative;
  z-index: 1;
}
.blog-related-slider-section .blog-related-header {
  gap: 18px;
  margin-bottom: 22px;
}
.blog-related-slider-section .blog-related-kicker {
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
  color: #0f766e;
}
.blog-related-slider-section h3 {
  margin: 0;
  color: #0f172a;
}
.blog-related-slider-section .blog-related-subtitle {
  margin: 8px 0 0;
  max-width: 620px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}
.blog-related-slider-section .blog-related-slider-hint {
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.blog-related-slider-section .u-slick {
  margin: 0 -8px;
  padding-top: 6px;
}
.blog-related-slider-section .js-slide {
  padding: 0 8px 10px;
  height: auto;
}
.blog-related-slider-section .blog-related-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(226,232,240,.92);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(15,23,42,.08);
}
.blog-related-slider-section .blog-related-card-image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #eff4f9;
}
.blog-related-slider-section .blog-related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-related-slider-section .blog-related-card-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 16px 18px 18px;
}
.blog-related-slider-section .blog-card-meta {
  margin-bottom: 8px;
}
.blog-related-slider-section .blog-card-meta span {
  color: #0f766e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-related-slider-section .blog-related-card-content h4 {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.4;
  min-height: 2.8em;
}
.blog-related-slider-section .blog-related-card-content h4 a {
  color: #0f172a;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-related-slider-section .blog-related-card-content p {
  display: none;
}
.blog-related-slider-section .blog-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.blog-related-slider-section .blog-card-link:hover {
  background: #0f766e;
  color: #fff;
  transform: translateY(-1px);
}
.blog-related-slider-section .blog-related-arrow {
  width: 42px;
  height: 42px;
  top: -58px;
  border: 1px solid #dbe5ef;
}
.blog-related-slider-section .blog-related-arrow-left {
  left: auto;
  right: 52px;
}
.blog-related-slider-section .blog-related-arrow-right {
  right: 0;
}
@media (max-width: 1199.98px) {
  .page-template-content--news-single .news-page-shell {
    padding-bottom: 96px;
  }
  .blog-related-slider-section .blog-related-slider-hint {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .page-template-content--news-single {
    padding-bottom: 28px;
  }
  .page-template-content--news-single .news-page-shell {
    padding-bottom: 84px;
  }
  .blog-related-slider-section {
    margin-top: 42px;
    padding: 22px 18px;
    border-radius: 24px;
  }
  .blog-related-slider-section .u-slick {
    margin: 0 -6px;
    padding-top: 0;
  }
  .blog-related-slider-section .js-slide {
    padding: 0 6px 10px;
  }
}
@media (max-width: 767.98px) {
  .page-template-content--news-single .news-page-shell {
    padding-bottom: 72px;
  }
  .blog-related-slider-section .blog-related-subtitle {
    font-size: 14px;
  }
  .blog-related-slider-section .blog-related-card-content {
    padding: 15px 16px 16px;
  }
  .blog-related-slider-section .blog-related-card-content h4 {
    min-height: 0;
  }
}
