/* ============================================================
   template-blog.css — TicTocProd
   Extrait depuis le template inline — externalisé pour performance
   ============================================================ */
  :root {
    --accent: #fff;
    --accent-dark: #e0e0e0;
    --accent-light: #bdbdbd;
    --bg-card: #181818;
    --text-main: #fff;
    --text-light: #bdbdbd;
    --border-card: #222;
    --bg-page: #111;
    --white: #fff;
  }
  html, body {
    background: var(--bg-page) !important;
    color: var(--text-main);
  }
  /* ========== RESET / BASE ========== */
  .exp-wrap { background: var(--bg-page); color: var(--text-main); }
  .exp-container { max-width: 1180px; margin: 0 auto; padding: 24px; }

  .exp-hero {
    position: relative; overflow: hidden;
    border-radius: 20px; padding: 46px 28px; margin: 12px 0 28px;
    background: linear-gradient(180deg, #181818 80%, #111 100%);
    border: 1px solid var(--border-card);
  }
  .exp-kicker { letter-spacing: .18em; text-transform: uppercase; font-weight: 700; font-size: 12px; color: var(--accent-light); }
  .exp-title { margin: 6px 0 10px; font-size: clamp(28px, 4.5vw, 48px); line-height: 1.05; font-weight: 900; color: var(--white); }
  .exp-tagline { color: var(--text-light); font-size: 16px; max-width: 800px; }
  .exp-badge {
    display: inline-flex; gap: 8px; align-items: center;
    background: var(--border-card); border: 1px solid var(--accent-light);
    border-radius: 999px; padding: 8px 14px; font-weight: 700;
    color: var(--accent-light);
  }
  .exp-badge i {
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    max-width: 8px;
    max-height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }

  /* ========== BARRE D'ACTIONS ========== */
  .exp-actions { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 16px 0 24px; }
  @media (min-width: 860px) { .exp-actions { grid-template-columns: 1fr auto; align-items: center; } }

  .exp-search {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-card);
    border: 1.5px solid var(--border-card);
    border-radius: 14px;
    padding: 0 0.7em;
    height: 48px;
    position: relative;
    min-width: 220px;
  }
  .exp-search input[type="text"] {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    width: 100%;
    font-size: 1.08em;
    padding: 0.7em 0.7em 0.7em 0.2em;
    transition: color 0.18s;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .exp-search input[type="text"]::placeholder {
    color: var(--accent-light);
    opacity: 0.7;
    font-weight: 400;
  }
  .exp-search input[type="text"]:focus {
    color: var(--accent);
  }
  .exp-search button {
    background: none;
    border: none;
    outline: none;
    padding: 0 0.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--accent-light);
    transition: color 0.18s;
    font-size: 1.3em;
    height: 100%;
  }
  .exp-search button:hover,
  .exp-search button:focus {
    color: var(--accent);
  }
  .exp-search svg {
    width: 1.25em;
    height: 1.25em;
    display: block;
    pointer-events: none;
  }

  .exp-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0;
  }
  .exp-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card, #f8f9fa);
    border: 1px solid var(--border-card, #e9ecef);
    color: var(--accent-light, #6c757d);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    text-decoration: none;
    transition: transform .15s ease, background 0.18s, color 0.18s;
    margin: 2px; /* Fallback pour l'espacement si gap ne fonctionne pas */
  }
  .exp-chip:hover { transform: translateY(-2px); background: var(--border-card); color: var(--white); }
  .exp-chip.active { color:var(--bg-page); background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 2px var(--border-card) inset; }

  /* ========== FEATURED POST ========== */
  .exp-featured {
    display:grid; grid-template-columns: 1fr; gap: 18px; margin: 16px 0 24px;
    background:var(--bg-card); border:1px solid var(--border-card); border-radius:20px; overflow: hidden;
  }
  @media (min-width: 860px) { .exp-featured { grid-template-columns: 1.3fr 1fr; } }
  .exp-cover { aspect-ratio: 16/9; width:100%; height:auto; object-fit: cover; display:block; }
  .exp-featured-body { padding: 18px; }
  .exp-meta { display:flex; gap:12px; align-items:center; color:var(--accent-light); font-size:12px; margin-bottom:8px; }
  .exp-title-lg { font-size: clamp(20px, 3.3vw, 32px); color:var(--white); margin: 4px 0 8px; line-height: 1.15; }
  .exp-excerpt { color:var(--text-light); }

  /* ========== GRID LIST ========== */
  .exp-grid { display:grid; grid-template-columns: 1fr; gap: 18px; }
  @media (min-width: 680px) { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1060px){ .exp-grid { grid-template-columns: repeat(3, 1fr); } }
  .exp-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    z-index: 1;
  }
  .exp-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55) grayscale(0.15) blur(0.5px);
    transition: filter 0.25s, opacity 0.25s;
    opacity: 0.92;
    mix-blend-mode: lighten;
  }
  .exp-card:hover .exp-card-bg {
    filter: brightness(0.75) grayscale(0.05) blur(0px);
    opacity: 1;
  }
  .exp-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(120deg, rgba(0,0,0,0.72) 60%, rgba(30,30,30,0.55) 100%);
    pointer-events: none;
    transition: background 0.22s;
  }
  .exp-card:hover .exp-card-overlay {
    background: linear-gradient(100deg, rgba(0,0,0,0.62) 50%, rgba(30,30,30,0.38) 100%);
  }
  .exp-thumb {
    display: none !important; /* on n'affiche plus l'image brute */
  }
  .exp-card-body {
    position: relative;
    z-index: 2;
    padding: 2.2em 1.3em 1.3em 1.3em;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    min-height: 220px;
    justify-content: flex-end;
  }
  .exp-card-title {
    font-size: 1.18em;
    line-height: 1.25;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 0.2em;
    text-shadow: 0 2px 12px #000, 0 1px 0 #111;
  }
  .exp-card-meta {
    color: var(--accent-light);
    font-size: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    opacity: 0.85;
    margin-bottom: 0.1em;
  }
  .exp-card-excerpt, .exp-excerpt {
    color: var(--text-light);
    font-size: 1.04em;
    text-shadow: 0 1px 8px #000;
    margin-bottom: 0.7em;
  }
  .exp-readmore {
    margin-top: auto;
    display: inline-block;
    color: var(--bg-page);
    font-weight: 800;
    text-decoration: none;
    z-index: 2;
  }
  .exp-readmore span {
    background: var(--accent);
    color: var(--bg-page);
    padding: 8px 12px;
    border-radius: 12px;
    display: inline-block;
    transition: background 0.18s, color 0.18s;
    font-size: 1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  }
  .exp-readmore span:hover {
    background: var(--accent-dark);
    color: var(--bg-page);
  }

  /* ========== PAGINATION ========== */
  .exp-pagination { display:flex; gap:10px; justify-content:center; align-items:center; margin:26px 0 0; }
  .exp-page {
    background:var(--bg-card); border:1px solid var(--border-card); color:var(--accent-light); padding:8px 12px; border-radius:10px;
    text-decoration:none; font-weight:700;
    transition: background 0.18s, color 0.18s;
    min-width: 40px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .exp-page.current, .exp-page:hover { background: var(--accent); color:var(--bg-page); border-color: transparent; }
  .exp-empty { text-align:center; color:var(--accent-light); padding: 24px 0; }

  /* ===== Ajouts pour dynamisme ===== */
  .exp-glitch {
    position: relative;
    color: var(--white);
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    display: inline-block;
    animation: glitch 1.2s infinite linear alternate-reverse;
  }
  .exp-glitch:before, .exp-glitch:after {
    content: attr(data-text);
    position: absolute;
    left: 0; width: 100%;
    overflow: hidden;
    color: var(--accent-light);
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
  }
  .exp-glitch:before {
    top: -2px;
    left: 2px;
    text-shadow: -2px 0 var(--accent-light);
    animation: glitchTop 1.2s infinite linear alternate-reverse;
  }
  .exp-glitch:after {
    top: 2px;
    left: -2px;
    text-shadow: 2px 0 var(--accent-dark);
    animation: glitchBot 1.2s infinite linear alternate-reverse;
  }
  @keyframes glitch {
    0% { text-shadow: 2px 0 #fff, -2px 0 #fff; }
    20% { text-shadow: -2px 2px #fff, 2px -2px #fff; }
    40% { text-shadow: 2px -2px #fff, -2px 2px #fff; }
    60% { text-shadow: -2px 0 #fff, 2px 0 #fff; }
    80% { text-shadow: 2px 2px #fff, -2px -2px #fff; }
    100% { text-shadow: 0 0 #fff, 0 0 #fff; }
  }
  @keyframes glitchTop {
    0% { clip-path: inset(0 0 60% 0); }
    50% { clip-path: inset(0 0 30% 0); }
    100% { clip-path: inset(0 0 60% 0); }
  }
  @keyframes glitchBot {
    0% { clip-path: inset(60% 0 0 0); }
    50% { clip-path: inset(30% 0 0 0); }
    100% { clip-path: inset(60% 0 0 0); }
  }

  .exp-separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--border-card) 50%, transparent 100%);
    margin: 2.5em 0 2em 0;
    border: none;
    opacity: 0.5;
  }

  /* Insta section */
  .exp-insta-section {
    background: var(--bg-card);
    border-radius: 18px;
    padding: 2em 2em 1.5em 2em;
    margin: 2.5em 0 2em 0;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    border: 1px solid var(--border-card);
  }
  .exp-insta-title {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.7em;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
  }
  .exp-insta-btn {
    display: inline-block;
    background: var(--white);
    color: var(--bg-page);
    font-weight: 800;
    border-radius: 8px;
    padding: 0.6em 1.5em;
    margin: 0.7em 0 1.2em 0;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background 0.18s, color 0.18s;
    border: none;
    font-size: 1.08em;
  }
  .exp-insta-btn:hover {
    background: var(--accent-dark);
    color: var(--white);
  }
  .exp-insta-embed {
    margin: 0 auto;
    max-width: 340px;
    min-height: 180px;
    background: #222;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.1em;
    opacity: 0.7;
    border: 1px solid var(--border-card);
  }

  /* --- 360° à la une --- */
  .exp-feature-360-wrap {
    width: 100%;
    margin: 0 0 2.5em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }
  .exp-feature-360-title {
    color: var(--white);
    font-size: 1.35em;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
    gap: 0.7em;
    text-shadow: 0 2px 12px #000;
    z-index: 2;
    position: relative;
  }
  .exp-feature-360-badge {
    background: var(--border-card);
    color: var(--accent-light);
    border-radius: 8px;
    padding: 0.3em 1em;
    font-size: 0.98em;
    font-weight: 700;
    margin-left: 0.7em;
    letter-spacing: 1px;
  }
  .exp-feature-360-iframe {
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16/7;
    min-height: 480px;
    border: none;
    border-radius: 20px ;
    box-shadow: 0 8px 48px rgba(33,150,243,0.18);
    background: #181818;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    z-index: 2;
    transition: min-height 0.3s, box-shadow 0.3s;
  }
  @media (max-width: 900px) {
    .exp-feature-360-iframe {
      aspect-ratio: 1/1;
      min-height: 320px;
      max-width: 100vw;
      border-radius: 20px;
      margin-bottom: 0;
    }
    .exp-feature-360-wrap {
      padding: 0;
      margin-bottom: 1.2em;
    }
    .exp-feature-360-title {
      font-size: 1.08em;
      margin-bottom: 0.4em;
      padding-left: 0.5em;
    }
  }

  /* --- Autres 360° section --- */
  .exp-feature-360-others {
    width: 100%;
    max-width: 1200px;
    margin: 48px auto 32px;
    padding: 32px 24px;
    position: relative;
    z-index: 1;
    background: var(--gradient-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    box-shadow: 0 8px 32px var(--shadow-dark), inset 0 1px 0 var(--shadow-light);
    backdrop-filter: blur(10px);
  }

  .exp-feature-360-others-bg {
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: 24px;
    overflow: hidden;
  }

  .exp-feature-360-others-list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 16px 8px 24px;
    z-index: 2;
    position: relative;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--border-card) transparent;
  }

  .exp-feature-360-others-list::-webkit-scrollbar {
    height: 6px;
  }

  .exp-feature-360-others-list::-webkit-scrollbar-track {
    background: var(--bg-section);
    border-radius: 3px;
  }

  .exp-feature-360-others-list::-webkit-scrollbar-thumb {
    background: var(--border-card);
    border-radius: 3px;
  }

  .exp-feature-360-item-wrapper {
    flex: 0 0 280px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
  }

  .exp-feature-360-others-item {
    border-radius: 16px;
    overflow: hidden;
    background: var(--gradient-card);
    box-shadow: 0 4px 16px var(--shadow-dark), inset 0 1px 0 var(--shadow-light);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-card);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(10px);
  }

  .exp-feature-360-others-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px var(--shadow-dark), 0 4px 16px rgba(255, 255, 255, 0.05);
    border-color: var(--border-accent);
  }

  .exp-feature-360-others-item.selected {
    border: 2px solid var(--accent);
    box-shadow: 0 4px 16px var(--shadow-dark), inset 0 1px 0 var(--shadow-light);
    z-index: 3;
    position: relative;
    transform: translateY(-2px);
  }

  .exp-feature-360-others-item:focus {
    outline-offset: 2px;
  }

  .exp-feature-360-others-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    background: var(--bg-section);
    transition: transform 0.3s;
  }

  .exp-feature-360-others-item:hover .exp-feature-360-others-thumb {
    transform: scale(1.05);
  }

  .exp-feature-360-others-caption {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    padding: 16px 20px;
    text-align: center;
    background: var(--gradient-card);
    letter-spacing: 0.01em;
    line-height: 1.4;
    transition: color 0.3s;
  }

  .exp-feature-360-others-item:hover .exp-feature-360-others-caption {
    color: var(--accent);
  }

  .exp-feature-360-others-item.selected .exp-feature-360-others-caption {
    color: var(--accent);
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .exp-feature-360-others {
      margin: 32px auto 24px;
      padding: 24px 16px;
    }

    .exp-feature-360-others-list {
      gap: 16px;
      padding: 12px 4px 20px;
    }

    .exp-feature-360-item-wrapper {
      flex: 0 0 220px;
      max-width: 220px;
    }

    .exp-feature-360-others-caption {
      font-size: 13px;
      padding: 12px 16px;
    }
  }

  @media (max-width: 600px) {
    .exp-feature-360-item-wrapper {
      flex: 0 0 180px;
      max-width: 180px;
    }

    .exp-feature-360-others-caption {
      font-size: 12px;
      padding: 10px 12px;
    }
  }

  .exp-contact-section {
    width: 100%;
    max-width: 1200px;
    margin: 48px auto 32px;
    padding: 32px 24px;
    background: var(--gradient-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    box-shadow: 0 8px 32px var(--shadow-dark), inset 0 1px 0 var(--shadow-light);
    backdrop-filter: blur(10px);
  }
  .exp-contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    background: linear-gradient(120deg, #181818 80%, #111 100%);
    border-radius: 22px;
    box-shadow: 0 4px 32px rgba(33,150,243,0.10);
    border: 1.5px solid var(--border-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .exp-contact-title {
    font-size: 1.45em;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin: 2em 0 1.2em 0;
    display: flex;
    align-items: center;
    gap: 0.7em;
    text-shadow: 0 2px 12px #000;
    text-align: center;
    flex-wrap: wrap;
  }
  .exp-contact-icon {
    font-size: 1.3em;
    filter: drop-shadow(0 2px 8px #2196f3);
  }
  .exp-contact-content {
    font-size: 1.18em;
    color: #bdbdbd;
    margin-bottom: 2.5em;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    word-break: break-word;
    /* Empêche le mail d'être coupé sur 2 lignes */
  }
  .exp-contact-content a {
    color: #2196f3;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.18s;
    border-bottom: 1.5px solid #2196f3;
    padding-bottom: 2px;
    word-break: break-all;
    white-space: nowrap;
  }
  .exp-contact-content a:hover {
    color: #fff;
    border-bottom: 1.5px solid #fff;
  }
  @media (max-width: 600px) {
    .exp-contact-inner {
      max-width: 100vw;
      border-radius: 20px;
      padding: 0 0.5em;
    }
    .exp-contact-title {
      font-size: 1.05em;
      margin: 1.2em 0 1em 0;
      flex-direction: column;
      gap: 0.4em;
      padding: 0 0.2em;
    }
    .exp-contact-content {
      font-size: 1em;
      margin-bottom: 1.2em;
      padding: 0 0.2em;
    }
    .exp-contact-content a {
      white-space: nowrap;
    }
    .exp-badge {
      font-size: 0.825rem;
      padding: 8px 10px;
    }
  }
  .site-logo-img img {
    filter: none;
  }
  /* --- Container principal du popup --- */
  .leaflet-popup-content-wrapper {
    background: #1e1e1e !important;
    border-radius: 14px !important;
    padding: 0 !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.6) !important;
    border: 1px solid #333 !important;
    overflow: hidden !important;
  }

  /* --- Flèche du popup --- */
  .leaflet-popup-tip {
    background: #1e1e1e !important;
    border: none !important;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)) !important;
  }

  /* --- Zone de contenu --- */
  .leaflet-popup-content {
    margin: 0 !important;
    padding: 16px !important;
    width: 280px !important;
    font-family: 'Segoe UI', 'Roboto', sans-serif !important;
    color: #e0e0e0 !important;
  }

  /* --- Croix de fermeture --- */
  .leaflet-popup-close-button {
    color: #fff !important;
    font-size: 22px !important;
    font-weight: bold !important;
    top: 8px !important;
    right: 10px !important;
    opacity: 0.9 !important;
    transition: transform 0.2s ease !important;
  }
  .leaflet-popup-close-button:hover {
    transform: scale(1.2) !important;
  }

  /* --- Titre --- */
  .leaflet-popup-content .popup-title {
    font-size: 1.15em !important;
    font-weight: 700 !important;
    margin-bottom: 0.4em !important;
    color: #fff !important;
  }

  /* --- Adresse --- */
  .leaflet-popup-content .popup-address {
    font-size: 0.95em !important;
    color: #aaa !important;
    margin-bottom: 0.7em !important;
  }

  /* --- Image --- */
  .leaflet-popup-content img {
    width: 100% !important;
    border-radius: 10px !important;
    margin-bottom: 1em !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6) !important;
    transition: transform 0.3s ease !important;
  }
  .leaflet-popup-content img:hover {
    transform: scale(1.02) !important;
  }

  /* --- Conteneur boutons côte à côte --- */
  .leaflet-popup-content .popup-btns {
    display: flex !important;
    gap: 8px !important;
  }

  /* --- Boutons --- */
  .leaflet-popup-content .popup-btn {
    flex: 1 !important;
    text-align: center !important;
    background: #333 !important;
    color: #fff !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 0.7em 0 !important;
    font-size: 0.95em !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
  }
  .leaflet-popup-content .popup-btn:hover {
    background: #555 !important;
  }
  @media (max-width: 600px) {
    .leaflet-popup-content {
      width: 200px !important;
      font-size: 0.92em !important;
      padding: 10px !important;
    }
    .leaflet-popup-content .popup-title {
      font-size: 1em !important;
    }
    .leaflet-popup-content .popup-address {
      font-size: 0.85em !important;
    }
    .leaflet-popup-content .popup-btn {
      font-size: 0.92em !important;
      padding: 0.5em 0 !important;
    }
  }

  .exp-map-title {
    font-size: 1.35em;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 1.2em;
    display: flex;
    align-items: center;
    gap: 0.7em;
    text-shadow: 0 2px 12px #000;
    border-left: 4px solid var(--accent);
    padding-left: 0.7em;
  }
  .exp-map-title span {
    font-size: 1em;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    /* Optionnel: style secondaire */
  }
  .exp-map-desc {
    font-size: 1.04em;
    color: var(--accent-light);
    margin-bottom: 1.1em;
    margin-left: 0.2em;
    max-width: 700px;
    line-height: 1.5;
  }
  .exp-feature-360-others-caption {
    font-size: 0.9em;
    color: var(--text-light);
    margin-top: 0.5em;
    text-align: center;
    line-height: 1.3;
  }
  .exp-feature-360-article-btn {
    display: block;
    background: var(--accent);
    color: var(--bg-page);
    font-size: 0.8em;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 12px;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.18s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-align: center;
    width: 100%;
  }
  .exp-feature-360-article-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
