﻿/* Styles from actualidad-novedades.html */


    /* ===== ACTUALIDAD PAGE STYLES ===== */
    :root {
      --act-teal: #00A99D;
      --act-blue: #0A2540;
      --act-ink: #1E293B;
      --act-gray: #64748B;
      --act-border: #E2E8F0;
      --act-bg: #F8FAFC;
      --act-warm: #F7F5F2;
      --act-gold: #C9A84C;
    }

    body {
      background: var(--act-warm);
    }

    /* â”€â”€â”€ HERO (magazine style) â”€â”€â”€ */
    .act-hero {
      background: var(--act-blue);
      position: relative;
      overflow: hidden;
      min-height: 440px;
      display: flex;
      align-items: center;
      margin-top: 0;
    }

    .act-hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(10, 37, 64, 0.97) 45%, rgba(10, 37, 64, 0.75) 100%),
        none;
    }

    .act-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      text-align: center;
    }

    .act-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--act-teal);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .act-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--act-teal);
    }

    .act-hero-title {
      font-family: Arial, sans-serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 800;
      color: white;
      line-height: 1.1;
      letter-spacing: -1px;
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }

    .act-hero-sub {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.72);
      max-width: 600px;
      line-height: 1.8;
      font-weight: 300;
      margin: 0;
    }

    .act-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      align-items: center;
    }

    .act-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      background: var(--blue);
      color: white;
      font-weight: 600;
      font-size: .85rem;
      padding: .55rem 1.4rem;
      border-radius: 9999px;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      border: 1px solid transparent;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .act-btn-primary:hover {
      background-color: var(--green) !important;
      color: white !important;
      transform: translateY(-2px) !important;
      border-color: var(--green) !important;
      box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
    }

    .act-btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      background: transparent;
      color: white;
      font-weight: 600;
      font-size: .85rem;
      padding: .55rem 1.4rem;
      border-radius: 9999px;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      border: 1px solid rgba(255, 255, 255, 0.45);
    }

    .act-btn-outline:hover {
      background-color: var(--act-teal) !important;
      color: white !important;
      border-color: var(--act-teal) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 16px rgba(0, 169, 157, 0.4) !important;
    }

    .act-social-wrap {
      position: relative;
      display: inline-flex;
    }

    .act-btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      color: var(--act-gold);
      font-weight: 600;
      font-size: .85rem;
      background: transparent;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      padding: 0.55rem;
      margin: 0;
    }

    .act-btn-ghost:hover {
      color: #e0bf70;
    }

    .act-social-popup {
      position: absolute;
      top: calc(100% + 5px);
      left: 50%;
      transform: translateX(-50%) translateY(5px);
      background: #0A2540;
      border-radius: 8px;
      padding: 0.5rem;
      display: flex;
      gap: 0.4rem;
      opacity: 0;
      visibility: hidden;
      transition: all 0.2s ease-out;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      z-index: 100;
    }

    .act-social-popup.active {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .act-social-popup a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 1.05rem;
      transition: all 0.2s;
    }

    .act-social-popup a:hover {
      background: rgba(255, 255, 255, 0.15);
      color: white;
    }

    /* â”€â”€â”€ TABS â”€â”€â”€ */
    .act-tabs-wrap {
      background: #fff;
      border-bottom: 2px solid var(--act-border);
      position: sticky;
      top: 0;
      z-index: 200;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .act-tabs-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .act-tabs-inner::-webkit-scrollbar {
      display: none;
    }

    .act-tab {
      padding: 1.25rem 1.75rem;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--act-gray);
      border-bottom: 3px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.25s;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none;
      letter-spacing: 0.02em;
    }

    .act-tab:hover {
      color: var(--act-blue);
    }

    .act-tab.active {
      color: var(--act-teal);
      border-bottom-color: var(--act-teal);
    }

    /* â”€â”€â”€ CONTENT AREA â”€â”€â”€ */
    .act-content-area {
      max-width: 1100px;
      margin: 0 auto;
      padding: 2.5rem 2rem 3rem;
    }

    .act-panel {
      display: none;
    }

    .act-panel.active {
      display: block;
    }

    /* â”€â”€â”€ NEWS LIST â”€â”€â”€ */
    .act-news-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--act-border);
      border-radius: 12px;
      overflow: hidden;
      background: white;
    }

    .act-news-item {
      display: flex;
      gap: 0;
      border-bottom: 1px solid var(--act-border);
      background: #fff;
      transition: background 0.2s;
    }

    .act-news-item:last-child {
      border-bottom: none;
    }

    .act-news-item:hover {
      background: #FAFCFE;
    }

    .act-news-thumb {
      width: 220px;
      flex-shrink: 0;
      overflow: hidden;
    }

    .act-news-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .act-news-item:hover .act-news-thumb img {
      transform: scale(1.03);
    }

    .act-news-body {
      flex: 1;
      padding: 1.5rem 1.75rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .act-news-cat {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--act-teal);
      margin-bottom: 0.45rem;
    }

    .act-news-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--act-ink);
      margin: 0 0 0.4rem;
      line-height: 1.4;
    }

    .act-news-title a {
      color: inherit;
      text-decoration: none;
    }

    .act-news-title a:hover {
      color: var(--act-teal);
    }

    .act-news-date {
      font-size: 0.8rem;
      color: var(--act-gray);
      margin-bottom: 0.6rem;
    }

    .act-news-excerpt {
      font-size: 0.93rem;
      color: #4A5568;
      line-height: 1.65;
    }

    .act-news-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1rem;
      border-top: 1px solid var(--act-border);
      margin-top: 1rem;
    }

    .social-share {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .share-label {
      font-size: 0.65rem;
      font-weight: 800;
      color: #94A3B8;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-right: 0.25rem;
    }

    .share-btn {
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid #E2E8F0;
      color: #64748B;
      background: white;
      text-decoration: none;
      transition: all 0.25s;
    }

    .share-btn:hover {
      background: var(--act-teal);
      color: white;
      border-color: var(--act-teal);
      transform: translateY(-1px);
    }

    .metrics-wrap {
      display: flex;
      gap: 0.75rem;
      align-items: center;
    }

    .view-btn,
    .like-btn {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      color: var(--act-gray);
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
    }

    .like-btn:hover {
      color: #E74C3C;
    }

    .heart-icon {
      color: #CBD5E0;
      transition: color 0.2s;
    }

    .like-btn:hover .heart-icon {
      color: #E74C3C;
    }

    /* â”€â”€â”€ PAGINATION â”€â”€â”€ */
    .act-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2rem;
    }

    .act-page-btn {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      border: 1px solid var(--act-border);
      background: white;
      color: var(--act-ink);
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }

    .act-page-btn:hover {
      border-color: var(--act-teal);
      color: var(--act-teal);
    }

    .act-page-btn.active {
      background: var(--act-teal);
      color: white;
      border-color: var(--act-teal);
      box-shadow: 0 4px 12px rgba(0, 169, 157, 0.3);
    }

    .act-page-btn.nav-btn {
      width: auto;
      padding: 0 1rem;
      gap: 0.4rem;
      font-size: 0.8rem;
    }

    .act-page-btn:disabled,
    .act-page-btn[disabled] {
      opacity: 0.4;
      cursor: not-allowed;
      pointer-events: none;
    }

    /* â”€â”€â”€ ARCHIVE SECTION (magazine style) â”€â”€â”€ */
    .act-archive-section {
      background: var(--act-warm);
      padding: 4rem 0 5rem;
    }

    .act-archive-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .act-section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .act-section-sub {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--act-teal);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 0.75rem;
    }

    .act-section-sub::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--act-teal);
    }

    .act-section-header h2 {
      font-family: Arial, sans-serif;
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--act-blue);
      margin: 0;
      line-height: 1.15;
    }

    /* Year accordion — magazine identical */
    .act-year-block {
      margin-bottom: 1.25rem;
    }

    .act-year-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      padding: 1.25rem 1.5rem;
      background: white;
      border: 1px solid var(--act-border);
      border-radius: 12px;
      transition: all 0.2s;
      user-select: none;
      margin-bottom: 0;
    }

    .act-year-toggle:hover {
      background: #F8FAFC;
      border-color: var(--act-teal);
    }

    .act-year-toggle-left {
      display: flex;
      align-items: baseline;
      gap: 1.5rem;
    }

    .act-year-num {
      font-family: Arial, sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--act-blue);
      line-height: 1;
    }

    .act-year-meta {
      font-size: 0.85rem;
      color: #64748B;
      font-weight: 500;
    }

    .act-year-chevron {
      color: #94A3B8;
      transition: transform 0.3s ease;
      font-size: 1rem;
    }

    .act-year-block.open .act-year-chevron {
      transform: rotate(180deg);
    }

    .act-year-body {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
      padding: 0;
    }

    .act-year-block.open .act-year-body {
      max-height: 3000px;
      padding: 1.5rem 0 0.5rem;
    }

    /* Archive grid */
    .act-arch-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .act-arch-item {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      background: white;
      border: 1px solid var(--act-border);
      border-radius: 10px;
      padding: 1.1rem 1.4rem;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .act-arch-item:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
      transform: translateY(-1px);
    }

    .act-arch-cat-badge {
      display: inline-block;
      background: rgba(0, 169, 157, 0.08);
      color: var(--act-teal);
      border: 1px solid rgba(0, 169, 157, 0.22);
      border-radius: 20px;
      padding: 0.2rem 0.75rem;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      white-space: nowrap;
      flex-shrink: 0;
      margin-top: 0.3rem;
    }

    .act-arch-body {
      flex: 1;
    }

    .act-arch-edition {
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--act-gray);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.3rem;
    }

    .act-arch-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--act-ink);
      margin: 0 0 0.35rem;
      line-height: 1.4;
    }

    .act-arch-title a {
      color: inherit;
      text-decoration: none;
    }

    .act-arch-title a:hover {
      color: var(--act-teal);
    }

    .act-arch-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 0.7rem;
      padding-top: 0.7rem;
      border-top: 1px solid var(--act-border);
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    @media (max-width: 768px) {
      .act-news-item {
        flex-direction: column;
      }

      .act-news-thumb {
        width: 100%;
        height: 200px;
      }

      .act-news-body {
        padding: 1.25rem;
      }

      .act-ctas {
        flex-direction: column;
        align-items: flex-start;
      }
    }
  
        /* ===== ROCKET LAUNCH HEARTBEAT CREDIT STYLE ===== */
        .rocket-heartbeat {
            display: inline-block;
            animation: heartbeat 1.5s ease-in-out infinite;
            color: #ff3366;
            margin: 0 2px;
        }
        @keyframes heartbeat {
            0% { transform: scale(1); }
            14% { transform: scale(1.3); }
            28% { transform: scale(1); }
            42% { transform: scale(1.3); }
            70% { transform: scale(1); }
        }
        


