:root {
  --purple: #2c2490;
  --purple-2: #3f32ad;
  --purple-soft: #403d96;
  --blue-bg: #dfe7f7;
  --white: #ffffff;
  --text-dark: #111827;
  --text-soft: #6e707a;
  --gold: #ffb22b;
  --footer: #2c2490;
  --max: 900px;
  --max-wide: 1180px;
  --shadow-soft: 0 18px 38px rgba(22, 28, 55, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  width: 100%;
}

button {
  border: 0;
  font-family: inherit;
}

.blog-container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ============================= */
/* HEADER */
/* ============================= */

.site-header {
  width: 100%;
  min-height: 74px;
  padding: 0 12%;
  display: grid;
  grid-template-columns: 230px 1fr 150px;
  align-items: center;
  gap: 28px;
  background: linear-gradient(90deg, #2b257f 0%, #4334b3 48%, #2a257e 100%);
  color: var(--white);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-self: start;
  color: var(--white);
}

.brand-name {
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.brand-subtitle {
  margin-top: 5px;
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.nav-link {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  transform: translateY(-1px);
  font-weight: 800;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-button {
  justify-self: end;
  min-width: 126px;
  height: 28px;
  padding: 0 18px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  color: #29215f;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

/* ============================= */
/* HERO BLOG */
/* ============================= */

.blog-hero {
  position: relative;
  background: linear-gradient(180deg, #2c2490 0%, #352ba5 100%);
  color: #ffffff;
  padding: 48px 0 166px;
  overflow: visible;
}

.blog-hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.blog-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.9rem, 4.3vw, 4.45rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.018em;
}

/* ============================= */
/* TÍTULOS CONTROLADOS */
/* ============================= */

.two-line-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 900;
  letter-spacing: 0.005em;
}

.two-line-title span {
  display: block;
  white-space: nowrap;
}

/* ============================= */
/* BLOG DESTACADO */
/* ============================= */

.featured-blog-section {
  position: relative;
  z-index: 5;
  margin-top: -136px;
  padding-bottom: 54px;
  background: transparent;
}

.featured-blog-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 136px;
  bottom: 0;
  z-index: -1;
  background: #ffffff;
}

.featured-blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 26px;
  align-items: start;
}

.main-post {
  display: grid;
  gap: 18px;
}

.main-post-image {
  overflow: hidden;
  border-radius: 10px;
  background: #edf2fb;
  box-shadow: var(--shadow-soft);
}

.main-post-image img {
  width: 100%;
  height: 328px;
  object-fit: cover;
  object-position: center;
}

.main-post-content {
  padding-left: 4px;
}

.main-title {
  max-width: 640px;
  color: #111827;
  font-size: clamp(1.78rem, 2vw, 2.05rem);
  line-height: 1.08;
}

.main-post-content p {
  max-width: 640px;
  margin-top: 16px;
  color: #7a7a82;
  font-size: 0.82rem;
  line-height: 1.72;
  font-weight: 400;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
  color: #151722;
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 400;
}

.post-meta-small {
  gap: 20px;
  margin-top: 12px;
  color: #73737d;
  font-size: 0.6rem;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  flex: 0 0 auto;
}

/* ============================= */
/* LATERALES */
/* ============================= */

.side-posts {
  display: grid;
  gap: 34px;
}

.side-post {
  display: grid;
}

.side-post-image {
  overflow: hidden;
  border-radius: 9px;
  background: #edf2fb;
  box-shadow: var(--shadow-soft);
}

.side-post-image img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
}

.side-post-content {
  padding-top: 12px;
}

.side-title {
  color: #111827;
  font-size: 0.96rem;
  line-height: 1.1;
}

/* ============================= */
/* MINI POSTS */
/* ============================= */

.mini-posts-grid {
  margin-top: 34px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(64, 61, 150, 0.42);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.mini-post {
  display: grid;
}

.mini-post-image {
  overflow: hidden;
  border-radius: 8px;
  background: #edf2fb;
  box-shadow: var(--shadow-soft);
}

.mini-post-image img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  object-position: center;
}

.mini-title {
  margin-top: 10px;
  color: #111827;
  font-size: 0.9rem;
  line-height: 1.1;
}

/* ============================= */
/* BANNER */
/* ============================= */

.blog-banner {
  margin-top: 36px;
}

.blog-banner img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
}

/* ============================= */
/* MÁS NOTICIAS */
/* ============================= */

.more-news-section {
  background: #ffffff;
  padding: 0 0 68px;
}

.section-title-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 58px;
}

