/* Blog | Punto Inicial */
.page-blog main { background: var(--bg); }

    /* EXPLORE */
    .blog-explore{ padding: 26px 0; }
    .explore-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:18px; }
    .explore-head h2{ margin:0; }
    .muted{ color: var(--muted); }
    
    .chips{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top: 16px;
    }
    
    .chip{
      border: 1px solid var(--line);
      background: #fff;
      color: var(--ink);
      padding: 10px 12px;
      border-radius: 999px;
      cursor:pointer;
      font-size: 14px;
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    }
    .chip:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
    .chip.is-active{
      border-color: rgba(176,141,87,.55);
      box-shadow: 0 14px 40px rgba(11, 19, 32, .10);
    }
    
    /* FEATURED */
    .blog-featured{ padding: 22px 0 10px; }
    .featured-card{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow:hidden;
      box-shadow: var(--shadow);
      background: #fff;
    }
    
    .featured-media img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      min-height: 320px;
    }
    
    .featured-body{ padding: 22px; display:flex; flex-direction:column; gap:10px; }
    
    .tag-row{ display:flex; align-items:center; gap:10px; color: var(--muted); font-size: 13px; }
    .tag{
      display:inline-flex;
      align-items:center;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(176,141,87,.35);
      background: rgba(176,141,87,.08);
      color: var(--ink);
    }
    
    .featured-body h3{ margin: 4px 0 0; font-size: 26px; line-height: 1.15; }
    .featured-body a{ color: inherit; text-decoration: none; }
    .featured-body a:hover{ text-decoration: underline; }
    
    .excerpt{ color: var(--muted); margin: 0 0 8px; }
    
    .post-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 6px; }
    
    /* GRID */
    .blog-grid{ padding: 34px 0 50px; }
    .grid-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:18px;
      margin-bottom: 16px;
    }
    
    .search input{
      width: min(360px, 100%);
      padding: 12px 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      outline: none;
    }
    .search input:focus{
      border-color: rgba(176,141,87,.55);
      box-shadow: 0 12px 30px rgba(11,19,32,.10);
    }
    
    .posts{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    
    .post-card{
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow:hidden;
      background:#fff;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .post-card:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }
    
    .post-media img{
      width:100%;
      height: 190px;
      object-fit: cover;
      display:block;
    }
    
    .post-body{ padding: 14px 14px 16px; }
    .mini-tag{
      display:inline-block;
      font-size: 12px;
      color: var(--muted);
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .post-body h3{
      margin: 0 0 8px;
      line-height: 1.2;
      font-size: 18px;
    }
    .post-body a{ color: inherit; text-decoration: none; }
    .post-body a:hover{ text-decoration: underline; }
    .post-body p{ margin: 0 0 10px; color: var(--muted); }
    
    .meta{ display:flex; gap:10px; align-items:center; color: var(--muted); font-size: 13px; }
    .dot{ opacity: .7; }
    
    /* CTA */
    .blog-cta{ padding: 10px 0 70px; }
    .cta-box{
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px;
      background:
        radial-gradient(800px 240px at 10% 10%, rgba(176,141,87,.12), transparent 60%),
        #fff;
      box-shadow: var(--shadow);
    }
    .cta-box h2{ margin: 0 0 8px; }
    .cta-box p{ margin: 0 0 14px; }
    
    /* Responsive m铆nimo (sin obsesionarnos con m贸vil) */
    @media (max-width: 980px){
      .featured-card{ grid-template-columns: 1fr; }
      .posts{ grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px){
      .posts{ grid-template-columns: 1fr; }
    }
    
    /* Placeholder elegante si una imagen falla */
    .post-media, .featured-media{
      background: linear-gradient(135deg, rgba(11,19,32,.06), rgba(176,141,87,.10));
    }
    .post-media img, .featured-media img{
      display:block;
    }
    
    /* =========================
       BLOG: ancho del contenido
       sin afectar el header
    ========================= */
    .page-blog main .container{
      width: min(1100px, calc(100% - 40px));
      margin-inline: auto;
    }
    
    /* =========================
       FIX botones del blog
    ========================= */
    .page-blog .btn{
      text-decoration: none;
    }
    
    .page-blog .btn--ghost{
      color: var(--ink);
      background: #fff;
      border: 1px solid var(--line);
    }

    /* ===============================
       HERO CINEMATOGRÁFICO - BLOG
    ================================= */
    
    .blog-hero{
      position: relative;
      overflow: hidden;
      min-height: 640px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,.10);
      background: #0b1320;
    }
    
    .blog-hero__bg{
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(11,19,32,.82) 0%, rgba(11,19,32,.68) 38%, rgba(11,19,32,.38) 62%, rgba(11,19,32,.20) 100%),
        linear-gradient(180deg, rgba(11,19,32,.18) 0%, rgba(11,19,32,.34) 100%),
        url("assets/blog/hero-blog-londres.jpg") center center / cover no-repeat;
      transform: scale(1.02);
    }
    
    .blog-hero::after{
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:120px;
      background: linear-gradient(to bottom, rgba(11,19,32,0) 0%, rgba(11,19,32,.34) 45%, rgba(11,19,32,.55) 100%);
      pointer-events:none;
    }
    
    .blog-hero__wrap{
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 88px 0 84px;
    }
    
    .blog-hero__content{
      max-width: 760px;
    }
    
    .kicker{
      display:inline-flex;
      align-items:center;
      min-height: 38px;
      padding: 0 16px;
      border: 1px solid rgba(255,255,255,.24);
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(4px);
      letter-spacing: .18em;
      font-size: 12px;
      color: rgba(255,255,255,.78);
      margin: 0 0 20px;
    }
    
    .blog-hero h1{
      margin: 0 0 18px;
      font-size: clamp(50px, 6vw, 86px);
      line-height: .96;
      letter-spacing: -0.04em;
      max-width: 9ch;
      color: #fff;
      text-shadow: 0 10px 30px rgba(0,0,0,.18);
    }
    
    .blog-hero .lead{
      max-width: 28ch;
      margin: 0 0 28px;
      font-size: clamp(23px, 2.3vw, 34px);
      line-height: 1.16;
      color: rgba(255,255,255,.86);
    }
    
    .hero-actions{
      display:flex;
      gap: 14px;
      flex-wrap:wrap;
      margin-bottom: 18px;
    }
    
    .page-blog .hero-actions .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height: 56px;
      padding: 0 24px;
      border-radius: 999px;
      font-weight: 700;
      text-decoration:none !important;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    
    .page-blog .hero-actions .btn:hover{
      transform: translateY(-1px);
    }
    
    .page-blog .hero-actions .btn:not(.ghost){
      background: #fff;
      color: var(--ink) !important;
      border: 1px solid #fff;
      box-shadow: 0 14px 36px rgba(0,0,0,.16);
    }
    
    .page-blog .hero-actions .btn.ghost{
      background: rgba(255,255,255,.10);
      color: #fff !important;
      border: 1px solid rgba(255,255,255,.28);
      backdrop-filter: blur(4px);
    }
    
    .hero-meta{
      display:flex;
      gap: 18px;
      flex-wrap:wrap;
      color: rgba(255,255,255,.72);
      font-size: 14px;
      line-height: 1.5;
    }
    
    .hero-meta span{
      position: relative;
    }
    
    /* Responsive */
    @media (max-width: 980px){
      .blog-hero{
        min-height: 560px;
      }
    
      .blog-hero__wrap{
        padding: 72px 0 68px;
      }
    
      .blog-hero h1{
        max-width: 10ch;
      }
    
      .blog-hero .lead{
        max-width: 34ch;
      }
    }

    @media (max-width: 640px){
      .blog-hero{
        min-height: 520px;
      }
    
      .blog-hero__bg{
        background:
          linear-gradient(180deg, rgba(11,19,32,.72) 0%, rgba(11,19,32,.56) 55%, rgba(11,19,32,.66) 100%),
          url("assets/blog/hero-blog-londres.jpg") center center / cover no-repeat;
      }
    
      .blog-hero__wrap{
        padding: 56px 0 54px;
      }
    
      .blog-hero h1{
        font-size: clamp(40px, 12vw, 58px);
        max-width: none;
      }
    
      .blog-hero .lead{
        font-size: 20px;
        max-width: none;
      }
    
      .hero-actions{
        flex-direction: column;
        align-items: stretch;
      }
    
      .page-blog .hero-actions .btn{
        width: 100%;
      }
    
      .hero-meta{
        flex-direction: column;
        gap: 6px;
      }
    }

    .hero-title{
      display:flex;
      flex-direction:column;
      gap: 10px;
      margin: 0 0 14px;
    }
    
    .hero-title span{
      display:block;
      font-size: clamp(48px, 6vw, 82px);
      line-height: .92;
      letter-spacing: -0.04em;
      color:#fff;
    }
    
    /* Línea destacada */
    .hero-title .highlight{
      font-style: italic;
      opacity: .92;
      letter-spacing: -0.02em;
    }
        
    /* Ajuste fino para ritmo */
    .hero-title span:nth-child(2){
      padding-left: 14px;
    }


    .hero-lead{
      max-width: 34ch;
      margin: 0 0 30px;
      font-size: clamp(20px, 2vw, 28px);
      line-height: 1.2;
      color: rgba(255,255,255,.88);
      font-weight: 400;
    }
    
    /* Segunda línea más ligera */
    .hero-lead span{
      display:block;
      margin-top: 8px;
      font-size: .75em;
      line-height: 1.4;
      color: rgba(255,255,255,.65);
      font-weight: 400;
    }

    /* ===============================
       BOTONES DEL DESTACADO
    ================================= */
    .page-blog .post-actions .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 700;
      text-decoration:none !important;
    }
    
    .page-blog .post-actions .btn:not(.ghost){
      background: var(--ink);
      color:#fff !important;
      border:1px solid var(--ink);
    }
    
    .page-blog .post-actions .btn.ghost{
      background:#fff;
      color:var(--ink) !important;
      border:1px solid var(--line);
    }
    
    /* Responsive */
    @media (max-width: 1100px){
      .blog-hero__wrap{
        grid-template-columns: 1fr;
        gap: 24px;
      }
    
      .blog-hero__aside{
        justify-content:flex-start;
      }
    
      .hero-note{
        max-width: 520px;
      }
    }
    
    @media (max-width: 640px){
      .blog-hero{
        padding: 56px 0 42px;
      }
    
      .blog-hero h1{
        font-size: clamp(38px, 10vw, 52px);
        max-width: none;
      }
    
      .blog-hero .lead{
        font-size: 20px;
        max-width: none;
      }
    
      .hero-actions{
        flex-direction: column;
        align-items: stretch;
      }
    
      .page-blog .hero-actions .btn{
        width: 100%;
      }
    
      .hero-meta{
        flex-direction: column;
        gap: 6px;
      }
    }
    
    /* ===============================
   EXPLORAR - ESTILO EDITORIAL
    ================================= */
    
    .blog-explore{
      position: relative;
      padding: 54px 0 26px;
      background: #fff;
    }
    
    .explore-shell{
      display:flex;
      flex-direction:column;
      gap: 20px;
    }
    
    .explore-head{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap: 8px;
    }
    
    .explore-head__text{
      width:100%;
    }
    
    .explore-head__text h2{
      margin: 0;
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.02;
      letter-spacing: -0.03em;
      color: var(--ink);
    }
    
    .explore-intro{
      margin: 0;
      max-width: 50ch;
      color: #5d6b82;
      font-size: 18px;
      line-height: 1.4;
      text-align:left;
    }
    
    .section-kicker{
      margin: 0 0 10px;
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #9a7b4f;
    }
    
    /* Chips premium */
    .chips{
      display:flex;
      gap: 12px;
      flex-wrap:wrap;
    }
    
    .chip{
      appearance:none;
      border: 1px solid rgba(11,19,32,.10);
      background: #fff;
      color: var(--ink);
      padding: 12px 18px;
      border-radius: 999px;
      cursor:pointer;
      font-size: 15px;
      font-weight: 600;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    }
    
    .chip:hover{
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(11,19,32,.07);
      border-color: rgba(176,141,87,.35);
    }
    
    .chip.is-active{
      background: rgba(176,141,87,.10);
      border-color: rgba(176,141,87,.45);
      color: var(--ink);
      box-shadow: 0 10px 26px rgba(11,19,32,.06);
    }
    
    /* ===============================
       DESTACADO REFINADO
    ================================= */

    .blog-featured{
      padding: 18px 0 44px;
      background:#fff;
    }
    
    .featured-card{
      display:grid;
      grid-template-columns: 1.15fr .95fr;
      gap: 0;
      border: 1px solid rgba(11,19,32,.08);
      border-radius: 28px;
      overflow:hidden;
      background:#fff;
      box-shadow: 0 24px 60px rgba(11,19,32,.08);
    }
    
    .featured-media{
      position: relative;
      display:block;
      min-height: 100%;
      background: #e9edf3;
    }
    
    .featured-media::after{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(90deg, rgba(11,19,32,0) 55%, rgba(11,19,32,.06) 100%);
      pointer-events:none;
    }
    
    .featured-media img{
      width:100%;
      height:100%;
      min-height: 420px;
      object-fit:cover;
      display:block;
    }
    
    .featured-body{
      padding: 44px 36px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    
    .featured-topline{
      display:flex;
      align-items:center;
      gap: 10px;
      margin-bottom: 16px;
      color: var(--muted);
      font-size: 14px;
    }
    
    .tag{
      display:inline-flex;
      align-items:center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(176,141,87,.32);
      background: rgba(176,141,87,.08);
      color: var(--ink);
      font-size: 14px;
      font-weight: 600;
    }
    
    .featured-body h3{
      margin: 0 0 16px;
      font-size: clamp(34px, 4vw, 50px);
      line-height: 1.02;
      letter-spacing: -0.03em;
    }
    
    .featured-body h3 a{
      color: inherit;
      text-decoration: none;
    }
    
    .featured-body h3 a:hover{
      text-decoration: underline;
    }
    
    .excerpt{
      margin: 0 0 26px;
      color: #5c6880;
      font-size: 21px;
      line-height: 1.45;
      max-width: 30ch;
    }
    
    .post-actions{
      display:flex;
      gap: 12px;
      flex-wrap:wrap;
    }
    
    .page-blog .post-actions .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 700;
      text-decoration:none !important;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    
    .page-blog .post-actions .btn:hover{
      transform: translateY(-1px);
    }
    
    .page-blog .post-actions .btn:not(.ghost){
      background: var(--ink);
      color:#fff !important;
      border:1px solid var(--ink);
      box-shadow: 0 12px 28px rgba(11,19,32,.12);
    }
    
    .page-blog .post-actions .btn.ghost{
      background:#fff;
      color:var(--ink) !important;
      border:1px solid rgba(11,19,32,.10);
      box-shadow: 0 10px 22px rgba(11,19,32,.05);
    }

/* ===============================
   RESPONSIVE
================================= */

    @media (max-width: 1100px){
      .explore-head{
        grid-template-columns: 1fr;
        gap: 12px;
      }
    
      .explore-intro{
        justify-self:start;
        max-width: none;
      }
    
      .featured-card{
        grid-template-columns: 1fr;
      }
    
      .featured-media img{
        min-height: 320px;
      }
    
      .featured-body{
        padding: 28px 24px;
      }
    
      .excerpt{
        max-width: none;
      }
    }
    
    @media (max-width: 640px){
      .blog-explore{
        padding: 42px 0 18px;
      }
    
      .explore-head__text h2{
        font-size: clamp(30px, 10vw, 42px);
      }
    
      .explore-intro{
        font-size: 18px;
      }
    
      .chips{
        gap: 10px;
      }
    
      .chip{
        width: 100%;
        justify-content: center;
      }
    
      .featured-media img{
        min-height: 260px;
      }
    
      .featured-body h3{
        font-size: 32px;
      }
    
      .excerpt{
        font-size: 18px;
      }
    }
    