/* Styles from actualidad.html */


    /* ===== ACTUALIDAD PAGE STYLES ===== */
    :root {
      --act-teal: #00A99D;
      --act-blue: #0A2540;
      --act-ink: #1E293B;
      --act-gray: #64748B;
      --act-border: #E2E8F0;
      --act-bg: #F8FAFC;
      --act-warm: #F7F5F2;
      --act-gold: #C9A84C;
    }

    body {
      background: var(--act-warm);
    }

    /* â”€â”€â”€ HERO (magazine style) â”€â”€â”€ */
    .act-hero {
      background: var(--act-blue);
      position: relative;
      overflow: hidden;
      min-height: 440px;
      display: flex;
      align-items: center;
      margin-top: 0;
    }

    .act-hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(10, 37, 64, 0.97) 45%, rgba(10, 37, 64, 0.75) 100%),
        none;
    }

    .act-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      text-align: center;
    }

    .act-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--act-teal);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .act-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--act-teal);
    }

    .act-hero-title {
      font-family: Arial, sans-serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 800;
      color: white;
      line-height: 1.1;
      letter-spacing: -1px;
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }

    .act-hero-sub {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.72);
      max-width: 600px;
      line-height: 1.8;
      font-weight: 300;
      margin: 0;
    }

    .act-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      align-items: center;
    }

    .act-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      background: var(--blue);
      color: white;
      font-weight: 600;
      font-size: .85rem;
      padding: .55rem 1.4rem;
      border-radius: 9999px;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      border: 1px solid transparent;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .act-btn-primary:hover {
      background-color: var(--green) !important;
      color: white !important;
      transform: translateY(-2px) !important;
      border-color: var(--green) !important;
      box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
    }

    .act-btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      background: transparent;
      color: white;
      font-weight: 600;
      font-size: .85rem;
      padding: .55rem 1.4rem;
      border-radius: 9999px;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      border: 1px solid rgba(255, 255, 255, 0.45);
    }

    .act-btn-outline:hover {
      background-color: var(--act-teal) !important;
      color: white !important;
      border-color: var(--act-teal) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 16px rgba(0, 169, 157, 0.4) !important;
    }

    .act-social-wrap {
      position: relative;
      display: inline-flex;
    }

    .act-btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      color: var(--act-gold);
      font-weight: 600;
      font-size: .85rem;
      background: transparent;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      padding: 0.55rem;
      margin: 0;
    }

    .act-btn-ghost:hover {
      color: #e0bf70;
    }

    .act-social-popup {
      position: absolute;
      top: calc(100% + 5px);
      left: 50%;
      transform: translateX(-50%) translateY(5px);
      background: #0A2540;
      border-radius: 8px;
      padding: 0.5rem;
      display: flex;
      gap: 0.4rem;
      opacity: 0;
      visibility: hidden;
      transition: all 0.2s ease-out;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      z-index: 100;
    }

    .act-social-popup.active {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .act-social-popup a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 1.05rem;
      transition: all 0.2s;
    }

    .act-social-popup a:hover {
      background: rgba(255, 255, 255, 0.15);
      color: white;
    }

    /* â”€â”€â”€ TABS â”€â”€â”€ */
    .act-tabs-wrap {
      background: #fff;
      border-bottom: 2px solid var(--act-border);
      position: sticky;
      top: 0;
      z-index: 200;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .act-tabs-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .act-tabs-inner::-webkit-scrollbar {
      display: none;
    }

    .act-tab {
      padding: 1.25rem 1.75rem;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--act-gray);
      border-bottom: 3px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.25s;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none;
      letter-spacing: 0.02em;
    }

    .act-tab:hover {
      color: var(--act-blue);
    }

    .act-tab.active {
      color: var(--act-teal);
      border-bottom-color: var(--act-teal);
    }

    /* â”€â”€â”€ CONTENT AREA â”€â”€â”€ */
    .act-content-area {
      max-width: 1100px;
      margin: 0 auto;
      padding: 2.5rem 2rem 3rem;
    }

    .act-panel {
      display: none;
    }

    .act-panel.active {
      display: block;
    }

    /* â”€â”€â”€ NEWS LIST â”€â”€â”€ */
    .act-news-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--act-border);
      border-radius: 12px;
      overflow: hidden;
      background: white;
    }

    .act-news-item {
      display: flex;
      gap: 0;
      border-bottom: 1px solid var(--act-border);
      background: #fff;
      transition: background 0.2s;
    }

    .act-news-item:last-child {
      border-bottom: none;
    }

    .act-news-item:hover {
      background: #FAFCFE;
    }

    .act-news-thumb {
      width: 220px;
      flex-shrink: 0;
      overflow: hidden;
    }

    .act-news-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .act-news-item:hover .act-news-thumb img {
      transform: scale(1.03);
    }

    .act-news-body {
      flex: 1;
      padding: 1.5rem 1.75rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .act-news-cat {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--act-teal);
      margin-bottom: 0.45rem;
    }

    .act-news-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--act-ink);
      margin: 0 0 0.4rem;
      line-height: 1.4;
    }

    .act-news-title a {
      color: inherit;
      text-decoration: none;
    }

    .act-news-title a:hover {
      color: var(--act-teal);
    }

    .act-news-date {
      font-size: 0.8rem;
      color: var(--act-gray);
      margin-bottom: 0.6rem;
    }

    .act-news-excerpt {
      font-size: 0.93rem;
      color: #4A5568;
      line-height: 1.65;
    }

    .act-news-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1rem;
      border-top: 1px solid var(--act-border);
      margin-top: 1rem;
    }

    .social-share {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .share-label {
      font-size: 0.65rem;
      font-weight: 800;
      color: #94A3B8;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-right: 0.25rem;
    }

    .share-btn {
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid #E2E8F0;
      color: #64748B;
      background: white;
      text-decoration: none;
      transition: all 0.25s;
    }

    .share-btn:hover {
      background: var(--act-teal);
      color: white;
      border-color: var(--act-teal);
      transform: translateY(-1px);
    }

    .metrics-wrap {
      display: flex;
      gap: 0.75rem;
      align-items: center;
    }

    .view-btn,
    .like-btn {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      color: var(--act-gray);
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
    }

    .like-btn:hover {
      color: #E74C3C;
    }

    .heart-icon {
      color: #CBD5E0;
      transition: color 0.2s;
    }

    .like-btn:hover .heart-icon {
      color: #E74C3C;
    }

    /* â”€â”€â”€ PAGINATION â”€â”€â”€ */
    .act-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2rem;
    }

    .act-page-btn {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      border: 1px solid var(--act-border);
      background: white;
      color: var(--act-ink);
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }

    .act-page-btn:hover {
      border-color: var(--act-teal);
      color: var(--act-teal);
    }

    .act-page-btn.active {
      background: var(--act-teal);
      color: white;
      border-color: var(--act-teal);
      box-shadow: 0 4px 12px rgba(0, 169, 157, 0.3);
    }

    .act-page-btn.nav-btn {
      width: auto;
      padding: 0 1rem;
      gap: 0.4rem;
      font-size: 0.8rem;
    }

    .act-page-btn:disabled,
    .act-page-btn[disabled] {
      opacity: 0.4;
      cursor: not-allowed;
      pointer-events: none;
    }

    /* â”€â”€â”€ ARCHIVE SECTION (magazine style) â”€â”€â”€ */
    .act-archive-section {
      background: var(--act-warm);
      padding: 4rem 0 5rem;
    }

    .act-archive-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .act-section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .act-section-sub {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--act-teal);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 0.75rem;
    }

    .act-section-sub::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--act-teal);
    }

    .act-section-header h2 {
      font-family: Arial, sans-serif;
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--act-blue);
      margin: 0;
      line-height: 1.15;
    }

    /* Year accordion — magazine identical */
    .act-year-block {
      margin-bottom: 1.25rem;
    }

    .act-year-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      padding: 1.25rem 1.5rem;
      background: white;
      border: 1px solid var(--act-border);
      border-radius: 12px;
      transition: all 0.2s;
      user-select: none;
      margin-bottom: 0;
    }

    .act-year-toggle:hover {
      background: #F8FAFC;
      border-color: var(--act-teal);
    }

    .act-year-toggle-left {
      display: flex;
      align-items: baseline;
      gap: 1.5rem;
    }

    .act-year-num {
      font-family: Arial, sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--act-blue);
      line-height: 1;
    }

    .act-year-meta {
      font-size: 0.85rem;
      color: #64748B;
      font-weight: 500;
    }

    .act-year-chevron {
      color: #94A3B8;
      transition: transform 0.3s ease;
      font-size: 1rem;
    }

    .act-year-block.open .act-year-chevron {
      transform: rotate(180deg);
    }

    .act-year-body {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
      padding: 0;
    }

    .act-year-block.open .act-year-body {
      max-height: 3000px;
      padding: 1.5rem 0 0.5rem;
    }

    /* Archive grid */
    .act-arch-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .act-arch-item {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      background: white;
      border: 1px solid var(--act-border);
      border-radius: 10px;
      padding: 1.1rem 1.4rem;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .act-arch-item:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
      transform: translateY(-1px);
    }

    .act-arch-cat-badge {
      display: inline-block;
      background: rgba(0, 169, 157, 0.08);
      color: var(--act-teal);
      border: 1px solid rgba(0, 169, 157, 0.22);
      border-radius: 20px;
      padding: 0.2rem 0.75rem;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      white-space: nowrap;
      flex-shrink: 0;
      margin-top: 0.3rem;
    }

    .act-arch-body {
      flex: 1;
    }

    .act-arch-edition {
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--act-gray);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.3rem;
    }

    .act-arch-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--act-ink);
      margin: 0 0 0.35rem;
      line-height: 1.4;
    }

    .act-arch-title a {
      color: inherit;
      text-decoration: none;
    }

    .act-arch-title a:hover {
      color: var(--act-teal);
    }

    .act-arch-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 0.7rem;
      padding-top: 0.7rem;
      border-top: 1px solid var(--act-border);
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    @media (max-width: 768px) {
      .act-news-item {
        flex-direction: column;
      }

      .act-news-thumb {
        width: 100%;
        height: 200px;
      }

      .act-news-body {
        padding: 1.25rem;
      }

      .act-ctas {
        flex-direction: column;
        align-items: flex-start;
      }
    }
  


/* Styles from asamblea-2026.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from balance-petrolero.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%)/*, url('img/report_taladros.png') right center / auto 100% no-repeat*/;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #06b0b8; font-weight: 700; font-size: .875rem;
  text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
  border: 1.5px solid #06b0b8;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.mag-btn-ghost:hover {
  background: #06b0b8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6,176,184,0.4);
}
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 5000px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from beneficios.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%)/*, url('img/report_taladros.png') right center / auto 100% no-repeat*/;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from busqueda.html */


            .pub-pane {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              opacity: 0;
              pointer-events: none;
              transform: translateY(5px);
              transition: opacity 0.3s ease, transform 0.3s ease;
            }

            .pub-pane.active {
              opacity: 1;
              pointer-events: auto;
              transform: translateY(0);
              position: relative;
            }

            .pub-grid {
              display: flex;
              justify-content: center;
              gap: 2.5rem;
              flex-wrap: wrap;
            }

            .pub-card {
              flex: 0 0 220px;
              text-decoration: none;
              display: flex;
              flex-direction: column;
              transition: transform 0.3s ease;
            }

            .pub-card:hover {
              transform: translateY(-4px);
            }

            .pub-img {
              width: 100%;
              aspect-ratio: 3/4;
              background: #f1f5f9;
              border-radius: 8px;
              overflow: hidden;
              margin-bottom: 0.8rem;
              box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
              border: 1px solid #eef2f6;
            }

            .pub-img img {
              width: 100%;
              height: 100%;
              object-fit: cover;
            }

            .pub-date {
              font-size: 0.75rem;
              color: var(--blue);
              font-weight: 700;
              margin-bottom: 0.3rem;
              text-transform: uppercase;
              letter-spacing: 0.5px;
            }

            .pub-title {
              font-size: 0.95rem;
              color: var(--gray-7);
              line-height: 1.3;
              font-weight: 500;
              margin: 0;
            }

            .pub-card:hover .pub-title {
              color: var(--blue);
            }
          