.section-title-row h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: #111827;
  font-size: clamp(2.55rem, 3.7vw, 4rem);
  line-height: 1;
  font-weight: 900;
}

.section-title-row span {
  height: 31px;
  border-radius: 999px;
  background: #e2e8f8;
}

.news-list {
  display: grid;
  gap: 76px;
}

.news-row {
  display: grid;
  grid-template-columns: 385px 1fr;
  gap: 42px;
  align-items: center;
}

.news-image {
  overflow: hidden;
  border-radius: 8px;
  background: #edf2fb;
  box-shadow: var(--shadow-soft);
}

.news-image img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  object-position: center;
}

.news-title {
  max-width: 460px;
  color: #111827;
  font-size: clamp(1.55rem, 1.8vw, 1.9rem);
  line-height: 1.1;
}

.news-content p {
  max-width: 440px;
  margin-top: 18px;
  color: #63636c;
  font-size: 0.78rem;
  line-height: 1.75;
}

/* ============================= */
/* CTA PROCESO */
/* ============================= */

.process-cta {
  background: #dfe7f7;
  padding: 74px 0 60px;
}

.process-container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  grid-template-areas:
    "title copy"
    "button button";
  column-gap: 84px;
  row-gap: 34px;
  align-items: center;
}

.process-title {
  grid-area: title;
}

.process-title h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: #403d96;
  font-size: clamp(2.65rem, 3.6vw, 3.8rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.process-title h2 span {
  display: block;
  white-space: nowrap;
}

.process-copy {
  grid-area: copy;
}

.process-copy p {
  color: #2d245e;
  font-size: clamp(1.02rem, 1.45vw, 1.35rem);
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: 0.015em;
}

.process-copy strong {
  font-weight: 800;
}

.advisor-button {
  grid-area: button;
  justify-self: center;
  min-width: 370px;
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #edf1f8;
  color: #2d245e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(45, 36, 94, 0.08);
}

.advisor-icon {
  width: 33px;
  height: 33px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #31bd59;
  color: #ffffff;
  flex: 0 0 auto;
}

.advisor-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ============================= */
/* FOOTER GLOBAL */
/* ============================= */

.global-footer {
  background: #2c2490;
  border-top: 2px solid rgba(255, 255, 255, 0.9);
  color: var(--white);
  padding: 0;
}

.footer-container {
  width: min(var(--max-wide), calc(100% - 48px));
  min-height: 205px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  align-items: center;
  gap: 56px;
}

.footer-links {
  display: grid;
  gap: 18px;
  justify-self: start;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.footer-brand {
  justify-self: center;
  display: flex;
  justify-content: center;
}

.footer-brand img {
  width: 190px;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.2));
}

.footer-social {
  justify-self: end;
  width: min(100%, 360px);
}

.footer-social p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 400;
}