/* Styles from codigo-de-etica.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from comunicado-detalle.html */


    /* ===== COMUNICADO DETALLE PAGE STYLES ===== */
    :root {
      --cp-teal: #00A99D;
      --cp-blue: #0A2540;
      --cp-ink: #1E293B;
      --cp-gray: #64748B;
      --cp-border: #E2E8F0;
      --cp-bg: #F8FAFC;
      --cp-warm: #F7F5F2;
      --cp-gold: #C9A84C;
    }

    body {
      background: var(--cp-warm);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* â”€â”€â”€ HEADER MOCK â”€â”€â”€ */
    .cp-site-header {
      background: white;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .cp-site-header img {
      height: 48px;
    }

    .cp-nav-links {
      display: flex;
      gap: 2rem;
      font-weight: 600;
      color: var(--cp-ink);
    }

    .cp-nav-links a {
      text-decoration: none;
      color: inherit;
      transition: color 0.2s;
    }

    .cp-nav-links a:hover {
      color: var(--cp-teal);
    }

    /* â”€â”€â”€ HERO â”€â”€â”€ */
    .cp-detail-hero {
      background: var(--cp-blue);
      position: relative;
      padding: 6rem 2rem 5rem;
      text-align: center;
      color: white;
      overflow: hidden;
    }

    .cp-detail-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('images/press_release_5_1775859880449.png') center/cover;
      opacity: 0.15;
      mix-blend-mode: luminosity;
    }

    .cp-detail-header-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .cp-detail-cat {
      background: rgba(0, 169, 157, 0.15);
      color: #38efde;
      padding: 0.4rem 1rem;
      border-radius: 9999px;
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: inline-block;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(0, 169, 157, 0.3);
    }

    .cp-detail-title {
      font-family: Arial, sans-serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 1.5rem;
      text-wrap: balance;
    }

    .cp-detail-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
    }

    .cp-detail-meta i {
      color: var(--cp-teal);
    }

    /* â”€â”€â”€ CONTENT AREA â”€â”€â”€ */
    .cp-article-container {
      max-width: 1050px;
      margin: -3rem auto 4rem;
      background: white;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      position: relative;
      z-index: 10;
      padding: 4rem;
    }

    .cp-back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--cp-gray);
      font-weight: 600;
      text-decoration: none;
      margin-bottom: 2rem;
      font-size: 0.95rem;
      transition: all 0.2s;
    }

    .cp-back-link:hover {
      color: var(--cp-teal);
      transform: translateX(-4px);
    }

    .cp-article-body {
      font-size: 1.15rem;
      line-height: 1.8;
      color: #334155;
    }

    .cp-article-body p {
      margin-bottom: 1.75rem;
    }

    .cp-article-body p.lead {
      font-size: 1.65rem;
      font-weight: 800;
      line-height: 1.45;
      color: var(--cp-blue);
      margin-bottom: 2.5rem;
    }

    .cp-article-body img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 2.5rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .cp-article-body h3 {
      font-family: Arial, sans-serif;
      font-size: 1.8rem;
      color: var(--cp-ink);
      margin: 2.5rem 0 1rem;
    }

    .cp-article-body blockquote {
      border-left: 4px solid var(--cp-teal);
      background: var(--cp-bg);
      padding: 1.5rem 2rem;
      font-style: italic;
      color: var(--cp-blue);
      border-radius: 0 8px 8px 0;
      margin: 2.5rem 0;
      font-size: 1.2rem;
    }

    .cp-share-bottom {
      margin-top: 4rem;
      padding-top: 2rem;
      border-top: 1px solid var(--cp-border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .cp-share-bottom-label {
      font-weight: 600;
      color: var(--cp-ink);
    }

    .cp-share-links {
      display: flex;
      gap: 0.75rem;
    }

    .cp-share-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--cp-bg);
      color: var(--cp-gray);
      text-decoration: none;
      transition: all 0.2s;
    }

    .cp-share-links a:hover {
      background: var(--cp-teal);
      color: white;
      transform: translateY(-2px);
    }

    /* ===== FOOTER ===== */
    .cp-footer-simple {
      background: var(--cp-blue);
      color: white;
      text-align: center;
      padding: 3rem 2rem;
      margin-top: auto;
    }

    @media (max-width: 768px) {
      .cp-article-container { padding: 2rem; margin-top: -2rem; margin-inline: 1rem; }
      .cp-detail-hero { padding: 4rem 1rem 3rem; }
      .cp-detail-title { font-size: 2rem; }
    }
  


/* Styles from comunicados.html */


    /* ===== COMUNICADOS PAGE STYLES ===== */
    :root {
      --cp-teal: #00A99D;
      --cp-blue: #0A2540;
      --cp-ink: #1E293B;
      --cp-gray: #64748B;
      --cp-border: #E2E8F0;
      --cp-bg: #F8FAFC;
      --cp-warm: #F7F5F2;
      --cp-gold: #C9A84C;
    }

    body {
      background: var(--cp-warm);
    }

    /* â”€â”€â”€ HERO â”€â”€â”€ */
    .cp-hero {
      background: var(--cp-blue);
      position: relative;
      overflow: hidden;
      min-height: 420px;
      display: flex;
      align-items: center;
      margin-top: 0;
    }

    .cp-hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(10, 37, 64, 0.97) 45%, rgba(10, 37, 64, 0.75) 100%),
        none;
    }

    .cp-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }

    .cp-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--cp-teal);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .cp-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--cp-teal);
    }

    .cp-hero-title {
      font-family: Arial, sans-serif;
      font-size: clamp(2.5rem, 5vw, 4.2rem);
      font-weight: 800;
      color: white;
      line-height: 1.1;
      letter-spacing: -1px;
      max-width: 900px;
      margin: 0;
    }

    .cp-hero-sub {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.72);
      max-width: 580px;
      line-height: 1.8;
      font-weight: 300;
      margin: 0;
    }

    .cp-hero-contact {
      display: inline-flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 10px;
      padding: 0.75rem 1.25rem;
      font-size: 0.83rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .cp-hero-contact a {
      color: var(--cp-teal);
      text-decoration: none;
      font-weight: 600;
    }

    .cp-hero-contact a:hover {
      color: #e0bf70;
    }

    .cp-hero-contact span {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
    }

    .cp-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      align-items: center;
    }

    .cp-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      background: var(--blue);
      color: white;
      font-weight: 600;
      font-size: .85rem;
      padding: .55rem 1.4rem;
      border-radius: 9999px;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      border: 1px solid transparent;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .cp-btn-primary:hover {
      background-color: var(--green) !important;
      color: white !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
    }

    /* â”€â”€â”€ CONTENT AREA â”€â”€â”€ */
    .cp-content-area {
      max-width: 1100px;
      margin: 0 auto;
      padding: 3rem 2rem 4rem;
    }

    .cp-section-header {
      margin-bottom: 2rem;
    }

    .cp-section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--cp-teal);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 0.75rem;
    }

    .cp-section-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--cp-teal);
    }

    .cp-section-title {
      font-family: Arial, sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--cp-blue);
      margin: 0;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    /* â”€â”€â”€ FILTER BAR â”€â”€â”€ */
    .cp-filter-bar {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-bottom: 1.75rem;
    }

    .cp-filter-btn {
      padding: 0.45rem 1.1rem;
      border-radius: 9999px;
      border: 1px solid var(--cp-border);
      background: white;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--cp-gray);
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .cp-filter-btn:hover {
      border-color: var(--cp-teal);
      color: var(--cp-teal);
    }

    .cp-filter-btn.active {
      background: var(--cp-teal);
      color: white;
      border-color: var(--cp-teal);
    }

    /* â”€â”€â”€ DROPDOWN FILTER â”€â”€â”€ */
    .cp-filter-dropdown {
      position: relative;
      display: inline-block;
    }
    .cp-filter-menu {
      position: absolute;
      top: calc(100% + 5px);
      left: 0;
      background: white;
      border: 1px solid var(--cp-border);
      border-radius: 8px;
      padding: 0.5rem;
      display: none;
      flex-direction: column;
      gap: 0.25rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      z-index: 100;
      min-width: 200px;
    }
    .cp-filter-menu.show {
      display: flex;
    }
    .cp-filter-menu .cp-filter-btn {
      border: none;
      border-radius: 4px;
      text-align: left;
      width: 100%;
    }
    .cp-filter-menu .cp-filter-btn:hover {
      background: #f8fafc;
    }
    .cp-filter-menu .cp-filter-btn.active {
      background: var(--cp-teal);
      color: white;
    }


    .cp-filter-search {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      background: white;
      border: 1px solid var(--cp-border);
      border-radius: 9999px;
      padding: 0.65rem 1.4rem;
      font-size: 0.95rem;
      color: var(--cp-gray);
    }

    .cp-filter-search input {
      border: none;
      outline: none;
      background: transparent;
      font-size: 0.9rem;
      color: var(--cp-ink);
      width: 260px;
    }


    .cp-share-bar {
      background: var(--cp-bg);
      border-radius: 8px;
      padding: 0.65rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1rem;
    }

    .share-left {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }

    .share-label {
      font-size: 0.72rem;
      font-weight: 800;
      color: #94A3B8;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-right: 0.25rem;
    }

    .share-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .stat-item {
      font-size: 0.85rem;
      font-weight: 600;
      color: #64748B;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .stat-item i.fa-heart {
      color: #CBD5E1;
    }

    /* â”€â”€â”€ PRESS RELEASES LIST â”€â”€â”€ */
    .cp-press-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--cp-border);
      border-radius: 12px;
      overflow: hidden;
      background: white;
    }

    .cp-press-item {
      display: flex;
      gap: 0;
      border-bottom: 1px solid var(--cp-border);
      background: #fff;
      transition: background 0.2s;
    }

    .cp-press-item:last-child {
      border-bottom: none;
    }

    .cp-press-item:hover {
      background: #FAFCFE;
    }

    .cp-press-thumb {
      width: 350px;
      flex-shrink: 0;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f8fafc;
    }

    .cp-press-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .cp-press-item:hover .cp-press-thumb img {
      transform: scale(1.03);
    }

    .cp-press-body {
      flex: 1;
      padding: 1.5rem 1.75rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .cp-press-cat {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--cp-teal);
      margin-bottom: 0.4rem;
    }

    .cp-press-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--cp-ink);
      margin: 0 0 0.35rem;
      line-height: 1.4;
    }

    .cp-press-title a {
      color: inherit;
      text-decoration: none;
    }

    .cp-press-title a:hover {
      color: var(--cp-teal);
    }

    .cp-press-date {
      font-size: 0.78rem;
      color: var(--cp-gray);
      margin-bottom: 0.55rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .cp-press-excerpt {
      font-size: 0.9rem;
      color: #4A5568;
      line-height: 1.65;
    }

    .cp-press-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 0.85rem;
      border-top: 1px solid var(--cp-border);
      margin-top: 0.85rem;
      gap: 0.65rem;
    }

    .cp-press-tags {
      display: flex;
      gap: 0.4rem;
      flex-wrap: wrap;
      flex: 1;
    }

    .cp-tag {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 0.18rem 0.6rem;
      border-radius: 20px;
      background: rgba(0, 169, 157, 0.08);
      color: var(--cp-teal);
      border: 1px solid rgba(0, 169, 157, 0.2);
    }

    .cp-press-actions {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .cp-dl-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--cp-gray);
      border: 1px solid var(--cp-border);
      border-radius: 6px;
      padding: 0.3rem 0.75rem;
      text-decoration: none;
      background: white;
      transition: all 0.2s;
      cursor: pointer;
    }

    .cp-dl-btn:hover {
      border-color: var(--cp-teal);
      color: var(--cp-teal);
    }

    .share-btn {
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid #E2E8F0;
      color: #64748B;
      background: white;
      text-decoration: none;
      transition: all 0.25s;
    }

    .share-btn:hover {
      background: var(--cp-teal);
      color: white;
      border-color: var(--cp-teal);
    }

    /* â”€â”€â”€ PAGINATION â”€â”€â”€ */
    .cp-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.65rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }

    .cp-page-btn {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      border: 1px solid var(--cp-border);
      background: white;
      color: var(--cp-ink);
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }

    .cp-page-btn:hover {
      border-color: var(--cp-teal);
      color: var(--cp-teal);
    }

    .cp-page-btn.active {
      background: var(--cp-teal);
      color: white;
      border-color: var(--cp-teal);
      box-shadow: 0 4px 12px rgba(0, 169, 157, 0.3);
    }

    .cp-page-btn.nav-btn {
      width: auto;
      padding: 0 1rem;
      font-size: 0.8rem;
    }

    .cp-page-btn:disabled,
    .cp-page-btn[disabled] {
      opacity: 0.4;
      cursor: not-allowed;
      pointer-events: none;
    }

    /* â”€â”€â”€ CONTACT BANNER â”€â”€â”€ */
    .cp-contact-banner {
      background: var(--cp-blue);
      border-radius: 14px;
      padding: 2.25rem 2.5rem;
      margin-top: 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .cp-contact-banner h3 {
      font-family: Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: white;
      margin: 0 0 0.4rem;
    }

    .cp-contact-banner p {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.65);
      margin: 0;
    }

    .cp-contact-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .cp-contact-link {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 0.55rem 1.25rem;
      border-radius: 9999px;
      text-decoration: none;
      transition: all 0.25s;
    }

    .cp-contact-link.email {
      background: var(--cp-teal);
      color: white;
    }

    .cp-contact-link.email:hover {
      background: #009990;
      transform: translateY(-2px);
    }

    .cp-contact-link.phone {
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: rgba(255, 255, 255, 0.85);
    }

    .cp-contact-link.phone:hover {
      border-color: white;
      color: white;
    }

    @media (max-width: 768px) {
      .cp-press-item {
        flex-direction: column;
      }

      .cp-press-thumb {
        width: 100%;
        height: 180px;
      }

      .cp-press-body {
        padding: 1.25rem;
      }

      .cp-ctas {
        flex-direction: column;
        align-items: flex-start;
      }

      .cp-filter-search {
        margin-left: 0;
      }

      .cp-contact-banner {
        flex-direction: column;
      }
    }
  


/* Styles from config_banners.html */


        ::-webkit-scrollbar { width: 6px; height: 6px; }
        ::-webkit-scrollbar-track { background: #f1f5f9; }
        ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

        .slide-over-panel {
            transition: transform 300ms ease-in-out;
        }

        .rocket-heartbeat { display: inline-block; animation: heartbeat 1.5s ease-in-out infinite; }
        @keyframes heartbeat {
            0% { transform: scale(1); }
            14% { transform: scale(1.3); }
            28% { transform: scale(1); }
            42% { transform: scale(1.3); }
            70% { transform: scale(1); }
        }
    


/* Styles from contacto.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from contexto_arquitectura_campetrol.html */


        :root {
            --pr: #2663eb;
            --sb: #060d1f;
        }
        body {
            background-color: var(--sb);
            color: #ffffff;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 15% 10%, rgba(38, 99, 235, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 85% 90%, rgba(38, 99, 235, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(6, 13, 31, 0.8) 0%, transparent 100%);
            background-attachment: fixed;
        }
        /* Componentes Glassmorphism Premium */
        .glass-card {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 1.25rem;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s ease;
            position: relative;
            overflow: hidden;
        }
        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.03), transparent);
            transform: skewX(-20deg);
            transition: 0.7s;
        }
        .glass-card:hover::before {
            left: 150%;
        }
        .glass-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(38, 99, 235, 0.15);
            border-color: rgba(38, 99, 235, 0.4);
            background: rgba(255, 255, 255, 0.04);
        }
        
        /* Animaciones del Corazón y Partículas */
        .rocket-heartbeat {
            display: inline-block;
            animation: heartbeat 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            filter: drop-shadow(0 0 5px rgba(239, 68, 68, 0.5));
        }
        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            15% { transform: scale(1.35); }
            30% { transform: scale(1); }
            45% { transform: scale(1.35); }
        }
        .particle {
            position: absolute;
            background: rgba(96, 165, 250, 0.3);
            border-radius: 50%;
            animation: float 10s infinite linear;
            box-shadow: 0 0 10px rgba(96, 165, 250, 0.2);
        }
        @keyframes float {
            0% { transform: translateY(110vh) scale(0) rotate(0deg); opacity: 0; }
            20% { opacity: 1; }
            80% { opacity: 1; }
            100% { transform: translateY(-20vh) scale(1) rotate(360deg); opacity: 0; }
        }
        
        /* Textos y Gradientes */
        .gradient-text {
            background: linear-gradient(135deg, #93c5fd 0%, #3b82f6 50%, #1e3a8a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: gradient-flow 5s ease infinite;
        }
        @keyframes gradient-flow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .section-badge {
            background: rgba(38, 99, 235, 0.2);
            border: 1px solid rgba(38, 99, 235, 0.4);
            color: #93c5fd;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        /* Layout & Footer */
        .rocket-credits-footer {
            text-align: center;
            padding: 3rem 0;
            margin-top: 6rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            background: linear-gradient(to top, rgba(6, 13, 31, 0.9), transparent);
            color: #9ca3af;
        }
        .rocket-credits-footer a {
            color: #60a5fa;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .rocket-credits-footer a:hover {
            color: #93c5fd;
            text-decoration: underline;
            text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
        }
    


/* Styles from Control_Mision.html */


    :root {
      --pr: #2663eb;
      --sb: #060d1f;
      --text: #e2e8f0;
      --glass-bg: rgba(255, 255, 255, 0.05);
      --glass-border: rgba(255, 255, 255, 0.1);
      --accent: #00f0ff;
    }

    body, html {
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
      background-color: var(--sb);
      color: var(--text);
      overflow-x: hidden;
    }

    /* Stars Canvas Background */
    #space-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      background: radial-gradient(circle at center, #0b1536 0%, #060d1f 100%);
    }

    /* Particles */
    .particle {
      position: absolute;
      background: white;
      border-radius: 50%;
      opacity: 0.5;
      animation: float 10s infinite linear;
      z-index: -1;
    }

    @keyframes float {
      0% { transform: translateY(100vh) translateX(0); opacity: 0; }
      10% { opacity: 0.8; }
      90% { opacity: 0.8; }
      100% { transform: translateY(-100px) translateX(20px); opacity: 0; }
    }

    .layout {
      display: flex;
      min-height: 100vh;
    }

    /* Sidebar */
    .sidebar {
      width: 280px;
      background: var(--glass-bg);
      backdrop-filter: blur(10px);
      border-right: 1px solid var(--glass-border);
      padding: 2rem 1rem;
      display: flex;
      flex-direction: column;
    }

    .sidebar h1 {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      text-align: center;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .nav-links {
      list-style: none;
      padding: 0;
    }

    .nav-links li {
      margin-bottom: 1rem;
    }

    .nav-links a {
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .nav-links a:hover, .nav-links a.active {
      background: rgba(38, 99, 235, 0.2);
      border-left: 4px solid var(--accent);
    }

    /* Main Content */
    .main-content {
      flex: 1;
      padding: 2rem 4rem;
      overflow-y: auto;
    }

    .glass-panel {
      background: var(--glass-bg);
      backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    }

    h2 {
      color: var(--accent);
      border-bottom: 1px solid var(--glass-border);
      padding-bottom: 10px;
      margin-top: 0;
    }

    /* Typography */
    .code-font {
      font-family: 'JetBrains Mono', monospace;
      background: rgba(0, 0, 0, 0.3);
      padding: 2px 6px;
      border-radius: 4px;
      color: #a3b8cc;
    }

    /* Launch Button */
    .launch-container {
      text-align: center;
      margin: 3rem 0;
    }

    #launch-btn {
      background: linear-gradient(135deg, var(--pr), #0f3d9b);
      color: white;
      border: none;
      padding: 15px 40px;
      font-size: 1.2rem;
      font-weight: bold;
      border-radius: 30px;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 2px;
      box-shadow: 0 0 20px rgba(38, 99, 235, 0.5);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    #launch-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
    }

    #launch-btn.blast-off {
      animation: blast 1s forwards;
    }

    @keyframes blast {
      0% { transform: scale(1); }
      50% { transform: scale(0.9); }
      100% { transform: translateY(-500px) scale(0); opacity: 0; }
    }

    /* UFO */
    .ufo {
      position: fixed;
      top: 50px;
      right: -100px;
      font-size: 3rem;
      animation: flyBy 15s infinite linear;
      z-index: 10;
    }

    @keyframes flyBy {
      0% { right: -100px; transform: translateY(0) rotate(-10deg); }
      50% { transform: translateY(-50px) rotate(10deg); }
      100% { right: 110vw; transform: translateY(0) rotate(-10deg); }
    }

    /* Footer / Credits */
    .rocket-credits-footer {
      margin-top: auto;
      text-align: center;
      font-size: 0.85rem;
      color: #8892b0;
      padding-top: 20px;
    }

    .rocket-credits-footer a {
      color: var(--accent);
      text-decoration: none;
      font-weight: bold;
    }

    .rocket-heartbeat {
      display: inline-block;
      animation: heartbeat 1.5s ease-in-out infinite;
      color: #ff4b4b;
    }

    @keyframes heartbeat {
      0% { transform: scale(1); }
      14% { transform: scale(1.3); }
      28% { transform: scale(1); }
      42% { transform: scale(1.3); }
      70% { transform: scale(1); }
    }

    /* Grid layout for cards */
    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
  


/* Styles from datos-campetrol.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%)/*, url('img/report_taladros.png') right center / auto 100% no-repeat*/;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #06b0b8; font-weight: 700; font-size: .875rem;
  text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
  border: 1.5px solid #06b0b8;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.mag-btn-ghost:hover {
  background: #06b0b8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6,176,184,0.4);
}
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 5000px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from documentacion-api.html */


        body { font-family: 'Inter', sans-serif; background-color: #0f172a; color: #f8fafc; }
        code, pre { font-family: 'JetBrains Mono', monospace; }
        .glass-card { background: rgba(30, 41, 59, 0.7); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.08); }
        .sidebar-link.active { background-color: rgba(37, 99, 235, 0.15); color: #60a5fa; border-left-color: #3b82f6; }
        .custom-scrollbar::-webkit-scrollbar { width: 6px; height: 6px; }
        .custom-scrollbar::-webkit-scrollbar-track { background: #1e293b; }
        .custom-scrollbar::-webkit-scrollbar-thumb { background: #475569; border-radius: 4px; }
        
        .rocket-heartbeat { display: inline-block; animation: heartbeat 1.5s ease-in-out infinite; }
        @keyframes heartbeat {
            0% { transform: scale(1); }
            14% { transform: scale(1.3); }
            28% { transform: scale(1); }
            42% { transform: scale(1.3); }
            70% { transform: scale(1); }
        }
    


/* Styles from documentacion_ecosistema_cms.html */


        :root {
            --pr: #2663eb;
            --sb: #060d1f;
            --accent: #3b82f6;
            --success: #10b981;
        }
        body {
            background-color: var(--sb);
            color: #ffffff;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 10%, rgba(38, 99, 235, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(6, 13, 31, 0.8) 0%, transparent 100%);
            background-attachment: fixed;
        }
        
        /* Glassmorphism Premium Cards */
        .glass-card {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 1.25rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.02), transparent);
            transform: skewX(-20deg);
            transition: 0.8s;
        }
        .glass-card:hover::before {
            left: 150%;
        }
        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(38, 99, 235, 0.12);
            border-color: rgba(38, 99, 235, 0.3);
            background: rgba(255, 255, 255, 0.03);
        }
        
        /* Heartbeat Animation for Signature Footer */
        .rocket-heartbeat {
            display: inline-block;
            animation: heartbeat 1.5s ease-in-out infinite;
        }
        @keyframes heartbeat {
            0% { transform: scale(1); }
            14% { transform: scale(1.3); }
            28% { transform: scale(1); }
            42% { transform: scale(1.3); }
            70% { transform: scale(1); }
        }
        .particle {
            position: absolute;
            background: rgba(96, 165, 250, 0.2);
            border-radius: 50%;
            animation: float 12s infinite linear;
            box-shadow: 0 0 10px rgba(96, 165, 250, 0.1);
        }
        @keyframes float {
            0% { transform: translateY(110vh) scale(0); opacity: 0; }
            20% { opacity: 0.8; }
            80% { opacity: 0.8; }
            100% { transform: translateY(-10vh) scale(1); opacity: 0; }
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #a7f3d0 0%, #3b82f6 50%, #1d4ed8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .badge {
            background: rgba(38, 99, 235, 0.15);
            border: 1px solid rgba(38, 99, 235, 0.3);
            color: #93c5fd;
            padding: 0.2rem 0.6rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #060d1f;
        }
        ::-webkit-scrollbar-thumb {
            background: #1e293b;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #334155;
        }
        
        /* Mermaid styling adaptation */
        .mermaid {
            background: rgba(0,0,0,0.3) !important;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .rocket-credits-footer {
            text-align: center;
            padding: 3rem 0;
            margin-top: 6rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            background: linear-gradient(to top, rgba(6, 13, 31, 0.9), transparent);
            color: #9ca3af;
        }
        .rocket-credits-footer a {
            color: #60a5fa;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .rocket-credits-footer a:hover {
            color: #93c5fd;
            text-decoration: underline;
            text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
        }
    


/* Styles from estatutos.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from estrategia-sostenibilidad.html */


    /* Vanguard Sustainability UI */
    .bg-vanguard-organic {
      background: linear-gradient(135deg, #f8fcfb 0%, #ecf7f5 100%);
      position: relative;
    }

    .bg-vanguard-organic::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(0,169,157,0.02)" d="M50 0 C 20 20 80 80 50 100 L 100 100 L 100 0 Z"/></svg>') center/cover;
      pointer-events: none;
    }

    .text-balance {
      text-wrap: balance;
    }

    .neumorphic-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    }

    .neumorphic-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 169, 157, 0.1);
    }

    .tab-btn.neumorphic-tab {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 1.5rem !important;
      transition: all 0.4s ease;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(5px);
      border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .tab-btn.neumorphic-tab:hover {
      background: white;
      transform: translateY(-4px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
    }

    .tab-btn.neumorphic-tab.active {
      background: linear-gradient(135deg, var(--green), #14806a) !important;
      color: white !important;
      transform: scale(1.05);
      box-shadow: 0 15px 30px rgba(0, 169, 157, 0.35) !important;
      border-color: transparent !important;
    }

    .tab-btn.neumorphic-tab.active svg {
      stroke: white !important;
      fill: rgba(255, 255, 255, 0.1) !important;
    }

    .tab-btn.neumorphic-tab svg {
      transition: stroke 0.3s;
      stroke: var(--green);
    }

    .download-pill {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 1.25rem 1.5rem;
      background: white;
      border-left: 4px solid var(--green);
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
      text-decoration: none !important;
      transition: all 0.3s;
    }

    .download-pill:hover {
      transform: translateX(8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      border-left-color: var(--blue-dark);
      background: #fdfdfd;
    }

    .download-pill svg {
      stroke: var(--green);
      transition: stroke 0.3s;
      flex-shrink: 0;
    }

    .download-pill:hover svg {
      stroke: var(--blue-dark);
    }

    .download-pill-text {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--blue-dark);
      transition: color 0.3s;
      line-height: 1.3;
    }

    .download-pill:hover .download-pill-text {
      color: var(--green);
    }

    .parallax-materialidad {
      background: linear-gradient(rgba(250, 252, 250, 0.82), rgba(250, 252, 250, 0.82)), url('img/bg_sostenibilidad_materialidad.png') center/cover fixed !important;
    }

    .materialidad-glass {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: 24px;
      padding: 4rem 3rem;
      margin: 0 auto;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    }

    @keyframes softFloat {
      0% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }

      100% {
        transform: translateY(0);
      }
    }

    .float-icon {
      animation: softFloat 4s ease-in-out infinite;
    }
  


/* Styles from eventos-cumbre-petroleo.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from eventos-foro-offshore.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from eventos-misiones-comerciales.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from eventos-regionales.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from eventos-ruedas-relacionamiento.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from eventos-torneo-golf.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from eventos-webinars.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from eventos-workshops.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from eventos.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from informe-campetrol-taladros-y-produccion.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%)/*, url('img/report_taladros.png') right center / auto 100% no-repeat*/;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #06b0b8; font-weight: 700; font-size: .875rem;
  text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
  border: 1.5px solid #06b0b8;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.mag-btn-ghost:hover {
  background: #06b0b8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6,176,184,0.4);
}
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
  align-self: start;
}
.mag-featured-cover img {
  width: 100%; height: auto;
  display: block;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 5000px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from junta-directiva.html */


            .pub-pane {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              opacity: 0;
              pointer-events: none;
              transform: translateY(5px);
              transition: opacity 0.3s ease, transform 0.3s ease;
            }

            .pub-pane.active {
              opacity: 1;
              pointer-events: auto;
              transform: translateY(0);
              position: relative;
            }

            .pub-grid {
              display: flex;
              justify-content: center;
              gap: 2.5rem;
              flex-wrap: wrap;
            }

            .pub-card {
              flex: 0 0 220px;
              text-decoration: none;
              display: flex;
              flex-direction: column;
              transition: transform 0.3s ease;
            }

            .pub-card:hover {
              transform: translateY(-4px);
            }

            .pub-img {
              width: 100%;
              aspect-ratio: 3/4;
              background: #f1f5f9;
              border-radius: 8px;
              overflow: hidden;
              margin-bottom: 0.8rem;
              box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
              border: 1px solid #eef2f6;
            }

            .pub-img img {
              width: 100%;
              height: 100%;
              object-fit: cover;
            }

            .pub-date {
              font-size: 0.75rem;
              color: var(--blue);
              font-weight: 700;
              margin-bottom: 0.3rem;
              text-transform: uppercase;
              letter-spacing: 0.5px;
            }

            .pub-title {
              font-size: 0.95rem;
              color: var(--gray-7);
              line-height: 1.3;
              font-weight: 500;
              margin: 0;
            }

            .pub-card:hover .pub-title {
              color: var(--blue);
            }
          


/* Styles from libros-campetrol.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%)/*, url('img/report_taladros.png') right center / auto 100% no-repeat*/;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #06b0b8; font-weight: 700; font-size: .875rem;
  text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
  border: 1.5px solid #06b0b8;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.mag-btn-ghost:hover {
  background: #06b0b8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6,176,184,0.4);
}
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 5000px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from magazine.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%)/*, url('img/report_magazine.png') right center / auto 100% no-repeat*/;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #06b0b8; font-weight: 700; font-size: .875rem;
  text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
  border: 1.5px solid #06b0b8;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.mag-btn-ghost:hover {
  background: #06b0b8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6,176,184,0.4);
}
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 5000px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from manifiesto.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from manual-de-conducta.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from manual-de-marca.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from mapa-de-sitio.html */


            .pub-pane {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              opacity: 0;
              pointer-events: none;
              transform: translateY(5px);
              transition: opacity 0.3s ease, transform 0.3s ease;
            }

            .pub-pane.active {
              opacity: 1;
              pointer-events: auto;
              transform: translateY(0);
              position: relative;
            }

            .pub-grid {
              display: flex;
              justify-content: center;
              gap: 2.5rem;
              flex-wrap: wrap;
            }

            .pub-card {
              flex: 0 0 220px;
              text-decoration: none;
              display: flex;
              flex-direction: column;
              transition: transform 0.3s ease;
            }

            .pub-card:hover {
              transform: translateY(-4px);
            }

            .pub-img {
              width: 100%;
              aspect-ratio: 3/4;
              background: #f1f5f9;
              border-radius: 8px;
              overflow: hidden;
              margin-bottom: 0.8rem;
              box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
              border: 1px solid #eef2f6;
            }

            .pub-img img {
              width: 100%;
              height: 100%;
              object-fit: cover;
            }

            .pub-date {
              font-size: 0.75rem;
              color: var(--blue);
              font-weight: 700;
              margin-bottom: 0.3rem;
              text-transform: uppercase;
              letter-spacing: 0.5px;
            }

            .pub-title {
              font-size: 0.95rem;
              color: var(--gray-7);
              line-height: 1.3;
              font-weight: 500;
              margin: 0;
            }

            .pub-card:hover .pub-title {
              color: var(--blue);
            }
          