.social-icon {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #eef1ff;
  color: #5547ba;
  font-size: 1rem;
  line-height: 1;
  font-weight: 900;
  flex: 0 0 auto;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1180px) {
  .site-header {
    padding: 0 6%;
    grid-template-columns: 230px 1fr 145px;
  }

  .main-nav {
    gap: 26px;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 116px;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand button"
      "nav nav";
    gap: 12px;
    padding: 20px 5% 16px;
  }

  .brand {
    grid-area: brand;
  }

  .header-button {
    grid-area: button;
  }

  .main-nav {
    grid-area: nav;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    flex: 0 0 auto;
    font-size: 0.78rem;
  }

  .blog-container,
  .blog-hero-inner,
  .process-container {
    width: min(100% - 40px, var(--max));
  }

  .blog-hero {
    padding-bottom: 132px;
  }

  .featured-blog-section {
    margin-top: -104px;
  }

  .featured-blog-section::after {
    top: 104px;
  }

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

  .main-post-image img {
    height: 300px;
  }

  .side-posts {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .side-post-image img {
    height: 170px;
  }

  .mini-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-row {
    grid-template-columns: 320px 1fr;
    gap: 30px;
  }

  .news-image img {
    height: 210px;
  }

  .process-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "copy"
      "button";
    text-align: center;
    row-gap: 26px;
  }

  .process-copy {
    max-width: 680px;
    margin: 0 auto;
  }

  .footer-container {
    width: min(100% - 40px, var(--max-wide));
    min-height: auto;
    padding: 42px 0;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 34px;
  }

  .footer-links,
  .footer-social,
  .footer-brand {
    justify-self: center;
  }

  .footer-links a {
    margin: 0 auto;
  }

  .footer-social a {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "button"
      "nav";
    text-align: center;
  }

  .brand,
  .header-button {
    justify-self: center;
  }

  .header-button {
    width: 100%;
    max-width: 220px;
    height: 34px;
    border-radius: 8px;
  }

  .blog-container,
  .blog-hero-inner,
  .process-container {
    width: min(100% - 32px, var(--max));
  }

  .blog-hero {
    padding: 42px 0 116px;
  }

  .blog-hero h1 {
    font-size: 2.75rem;
  }

  .featured-blog-section {
    margin-top: -88px;
  }

  .featured-blog-section::after {
    top: 88px;
  }

  .main-post-image img {
    height: 245px;
  }

  .two-line-title span,
  .process-title h2 span {
    white-space: normal;
  }

  .main-title {
    font-size: 1.72rem;
  }

  .side-posts,
  .mini-posts-grid {
    grid-template-columns: 1fr;
  }

  .side-post-image img,
  .mini-post-image img {
    height: 190px;
  }

  .section-title-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 42px;
  }

  .section-title-row h2 {
    font-size: 2.8rem;
  }

  .section-title-row span {
    height: 22px;
  }

  .news-list {
    gap: 58px;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-image img {
    height: 220px;
  }

  .news-title {
    font-size: 1.72rem;
  }

  .process-cta {
    padding: 56px 0 52px;
  }

  .process-title h2 {
    font-size: 2.45rem;
  }

  .advisor-button {
    width: 100%;
    min-width: 0;
    height: 50px;
    font-size: 1.32rem;
  }
}

@media (max-width: 520px) {
  .brand-name {
    font-size: 1.42rem;
  }

  .brand-subtitle {
    font-size: 0.62rem;
  }

  .blog-hero h1 {
    font-size: 2.55rem;
  }

  .main-post-image img {
    height: 220px;
  }

  .side-post-image img,
  .mini-post-image img,
  .news-image img {
    height: 185px;
  }

  .main-title,
  .news-title {
    font-size: 1.55rem;
  }

  .footer-container {
    width: min(100% - 32px, var(--max-wide));
    padding: 36px 0;
  }

  .footer-brand img {
    width: 150px;
  }

  .footer-links {
    gap: 14px;
  }

  .footer-links a {
    font-size: 0.95rem;
  }
}
/* ========================================================= */
/* BLOG MOBILE DEFINITIVO - HEDMONT LÓPEZ */
/* Reemplaza todo el bloque móvil anterior de blog.css */
/* No toca escritorio/web */
/* ========================================================= */