/* Styles from mil-empresas-mas-grandes-de-colombia.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%)/*, url('img/report_taladros.png') right center / auto 100% no-repeat*/;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #06b0b8; font-weight: 700; font-size: .875rem;
  text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
  border: 1.5px solid #06b0b8;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.mag-btn-ghost:hover {
  background: #06b0b8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6,176,184,0.4);
}
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 5000px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from mision-y-vision.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from monitoreo-legislativo.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%)/*, url('img/report_normativity.png') right center / auto 100% no-repeat*/;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #06b0b8; font-weight: 700; font-size: .875rem;
  text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
  border: 1.5px solid #06b0b8;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.mag-btn-ghost:hover {
  background: #06b0b8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6,176,184,0.4);
}
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 5000px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from old_sostenibilidad.html */


    /* Vanguard Sustainability UI */
    .bg-vanguard-organic {
      background: linear-gradient(135deg, #f8fcfb 0%, #ecf7f5 100%);
      position: relative;
    }

    .bg-vanguard-organic::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(0,169,157,0.02)" d="M50 0 C 20 20 80 80 50 100 L 100 100 L 100 0 Z"/></svg>') center/cover;
      pointer-events: none;
    }

    .text-balance {
      text-wrap: balance;
    }

    .neumorphic-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    }

    .neumorphic-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 169, 157, 0.1);
    }

    .tab-btn.neumorphic-tab {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 1.5rem !important;
      transition: all 0.4s ease;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(5px);
      border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .tab-btn.neumorphic-tab:hover {
      background: white;
      transform: translateY(-4px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
    }

    .tab-btn.neumorphic-tab.active {
      background: linear-gradient(135deg, var(--green), #14806a) !important;
      color: white !important;
      transform: scale(1.05);
      box-shadow: 0 15px 30px rgba(0, 169, 157, 0.35) !important;
      border-color: transparent !important;
    }

    .tab-btn.neumorphic-tab.active svg {
      stroke: white !important;
      fill: rgba(255, 255, 255, 0.1) !important;
    }

    .tab-btn.neumorphic-tab svg {
      transition: stroke 0.3s;
      stroke: var(--green);
    }

    .download-pill {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 1.25rem 1.5rem;
      background: white;
      border-left: 4px solid var(--green);
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
      text-decoration: none !important;
      transition: all 0.3s;
    }

    .download-pill:hover {
      transform: translateX(8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      border-left-color: var(--blue-dark);
      background: #fdfdfd;
    }

    .download-pill svg {
      stroke: var(--green);
      transition: stroke 0.3s;
      flex-shrink: 0;
    }

    .download-pill:hover svg {
      stroke: var(--blue-dark);
    }

    .download-pill-text {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--blue-dark);
      transition: color 0.3s;
      line-height: 1.3;
    }

    .download-pill:hover .download-pill-text {
      color: var(--green);
    }

    .parallax-materialidad {
      background: linear-gradient(rgba(250, 252, 250, 0.82), rgba(250, 252, 250, 0.82)), url('img/bg_sostenibilidad_materialidad.png') center/cover fixed !important;
    }

    .materialidad-glass {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: 24px;
      padding: 4rem 3rem;
      margin: 0 auto;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    }

    @keyframes softFloat {
      0% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }

      100% {
        transform: translateY(0);
      }
    }

    .float-icon {
      animation: softFloat 4s ease-in-out infinite;
    }
  


/* Styles from organigrama.html */


            .pub-pane {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              opacity: 0;
              pointer-events: none;
              transform: translateY(5px);
              transition: opacity 0.3s ease, transform 0.3s ease;
            }

            .pub-pane.active {
              opacity: 1;
              pointer-events: auto;
              transform: translateY(0);
              position: relative;
            }

            .pub-grid {
              display: flex;
              justify-content: center;
              gap: 2.5rem;
              flex-wrap: wrap;
            }

            .pub-card {
              flex: 0 0 220px;
              text-decoration: none;
              display: flex;
              flex-direction: column;
              transition: transform 0.3s ease;
            }

            .pub-card:hover {
              transform: translateY(-4px);
            }

            .pub-img {
              width: 100%;
              aspect-ratio: 3/4;
              background: #f1f5f9;
              border-radius: 8px;
              overflow: hidden;
              margin-bottom: 0.8rem;
              box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
              border: 1px solid #eef2f6;
            }

            .pub-img img {
              width: 100%;
              height: 100%;
              object-fit: cover;
            }

            .pub-date {
              font-size: 0.75rem;
              color: var(--blue);
              font-weight: 700;
              margin-bottom: 0.3rem;
              text-transform: uppercase;
              letter-spacing: 0.5px;
            }

            .pub-title {
              font-size: 0.95rem;
              color: var(--gray-7);
              line-height: 1.3;
              font-weight: 500;
              margin: 0;
            }

            .pub-card:hover .pub-title {
              color: var(--blue);
            }
          


/* Styles from politica-de-privacidad.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from position-papers.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #06b0b8; font-weight: 700; font-size: .875rem;
  text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
  border: 1.5px solid #06b0b8;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.mag-btn-ghost:hover {
  background: #06b0b8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6,176,184,0.4);
}
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 5000px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from premios-sostenibilidad.html */


    /* Vanguard Sustainability UI */
    .bg-vanguard-organic {
      background: linear-gradient(135deg, #f8fcfb 0%, #ecf7f5 100%);
      position: relative;
    }

    .bg-vanguard-organic::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(0,169,157,0.02)" d="M50 0 C 20 20 80 80 50 100 L 100 100 L 100 0 Z"/></svg>') center/cover;
      pointer-events: none;
    }

    .text-balance {
      text-wrap: balance;
    }

    .neumorphic-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    }

    .neumorphic-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 169, 157, 0.1);
    }

    .tab-btn.neumorphic-tab {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 1.5rem !important;
      transition: all 0.4s ease;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(5px);
      border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .tab-btn.neumorphic-tab:hover {
      background: white;
      transform: translateY(-4px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
    }

    .tab-btn.neumorphic-tab.active {
      background: linear-gradient(135deg, var(--green), #14806a) !important;
      color: white !important;
      transform: scale(1.05);
      box-shadow: 0 15px 30px rgba(0, 169, 157, 0.35) !important;
      border-color: transparent !important;
    }

    .tab-btn.neumorphic-tab.active svg {
      stroke: white !important;
      fill: rgba(255, 255, 255, 0.1) !important;
    }

    .tab-btn.neumorphic-tab svg {
      transition: stroke 0.3s;
      stroke: var(--green);
    }

    .download-pill {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 1.25rem 1.5rem;
      background: white;
      border-left: 4px solid var(--green);
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
      text-decoration: none !important;
      transition: all 0.3s;
    }

    .download-pill:hover {
      transform: translateX(8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      border-left-color: var(--blue-dark);
      background: #fdfdfd;
    }

    .download-pill svg {
      stroke: var(--green);
      transition: stroke 0.3s;
      flex-shrink: 0;
    }

    .download-pill:hover svg {
      stroke: var(--blue-dark);
    }

    .download-pill-text {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--blue-dark);
      transition: color 0.3s;
      line-height: 1.3;
    }

    .download-pill:hover .download-pill-text {
      color: var(--green);
    }

    .parallax-materialidad {
      background: linear-gradient(rgba(250, 252, 250, 0.82), rgba(250, 252, 250, 0.82)), url('img/bg_sostenibilidad_materialidad.png') center/cover fixed !important;
    }

    .materialidad-glass {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: 24px;
      padding: 4rem 3rem;
      margin: 0 auto;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    }

    @keyframes softFloat {
      0% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }

      100% {
        transform: translateY(0);
      }
    }

    .float-icon {
      animation: softFloat 4s ease-in-out infinite;
    }
  


/* Styles from principal.html */


            .pub-pane {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              opacity: 0;
              pointer-events: none;
              transform: translateY(5px);
              transition: opacity 0.3s ease, transform 0.3s ease;
            }

            .pub-pane.active {
              opacity: 1;
              pointer-events: auto;
              transform: translateY(0);
              position: relative;
            }

            .pub-grid {
              display: flex;
              justify-content: center;
              gap: 2.5rem;
              flex-wrap: wrap;
            }

            .pub-card {
              flex: 0 0 220px;
              text-decoration: none;
              display: flex;
              flex-direction: column;
              transition: transform 0.3s ease;
            }

            .pub-card:hover {
              transform: translateY(-4px);
            }

            .pub-img {
              width: 100%;
              aspect-ratio: 3/4;
              background: #f1f5f9;
              border-radius: 8px;
              overflow: hidden;
              margin-bottom: 0.8rem;
              box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
              border: 1px solid #eef2f6;
            }

            .pub-img img {
              width: 100%;
              height: 100%;
              object-fit: cover;
            }

            .pub-date {
              font-size: 0.75rem;
              color: var(--blue);
              font-weight: 700;
              margin-bottom: 0.3rem;
              text-transform: uppercase;
              letter-spacing: 0.5px;
            }

            .pub-title {
              font-size: 0.95rem;
              color: var(--gray-7);
              line-height: 1.3;
              font-weight: 500;
              margin: 0;
            }

            .pub-card:hover .pub-title {
              color: var(--blue);
            }
          


/* Styles from programa-de-etica-y-transparencia.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from quienes-somos.html */


/* ===== MAGAZINE PAGE STYLES ===== */
:root {
  --mag-ink:   #0B1829;
  --mag-rule:  #E2E8F0;
  --mag-teal:  #00A99D;
  --mag-gold:  #C9A84C;
  --mag-warm:  #F7F5F0;
}

body { background: var(--mag-warm); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.mag-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.mag-hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%),
    url('img/report_taladros.png') right center / auto 100% no-repeat;
}
.mag-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mag-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--mag-teal); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--mag-teal);
}
.mag-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px;
}
.mag-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.mag-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
/* â”€â”€â”€ CTAs / BUTTONS â”€â”€â”€ */
.mag-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-btn-primary:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.mag-btn-outline:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}

.mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-gold); font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-btn-ghost:hover { color: #e0bf70; }
.mag-btn-ghost i { font-size: 0.85rem; }

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€ */
.mag-search-bar {
  background: white;
  border-bottom: 1px solid var(--mag-rule);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.2s;
}
.mag-search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.mag-search-form {
  flex: 1; display: flex; align-items: center;
  background: #F8FAFC; border: 1.5px solid var(--mag-rule);
  border-radius: 50px; padding: 0.75rem 1.5rem; gap: 0.75rem;
  transition: border-color 0.2s;
}
.mag-search-form:focus-within { border-color: var(--mag-teal); box-shadow: 0 0 0 3px rgba(0,169,157,0.1); }
.mag-search-form i { color: #94A3B8; font-size: 1rem; }
.mag-search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--mag-ink);
}
.mag-search-form input::placeholder { color: #94A3B8; }
.mag-search-count {
  font-size: 0.9rem; color: #64748B; font-weight: 500; white-space: nowrap;
}

/* â”€â”€â”€ CONTENT WRAPPER â”€â”€â”€ */
.mag-content {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}
/* â”€â”€â”€ ARCHIVO: contenedor centrado â”€â”€â”€ */
#archivo { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
#archivo .mag-year-block { margin-bottom: 1.25rem; }

/* â”€â”€â”€ SECTION HEADERS (standard = index style) â”€â”€â”€ */
.mag-section-header { margin-bottom: 2.5rem; text-align: center; }
.mag-section-header h2 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue-dark); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0;
}
.mag-section-sub {
  font-size: 0.85rem; color: #94A3B8; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: block; margin-bottom: 0.5rem;
}

/* â”€â”€â”€ FEATURED EDITION â”€â”€â”€ */
.mag-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  margin-bottom: 5rem;
}
.mag-featured-cover {
  position: relative; background: #1a2942;
}
.mag-featured-cover img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 480px;
}
.mag-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--mag-teal); color: white;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.4rem 1rem; border-radius: 50px;
}
.mag-featured-content {
  padding: 3.5rem 3.5rem 3.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mag-vol-label {
  font-size: 0.8rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 2px;
}
.mag-featured-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--mag-ink);
  line-height: 1.15; letter-spacing: -0.5px;
}
.mag-featured-desc {
  font-size: 1.1rem; color: #475569; line-height: 1.8; font-weight: 300;
}
.mag-featured-meta {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--mag-rule);
}
.mag-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.mag-meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 700; }
.mag-meta-value { font-size: 0.95rem; font-weight: 700; color: var(--mag-ink); }

/* â”€â”€â”€ FEATURED ACTIONS â”€â”€â”€ */
.mag-featured-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.mag-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .85rem;
  padding: .5rem 1.25rem; border-radius: 9999px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.mag-read-btn:hover {
  background-color: var(--green) !important;
  color: white !important;
  border-color: var(--green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4) !important;
}
.mag-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--mag-teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.mag-dl-btn:hover { color: #007a70; }

/* â”€â”€â”€ ARCHIVE YEAR ACCORDION â”€â”€â”€ */
.mag-year-block { margin-bottom: 2rem; }
.mag-year-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 1.25rem 1.5rem;
  background: white; border: 1px solid var(--mag-rule); border-radius: 12px;
  transition: all 0.2s; user-select: none;
  margin-bottom: 0;
}
.mag-year-toggle:hover { background: #F8FAFC; border-color: var(--mag-teal); }
.mag-year-toggle-left { display: flex; align-items: baseline; gap: 1.5rem; }
.mag-year-num {
  font-family: Arial, sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--mag-ink); line-height: 1;
}
.mag-year-meta { font-size: 0.85rem; color: #64748B; font-weight: 500; }
.mag-year-chevron {
  color: #94A3B8; transition: transform 0.3s ease;
  font-size: 1rem;
}
.mag-year-block.open .mag-year-chevron { transform: rotate(180deg); }
.mag-year-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 0;
}
.mag-year-block.open .mag-year-body {
  max-height: 1200px;
  padding: 1.5rem 0 0.5rem;
}
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

/* â”€â”€â”€ EDITION CARD â”€â”€â”€ */
.mag-card {
  display: flex; flex-direction: column;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mag-rule);
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.mag-card-hidden { display: none; }

.mag-card-cover {
  aspect-ratio: 3/4; background: #1a2942; overflow: hidden;
  position: relative;
}
.mag-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.mag-card:hover .mag-card-cover img { transform: scale(1.04); }
.mag-card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.mag-card:hover .mag-card-cover-overlay { opacity: 1; }
.mag-card-cover-overlay span {
  background: white; color: var(--mag-ink);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
}

.mag-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.mag-card-trim {
  font-size: 0.7rem; font-weight: 800; color: var(--mag-teal);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--mag-ink);
  line-height: 1.3; margin: 0;
}
.mag-card-vol {
  font-size: 0.78rem; color: #94A3B8; font-weight: 500; padding-top: 0.5rem;
}
/* â”€â”€â”€ CARD SHARE BAR â”€â”€â”€ */
.mag-card-share {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mag-rule);
  background: #F8FAFC;
}
.mag-share-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.mag-share-label {
  font-size: 0.65rem; font-weight: 800; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mag-share-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: white;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748B; text-decoration: none; transition: all 0.2s;
  font-size: 0.75rem;
}
.mag-share-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.mag-share-right {
  display: flex; align-items: center; gap: 1rem;
}
.mag-share-stat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: #94A3B8; font-weight: 500;
}