@media (max-width: 720px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    background: #ffffff !important;
  }

  body.menu-open {
    overflow: hidden !important;
  }

  .blog-page {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100vh !important;
    overflow-x: hidden !important;
    background: #ffffff !important;
  }

  .blog-container,
  .blog-hero-inner,
  .process-container,
  .footer-container {
    width: min(100% - 42px, 430px) !important;
    max-width: 430px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* ============================= */
  /* HEADER MOBILE */
  /* ============================= */

  .site-header {
    position: relative !important;
    z-index: 120 !important;
    width: 100% !important;
    min-height: 48px !important;
    height: 48px !important;
    padding: 6px 26px 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    background: linear-gradient(90deg, #2b257f 0%, #4435b5 52%, #2a257e 100%) !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
  }

  .brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .brand-name {
    color: #ffffff !important;
    font-size: 1.02rem !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
  }

  .brand-subtitle {
    margin-top: 3px !important;
    color: #ffffff !important;
    font-size: 0.42rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
  }

  .main-nav,
  .header-button {
    display: none !important;
  }

  .mobile-menu-toggle {
    position: absolute !important;
    right: 28px !important;
    top: 11px !important;
    z-index: 140 !important;
    width: 28px !important;
    height: 24px !important;
    border: 0 !important;
    padding: 0 !important;
    display: grid !important;
    gap: 6px !important;
    background: transparent !important;
    cursor: pointer !important;
  }

  .mobile-menu-toggle span {
    display: block !important;
    width: 28px !important;
    height: 1.5px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    transition: transform 0.25s ease, opacity 0.25s ease !important;
  }

  .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg) !important;
  }

  .mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0 !important;
  }

  .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg) !important;
  }

  .mobile-menu {
    position: fixed !important;
    inset: 0 !important;
    z-index: 130 !important;
    display: grid !important;
    place-items: start center !important;
    padding: 68px 22px 22px !important;
    background: rgba(20, 17, 70, 0.42) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.25s ease, visibility 0.25s ease !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  .mobile-menu.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mobile-menu-panel {
    width: min(100%, 360px) !important;
    border-radius: 22px !important;
    padding: 26px 24px 24px !important;
    background: linear-gradient(180deg, #33299b 0%, #2c2490 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 24px 60px rgba(11, 10, 35, 0.35) !important;
  }

  .mobile-menu-brand {
    display: grid !important;
    gap: 5px !important;
    text-align: center !important;
    margin-bottom: 24px !important;
  }

  .mobile-menu-brand strong {
    font-size: 1.25rem !important;
    line-height: 1 !important;
    letter-spacing: 0.04em !important;
  }

  .mobile-menu-brand span {
    font-size: 0.55rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
  }

  .mobile-menu-nav {
    display: grid !important;
    gap: 14px !important;
    text-align: center !important;
  }

  .mobile-menu-nav a {
    min-height: 40px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 0.9rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    background: rgba(255, 255, 255, 0.07) !important;
    text-decoration: none !important;
  }

  .mobile-menu-nav a.active {
    color: #2c2490 !important;
    background: #ffb22b !important;
  }

  .mobile-menu-cta {
    height: 42px !important;
    margin-top: 18px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    background: #ffffff !important;
    color: #2c2490 !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    text-decoration: none !important;
  }

  /* ============================= */
  /* HERO SUPERIOR */
  /* ============================= */

  .blog-hero {
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 230px !important;
    min-height: 230px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #2f2691 !important;
    overflow: visible !important;
  }

  .blog-hero-inner {
    height: 100% !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding-top: 31px !important;
  }

  .blog-hero h1 {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 2.02rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: 0.005em !important;
    text-align: center !important;
  }

  /* ============================= */
  /* BLOQUE DESTACADO SUPERIOR */
  /* ============================= */

  .featured-blog-section {
    position: relative !important;
    z-index: 5 !important;
    width: 100% !important;
    margin: -118px 0 0 !important;
    padding: 0 0 30px !important;

    /* CLAVE:
       deja ver el morado detrás de la parte superior de la imagen */
    background: linear-gradient(
      180deg,
      transparent 0,
      transparent 112px,
      #ffffff 112px,
      #ffffff 100%
    ) !important;

    overflow: visible !important;
  }

  .featured-blog-section .blog-container {
    position: relative !important;
    z-index: 6 !important;
  }

  .featured-blog-grid {
    position: relative !important;
    z-index: 7 !important;
    width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .main-post {
    position: relative !important;
    z-index: 8 !important;
    width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .main-post-image {
    position: relative !important;
    z-index: 9 !important;
    display: block !important;
    width: 100% !important;
    height: 205px !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    margin: 0 auto 18px !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .main-post-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .main-post-content {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 6px !important;
    background: #ffffff !important;
  }

  .main-title,
  .main-title span {
    display: block !important;
  }

  .main-title {
    width: 100% !important;
    max-width: 355px !important;
    margin: 0 0 13px !important;
    color: #111827 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 1.15rem !important;
    line-height: 1.07 !important;
    font-weight: 900 !important;
    letter-spacing: 0.003em !important;
    text-align: left !important;
  }

  .main-post-content p {
    margin: 0 0 14px !important;
    color: rgba(17, 24, 39, 0.56) !important;
    font-size: 0.58rem !important;
    line-height: 1.62 !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    text-align: left !important;
  }

  .post-meta,
  .post-meta-small {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 13px !important;
    margin: 0 !important;
    color: rgba(17, 24, 39, 0.72) !important;
    font-size: 0.58rem !important;
    line-height: 1 !important;
    font-weight: 400 !important;
  }

  .post-meta-small {
    gap: 9px !important;
    font-size: 0.43rem !important;
  }

  .post-meta .dot,
  .post-meta-small .dot {
    width: 3px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: currentColor !important;
    display: block !important;
    flex: 0 0 auto !important;
  }

  /* ============================= */
  /* NOTICIAS PEQUEÑAS SUPERIORES */
  /* ============================= */

  .side-posts {
    display: grid !important;
    width: 100% !important;
    margin: 28px auto 0 !important;
    padding: 0 6px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .side-post {
    display: block !important;
    width: 100% !important;
  }

  .side-post-image {
    display: block !important;
    width: 100% !important;
    height: 104px !important;
    border-radius: 5px !important;
    overflow: hidden !important;
    margin: 0 0 9px !important;
  }

  .side-post-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .side-title {
    margin: 0 0 8px !important;
    color: #111827 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 0.73rem !important;
    line-height: 1.08 !important;
    font-weight: 900 !important;
    letter-spacing: 0.003em !important;
    text-align: left !important;
  }

  .mini-posts-grid {
    width: 100% !important;
    margin: 26px auto 0 !important;
    padding: 0 6px 28px !important;
    border-bottom: 1px solid rgba(63, 61, 151, 0.42) !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .mini-post,
  .mini-post:nth-child(n + 3) {
    display: block !important;
    width: 100% !important;
  }

  .mini-post:nth-child(3) {
    grid-column: 1 / -1 !important;
  }

  .mini-post-image {
    display: block !important;
    width: 100% !important;
    height: 103px !important;
    border-radius: 5px !important;
    overflow: hidden !important;
    margin: 0 0 9px !important;
  }

  .mini-post:nth-child(3) .mini-post-image {
    height: 128px !important;
  }

  .mini-post-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .mini-title {
    margin: 0 0 8px !important;
    color: #111827 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 0.71rem !important;
    line-height: 1.08 !important;
    font-weight: 900 !important;
    text-align: left !important;
  }

  .mini-post:nth-child(3) .mini-title {
    font-size: 0.9rem !important;
    line-height: 1.08 !important;
  }

  .blog-banner {
    width: 100% !important;
    height: 120px !important;
    margin: 28px auto 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    display: block !important;
  }

  .blog-banner img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  /* ============================= */
  /* MÁS NOTICIAS */
  /* ============================= */

  .more-news-section {
    width: 100% !important;
    padding: 24px 0 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
  }

  .section-title-row {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    align-items: center !important;
    gap: 18px !important;
    margin: 0 0 34px !important;
  }

  .section-title-row h2 {
    margin: 0 !important;
    color: #111827 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 1.72rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
  }

  .section-title-row span {
    display: block !important;
    width: 100% !important;
    height: 18px !important;
    border-radius: 999px 0 0 999px !important;
    background: #dfe7f7 !important;
  }

  .news-list {
    width: 100% !important;
    display: grid !important;
    gap: 40px !important;
  }

  .news-row,
  .news-row:nth-child(n + 3) {
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .news-image {
    display: block !important;
    width: 100% !important;
    height: 218px !important;
    margin: 0 0 18px !important;
    border-radius: 6px !important;
    overflow: hidden !important;
  }

  .news-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .news-content {
    width: 100% !important;
    padding: 0 6px !important;
  }

  .news-title {
    width: 100% !important;
    max-width: 365px !important;
    margin: 0 0 12px !important;
    color: #111827 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 1.08rem !important;
    line-height: 1.12 !important;
    font-weight: 900 !important;
    text-align: left !important;
  }

  .news-content p {
    display: block !important;
    margin: 0 0 14px !important;
    color: rgba(17, 24, 39, 0.58) !important;
    font-size: 0.65rem !important;
    line-height: 1.56 !important;
    text-align: left !important;
  }

  /* ============================= */
  /* CTA FINAL */
  /* ============================= */

  .process-cta {
    width: 100% !important;
    margin: 46px 0 0 !important;
    padding: 37px 0 41px !important;
    background: #dfe7f7 !important;
  }

  .process-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "title"
      "copy"
      "button" !important;
    gap: 22px !important;
    text-align: center !important;
  }

  .process-title {
    grid-area: title !important;
    text-align: center !important;
  }

  .process-title h2 {
    margin: 0 auto !important;
    color: #3f3d97 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 1.72rem !important;
    line-height: 1.03 !important;
    font-weight: 900 !important;
    text-align: center !important;
  }

  .process-title h2 span {
    display: block !important;
  }

  .process-copy {
    grid-area: copy !important;
    text-align: center !important;
  }

  .process-copy p {
    max-width: 338px !important;
    margin: 0 auto !important;
    color: #3e3892 !important;
    font-size: 0.84rem !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
    text-align: center !important;
  }

  .process-copy strong {
    font-weight: 900 !important;
  }

  .advisor-button {
    grid-area: button !important;
    justify-self: center !important;
    width: min(100%, 258px) !important;
    min-width: 0 !important;
    height: 33px !important;
    min-height: 33px !important;
    border-radius: 999px !important;
    padding: 0 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: #eef2f8 !important;
    color: #2d245e !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 1.04rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    box-shadow: none !important;
  }

  .advisor-icon {
    width: 20px !important;
    height: 20px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    background: #28c760 !important;
    color: #ffffff !important;
    flex: 0 0 auto !important;
  }

  .advisor-icon svg {
    width: 15px !important;
    height: 15px !important;
    fill: currentColor !important;
  }

  /* ============================= */
  /* FOOTER */
  /* ============================= */

  .global-footer {
    background: #2c2490 !important;
    padding: 31px 0 31px !important;
    border-top: 0 !important;
  }

  .footer-container {
    width: min(100% - 78px, 360px) !important;
    max-width: 360px !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas:
      "links brand"
      "social social" !important;
    gap: 29px 18px !important;
    align-items: center !important;
    text-align: left !important;
  }

  .footer-links {
    grid-area: links !important;
    justify-self: start !important;
    display: grid !important;
    gap: 17px !important;
  }

  .footer-links a {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.94rem !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    text-decoration: none !important;
  }

  .footer-brand {
    grid-area: brand !important;
    justify-self: end !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    text-decoration: none !important;
  }

  .footer-brand img {
    width: 122px !important;
    height: auto !important;
    margin-bottom: 5px !important;
  }

  .footer-social {
    grid-area: social !important;
    justify-self: stretch !important;
    width: 100% !important;
    padding-top: 28px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.72) !important;
    text-align: center !important;
  }

  .footer-social p {
    margin-bottom: 22px !important;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 1rem !important;
    line-height: 1 !important;
    font-weight: 400 !important;
  }

  .footer-social a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 12px !important;
    gap: 11px !important;
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 0.72rem !important;
    line-height: 1 !important;
    text-decoration: none !important;
  }

  .social-icon {
    width: 22px !important;
    height: 22px !important;
    border-radius: 6px !important;
    display: grid !important;
    place-items: center !important;
    background: #eef1ff !important;
    color: #5547ba !important;
    font-size: 0.9rem !important;
    font-weight: 900 !important;
  }
}

@media (max-width: 420px) {
  .blog-container,
  .blog-hero-inner,
  .process-container {
    width: min(100% - 42px, 390px) !important;
  }

  .blog-hero {
    height: 230px !important;
    min-height: 230px !important;
  }

  .featured-blog-section {
    margin-top: -118px !important;
    background: linear-gradient(
      180deg,
      transparent 0,
      transparent 112px,
      #ffffff 112px,
      #ffffff 100%
    ) !important;
  }

  .main-post-image {
    height: 205px !important;
  }

  .main-title {
    font-size: 1.1rem !important;
  }

  .side-post-image,
  .mini-post-image {
    height: 100px !important;
  }

  .mini-post:nth-child(3) .mini-post-image {
    height: 124px !important;
  }

  .news-image {
    height: 210px !important;
  }

  .footer-container {
    width: min(100% - 56px, 340px) !important;
  }

  .footer-brand img {
    width: 112px !important;
  }
}