/* â”€â”€â”€ SHOW MORE â”€â”€â”€ */
.mag-show-more {
  text-align: center; margin-top: 2rem;
}
.mag-show-more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid var(--mag-rule);
  color: var(--mag-ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.mag-show-more-btn:hover { border-color: var(--mag-teal); color: var(--mag-teal); }

/* â”€â”€â”€ PAUTA CTA BANNER â”€â”€â”€ */
.mag-pauta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.mag-pauta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,169,157,0.12) 0%, transparent 70%);
}
.mag-pauta-text h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem; color: white; font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.mag-pauta-text p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  max-width: 520px;
}

.mag-pauta-action {
  display: flex; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.mag-pauta-btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--blue, #004d40) !important; color: white !important;
  border-radius: 9999px !important; padding: 1rem 1.8rem !important; border: 1px solid transparent !important;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mag-pauta-btn-primary:hover { background: var(--green, #06b0b8) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6, 176, 184, 0.4); }


.mag-pauta-email {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  color: white; text-decoration: none; font-weight: 600;
  transition: all 0.3s; font-size: 1.05rem;
}
.mag-pauta-email:hover { background: rgba(0,169,157,0.2); border-color: var(--mag-teal); }
.mag-pauta-email i { color: var(--mag-teal); font-size: 1.2rem; }
.mag-pauta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* â”€â”€â”€ NO RESULTS â”€â”€â”€ */
.mag-no-results {
  text-align: center; padding: 4rem 2rem;
  display: none;
}
.mag-no-results i { font-size: 3rem; color: var(--mag-rule); margin-bottom: 1rem; }
.mag-no-results p { color: #94A3B8; font-size: 1.1rem; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .mag-featured { grid-template-columns: 1fr; }
  .mag-featured-content { padding: 2.5rem; }
  .mag-featured-cover img { min-height: 280px; }
}
@media (max-width: 640px) {
  .mag-hero-inner { padding: 3.5rem 1.5rem; }
  .mag-ctas { flex-direction: column; align-items: flex-start; }
  .mag-pauta { padding: 2.5rem 1.5rem; }
  .mag-year-label { font-size: 3rem; }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Styles from reportes-sostenibilidad.html */


    /* Vanguard Sustainability UI */
    .bg-vanguard-organic {
      background: linear-gradient(135deg, #f8fcfb 0%, #ecf7f5 100%);
      position: relative;
    }

    .bg-vanguard-organic::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(0,169,157,0.02)" d="M50 0 C 20 20 80 80 50 100 L 100 100 L 100 0 Z"/></svg>') center/cover;
      pointer-events: none;
    }

    .text-balance {
      text-wrap: balance;
    }

    .neumorphic-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    }

    .neumorphic-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 169, 157, 0.1);
    }

    .tab-btn.neumorphic-tab {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 1.5rem !important;
      transition: all 0.4s ease;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(5px);
      border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .tab-btn.neumorphic-tab:hover {
      background: white;
      transform: translateY(-4px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
    }

    .tab-btn.neumorphic-tab.active {
      background: linear-gradient(135deg, var(--green), #14806a) !important;
      color: white !important;
      transform: scale(1.05);
      box-shadow: 0 15px 30px rgba(0, 169, 157, 0.35) !important;
      border-color: transparent !important;
    }

    .tab-btn.neumorphic-tab.active svg {
      stroke: white !important;
      fill: rgba(255, 255, 255, 0.1) !important;
    }

    .tab-btn.neumorphic-tab svg {
      transition: stroke 0.3s;
      stroke: var(--green);
    }

    .download-pill {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 1.25rem 1.5rem;
      background: white;
      border-left: 4px solid var(--green);
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
      text-decoration: none !important;
      transition: all 0.3s;
    }

    .download-pill:hover {
      transform: translateX(8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      border-left-color: var(--blue-dark);
      background: #fdfdfd;
    }

    .download-pill svg {
      stroke: var(--green);
      transition: stroke 0.3s;
      flex-shrink: 0;
    }

    .download-pill:hover svg {
      stroke: var(--blue-dark);
    }

    .download-pill-text {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--blue-dark);
      transition: color 0.3s;
      line-height: 1.3;
    }

    .download-pill:hover .download-pill-text {
      color: var(--green);
    }

    .parallax-materialidad {
      background: linear-gradient(rgba(250, 252, 250, 0.82), rgba(250, 252, 250, 0.82)), url('img/bg_sostenibilidad_materialidad.png') center/cover fixed !important;
    }

    .materialidad-glass {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: 24px;
      padding: 4rem 3rem;
      margin: 0 auto;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    }

    @keyframes softFloat {
      0% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }

      100% {
        transform: translateY(0);
      }
    }

    .float-icon {
      animation: softFloat 4s ease-in-out infinite;
    }
  


/* Styles from sostenibilidad.html */


    /* Vanguard Sustainability UI */
    .bg-vanguard-organic {
      background: linear-gradient(135deg, #f8fcfb 0%, #ecf7f5 100%);
      position: relative;
    }

    .bg-vanguard-organic::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(0,169,157,0.02)" d="M50 0 C 20 20 80 80 50 100 L 100 100 L 100 0 Z"/></svg>') center/cover;
      pointer-events: none;
    }

    .text-balance {
      text-wrap: balance;
    }

    .neumorphic-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    }

    .neumorphic-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 169, 157, 0.1);
    }

    .tab-btn.neumorphic-tab {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 1.5rem !important;
      transition: all 0.4s ease;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(5px);
      border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .tab-btn.neumorphic-tab:hover {
      background: white;
      transform: translateY(-4px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
    }

    .tab-btn.neumorphic-tab.active {
      background: linear-gradient(135deg, var(--green), #14806a) !important;
      color: white !important;
      transform: scale(1.05);
      box-shadow: 0 15px 30px rgba(0, 169, 157, 0.35) !important;
      border-color: transparent !important;
    }

    .tab-btn.neumorphic-tab.active svg {
      stroke: white !important;
      fill: rgba(255, 255, 255, 0.1) !important;
    }

    .tab-btn.neumorphic-tab svg {
      transition: stroke 0.3s;
      stroke: var(--green);
    }

    .download-pill {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 1.25rem 1.5rem;
      background: white;
      border-left: 4px solid var(--green);
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
      text-decoration: none !important;
      transition: all 0.3s;
    }

    .download-pill:hover {
      transform: translateX(8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      border-left-color: var(--blue-dark);
      background: #fdfdfd;
    }

    .download-pill svg {
      stroke: var(--green);
      transition: stroke 0.3s;
      flex-shrink: 0;
    }

    .download-pill:hover svg {
      stroke: var(--blue-dark);
    }

    .download-pill-text {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--blue-dark);
      transition: color 0.3s;
      line-height: 1.3;
    }

    .download-pill:hover .download-pill-text {
      color: var(--green);
    }

    .parallax-materialidad {
      background: linear-gradient(rgba(250, 252, 250, 0.82), rgba(250, 252, 250, 0.82)), url('img/bg_sostenibilidad_materialidad.png') center/cover fixed !important;
    }

    .materialidad-glass {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: 24px;
      padding: 4rem 3rem;
      margin: 0 auto;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    }

    @keyframes softFloat {
      0% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }

      100% {
        transform: translateY(0);
      }
    }

    .float-icon {
      animation: softFloat 4s ease-in-out infinite;
    }
  


/* Styles from sostenibilidad2.html */


/* Vanguard Sustainability UI */
.bg-vanguard-organic { background: linear-gradient(135deg, #f8fcfb 0%, #ecf7f5 100%); position: relative; }
.bg-vanguard-organic::before { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(0,169,157,0.02)" d="M50 0 C 20 20 80 80 50 100 L 100 100 L 100 0 Z"/></svg>') center/cover; pointer-events:none; }

.text-balance { text-wrap: balance; }
.neumorphic-card { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.neumorphic-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,169,157,0.1); }

.tab-btn.neumorphic-tab { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:0.6rem; padding: 1.5rem !important; transition:all 0.4s ease; border-radius: 14px; background: rgba(255,255,255,0.8); backdrop-filter:blur(5px); border:1px solid rgba(0,0,0,0.04); }
.tab-btn.neumorphic-tab:hover { background:white; transform: translateY(-4px); box-shadow:0 12px 25px rgba(0,0,0,0.06); }
.tab-btn.neumorphic-tab.active { background: linear-gradient(135deg, var(--green), #14806a) !important; color:white !important; transform: scale(1.05); box-shadow:0 15px 30px rgba(0,169,157,0.35) !important; border-color:transparent !important; }
.tab-btn.neumorphic-tab.active svg { stroke: white !important; fill: rgba(255,255,255,0.1) !important; }
.tab-btn.neumorphic-tab svg { transition: stroke 0.3s; stroke: var(--green); }

.download-pill { display:flex; align-items:center; gap:1.25rem; padding: 1.25rem 1.5rem; background:white; border-left: 4px solid var(--green); border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.04); text-decoration:none !important; transition:all 0.3s; }
.download-pill:hover { transform: translateX(8px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); border-left-color: var(--blue-dark); background: #fdfdfd; }
.download-pill svg { stroke: var(--green); transition: stroke 0.3s; flex-shrink:0;}
.download-pill:hover svg { stroke: var(--blue-dark); }
.download-pill-text { font-size: 1.15rem; font-weight: 800; color:var(--blue-dark); transition:color 0.3s; line-height: 1.3;}
.download-pill:hover .download-pill-text { color: var(--green); }

.parallax-materialidad { background: linear-gradient(rgba(250, 252, 250, 0.82), rgba(250, 252, 250, 0.82)), url('img/bg_sostenibilidad_materialidad.png') center/cover fixed !important; }
.materialidad-glass { background: rgba(255,255,255,0.8); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.9); border-radius: 24px; padding: 4rem 3rem; margin: 0 auto; box-shadow: 0 15px 40px rgba(0,0,0,0.06); }

@keyframes softFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
.float-icon { animation: softFloat 4s ease-in-out infinite; }



/* Styles from sostenibilidad_clean.html */


    /* Vanguard Sustainability UI */
    .bg-vanguard-organic {
      background: linear-gradient(135deg, #f8fcfb 0%, #ecf7f5 100%);
      position: relative;
    }

    .bg-vanguard-organic::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(0,169,157,0.02)" d="M50 0 C 20 20 80 80 50 100 L 100 100 L 100 0 Z"/></svg>') center/cover;
      pointer-events: none;
    }

    .text-balance {
      text-wrap: balance;
    }

    .neumorphic-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    }

    .neumorphic-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 169, 157, 0.1);
    }

    .tab-btn.neumorphic-tab {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 1.5rem !important;
      transition: all 0.4s ease;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(5px);
      border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .tab-btn.neumorphic-tab:hover {
      background: white;
      transform: translateY(-4px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
    }

    .tab-btn.neumorphic-tab.active {
      background: linear-gradient(135deg, var(--green), #14806a) !important;
      color: white !important;
      transform: scale(1.05);
      box-shadow: 0 15px 30px rgba(0, 169, 157, 0.35) !important;
      border-color: transparent !important;
    }

    .tab-btn.neumorphic-tab.active svg {
      stroke: white !important;
      fill: rgba(255, 255, 255, 0.1) !important;
    }

    .tab-btn.neumorphic-tab svg {
      transition: stroke 0.3s;
      stroke: var(--green);
    }

    .download-pill {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 1.25rem 1.5rem;
      background: white;
      border-left: 4px solid var(--green);
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
      text-decoration: none !important;
      transition: all 0.3s;
    }

    .download-pill:hover {
      transform: translateX(8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      border-left-color: var(--blue-dark);
      background: #fdfdfd;
    }

    .download-pill svg {
      stroke: var(--green);
      transition: stroke 0.3s;
      flex-shrink: 0;
    }

    .download-pill:hover svg {
      stroke: var(--blue-dark);
    }

    .download-pill-text {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--blue-dark);
      transition: color 0.3s;
      line-height: 1.3;
    }

    .download-pill:hover .download-pill-text {
      color: var(--green);
    }

    .parallax-materialidad {
      background: linear-gradient(rgba(250, 252, 250, 0.82), rgba(250, 252, 250, 0.82)), url('img/bg_sostenibilidad_materialidad.png') center/cover fixed !important;
    }

    .materialidad-glass {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: 24px;
      padding: 4rem 3rem;
      margin: 0 auto;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    }

    @keyframes softFloat {
      0% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }

      100% {
        transform: translateY(0);
      }
    }

    .float-icon {
      animation: softFloat 4s ease-in-out infinite;
    }
  


/* Styles from spotlights.html */


  /* â”€â”€ Page-level overrides â”€â”€ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue-dark: #0B1829;
    --blue:      #0D3B7D;
    --green:     #00A99D;
    --white:     #ffffff;
    --gray-f:    #f8fafc;
    --gray-e:    #eef2f6;
    --gray-medium: #64748B;
  }

  /* â”€â”€ HERO BANNER — estructura idéntica a Informe CAMPETROL Taladros â”€â”€ */
  .mag-hero {
    background: var(--blue-dark);
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    margin-top: 0;
  }
  .mag-hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(0,40,85,0.97) 45%, rgba(0,40,85,0.75) 100%)/*, url('img/report_taladros.png') right center / auto 100% no-repeat*/;
  }
  .mag-hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 5rem 2rem;
    display: flex; flex-direction: column; gap: 2rem;
  }
  .mag-eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    color: #00A99D; font-weight: 700; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 2px;
  }
  .mag-eyebrow::before {
    content: ''; display: block;
    width: 28px; height: 2px; background: #00A99D;
  }
  .mag-hero-title {
    font-family: Arial, sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800; color: white;
    line-height: 1.1; letter-spacing: -1px;
    max-width: 780px;
  }
  .mag-hero-sub {
    font-size: 1.15rem; color: rgba(255,255,255,0.75);
    max-width: 620px; line-height: 1.8; font-weight: 300;
  }
  .mag-ctas {
    display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  }
  .mag-btn-primary {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: var(--blue); color: white;
    font-weight: 600; font-size: .85rem;
    padding: .5rem 1.25rem; border-radius: 9999px;
    text-decoration: none; white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
  }
  .mag-btn-primary:hover {
    background-color: var(--green) !important; color: white !important;
    border-color: var(--green) !important; transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(6,176,184,0.4) !important;
  }
  .mag-btn-outline {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: transparent; color: white;
    font-weight: 600; font-size: .85rem;
    padding: .5rem 1.25rem; border-radius: 9999px;
    text-decoration: none; white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255,255,255,0.5);
  }
  .mag-btn-outline:hover {
    background-color: var(--green) !important; color: white !important;
    border-color: var(--green) !important; transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(6,176,184,0.4) !important;
  }
  .mag-btn-ghost {
    display: inline-flex; align-items: center; gap: 0.6rem;
    color: #C9A84C; font-weight: 600; font-size: .85rem;
    text-decoration: none; transition: all 0.2s;
  }
  .mag-btn-ghost:hover { color: #e0bf70; }
  /* stats below hero */
  .hero-stats {
    display: flex; gap: 2.5rem; flex-wrap: wrap;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
  .hero-stat strong {
    font-size: 1.8rem; font-weight: 800; color: #00A99D; line-height: 1;
  }
  .hero-stat span {
    font-size: 0.75rem; color: rgba(255,255,255,0.55);
    text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500;
  }

  /* â”€â”€ PLAYER SECTION â”€â”€ */
  .player-section {
    background: #0B1829;
    padding: 0;
  }
  .player-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
  }

  /* Featured player (left big + right playlist) */
  .player-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    background: #111E30;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    margin-top: -2.5rem;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.06);
  }

  /* Main video embed */
  .player-main {
    position: relative;
    background: #000;
  }
  .player-main iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
  }
  .player-info {
    padding: 1.5rem 1.75rem;
    background: #111E30;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .player-tag {
    display: inline-block;
    background: rgba(0,169,157,0.15);
    color: #00A99D;
    padding: 0.25rem 0.85rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }
  .player-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  .player-channel {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
  }
  .player-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
  }
  .btn-yt {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FF0000;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
  }
  .btn-yt:hover { background: #cc0000; transform: translateY(-1px); }
  .btn-playlist {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.2s;
    cursor: pointer;
  }
  .btn-playlist:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }

  /* Sidebar playlist */
  .player-sidebar {
    background: #0D1E33;
    border-left: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    max-height: 600px;
  }
  .sidebar-header {
    padding: 1.25rem 1.25rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
  }
  .sidebar-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.25rem;
  }
  .sidebar-count {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
  }
  .sidebar-count span { color: #00A99D; }
  .playlist-scroll {
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
  }
  .playlist-scroll::-webkit-scrollbar { width: 4px; }
  .playlist-scroll::-webkit-scrollbar-track { background: transparent; }
  .playlist-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

  .playlist-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-decoration: none;
  }
  .playlist-item:hover, .playlist-item.active {
    background: rgba(0,169,157,0.12);
  }
  .playlist-item.active { border-left: 3px solid #00A99D; padding-left: calc(1.25rem - 3px); }
  .playlist-num {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
    width: 18px;
    flex-shrink: 0;
    text-align: center;
  }
  .playlist-item.active .playlist-num { color: #00A99D; }
  .playlist-thumb {
    width: 80px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: #1a2840;
  }
  .playlist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .playlist-thumb-duration {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: rgba(0,0,0,0.85);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 3px;
  }
  .playlist-meta { flex: 1; min-width: 0; }
  .playlist-item-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.2rem;
  }
  .playlist-item.active .playlist-item-title { color: white; }
  .playlist-channel-name {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
  }

  /* â”€â”€ GRID SECTION â”€â”€ */
  .grid-section {
    background: var(--gray-f);
    padding: 5rem 0;
  }
  .grid-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }
  .section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--blue-dark);
    letter-spacing: -1px;
    line-height: 1.1;
  }
  .section-head h2 span { color: var(--green); }
  .section-head p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    max-width: 400px;
  }
  .btn-ver-todos {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue-dark);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .btn-ver-todos:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,169,157,0.3); }
  .btn-ver-todos svg { transition: transform 0.2s; }
  .btn-ver-todos:hover svg { transform: translateX(4px); }

  /* Search + filter bar */
  .filter-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  .search-box {
    flex: 1;
    min-width: 220px;
    position: relative;
  }
  .search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-medium);
    font-size: 0.9rem;
  }
  .search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1.5px solid var(--gray-e);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--blue-dark);
    background: white;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
  }
  .search-box input:focus { border-color: var(--green); }
  .sort-select {
    padding: 0.75rem 1.25rem;
    border: 1.5px solid var(--gray-e);
    border-radius: 100px;
    font-size: 0.88rem;
    color: var(--blue-dark);
    background: white;
    cursor: pointer;
    outline: none;
    font-family: inherit;
    font-weight: 500;
  }
  .filter-count {
    font-size: 0.85rem;
    color: var(--gray-medium);
    font-weight: 500;
    white-space: nowrap;
  }
  .filter-count span { color: var(--green); font-weight: 700; }

  /* Video grid */
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-e);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
  }
  .video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: rgba(0,169,157,0.3);
  }
  .card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #E6E9EE;
  }
  .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .video-card:hover .card-thumb img { transform: scale(1.05); }
  .card-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.82);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    font-family: inherit;
  }
  .card-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
  }
  .video-card:hover .card-play-overlay { background: rgba(0,169,157,0.3); }
  .card-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  .video-card:hover .card-play-btn { opacity: 1; transform: scale(1); }
  .card-play-btn svg { color: #00A99D; margin-left: 3px; }
  .card-num-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--blue-dark);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .card-body {
    padding: 1rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: auto;
  }
  .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-e);
  }
  .card-channel {
    font-size: 0.78rem;
    color: var(--gray-medium);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .card-channel i { font-size: 0.7rem; color: #FF0000; }
  .card-yt-link {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(255,0,0,0.08);
    color: #FF0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
  }
  .card-yt-link:hover { background: #FF0000; color: white; }

  /* Empty state */
  .empty-state {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
  }
  .empty-state i { font-size: 3rem; color: var(--gray-e); margin-bottom: 1rem; display: block; }
  .empty-state p { color: var(--gray-medium); font-size: 1rem; }

  /* â”€â”€ PAGINATION â”€â”€ */
  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
  }
  .pag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 10px;
    border: 1.5px solid var(--gray-e);
    background: white;
    color: var(--blue-dark);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
  }
  .pag-btn:hover:not(:disabled) {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,169,157,0.15);
  }
  .pag-btn.active {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: white;
  }
  .pag-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }
  .pag-info {
    font-size: 0.85rem;
    color: var(--gray-medium);
    font-weight: 500;
    padding: 0 0.5rem;
  }

  /* â”€â”€ CTA BOTTOM â”€â”€ */
  .cta-section {
    background: linear-gradient(135deg, #0B1829, #0D3B7D);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(0,169,157,0.25) 0%, transparent 60%);
  }
  .cta-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
  }
  .cta-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -1px;
  }
  .cta-section p {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--green);
    color: white;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0,169,157,0.4);
  }
  .cta-btn-primary:hover { background: #009b8f; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,169,157,0.5); }
  .cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
  }
  .cta-btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

  /* â”€â”€ VIDEO MODAL â”€â”€ */
  .video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.2s ease;
  }
  .video-modal.open { display: flex; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .modal-content {
    background: #111E30;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.08);
    animation: slideUp 0.3s ease;
  }
  @keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
  .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .modal-close:hover { background: rgba(255,255,255,0.25); }
  .modal-embed { aspect-ratio: 16/9; background: #000; }
  .modal-embed iframe { width: 100%; height: 100%; border: none; display: block; }
  .modal-footer {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
  }
  .modal-title { font-size: 1rem; font-weight: 700; color: white; }
  .modal-yt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #FF0000;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.1rem;
    border-radius: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .modal-yt-btn:hover { background: #cc0000; }

  /* â”€â”€ RESPONSIVE â”€â”€ */
  @media (max-width: 900px) {
    .player-layout { grid-template-columns: 1fr; }
    .player-sidebar { max-height: 350px; border-left: none; border-top: 1px solid rgba(255,255,255,0.05); }
  }
  @media (max-width: 600px) {
    .mag-hero-inner { padding: 3.5rem 1.5rem; }
    .mag-ctas { flex-direction: column; align-items: flex-start; }
    .hero-stats { gap: 1.5rem; }
    .filter-bar { flex-direction: column; align-items: stretch; }
    .video-grid { grid-template-columns: 1fr; }
  }





/* El resumen ejecutivo llega del CMS en párrafos. Sin margen entre ellos
   se leía como un bloque corrido, que es lo que se veía en la web. */
.mag-featured-summary p { margin: 0 0 0.9rem; line-height: 1.75; }
.mag-featured-summary p:last-child { margin-bottom: 0; }


/* El archivo por años se abría con un tope de altura fijo -max-height:
   1200px- y overflow oculto: en cuanto un año pasaba de dos filas de fichas,
   el resto quedaba recortado (12 ediciones se veían como 8). El tope estaba
   solo para poder animar la apertura, así que se anima la fila del grid en su
   lugar: llega a la altura real del contenido y no depende de ningún número.
   En navegadores que no interpolan 0fr→1fr la apertura sale sin transición,
   pero completa, que es mejor final que recortada. */
.mag-year-body {
  display: grid;
  grid-template-rows: 0fr;
  max-height: none;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}
.mag-year-block.open .mag-year-body {
  grid-template-rows: 1fr;
  max-height: none;
}
/* Sin esto el hijo impone su altura mínima y la fila no puede colapsar. */
.mag-year-body > * { min-height: 0; }
