/*
Theme Name: Travel Magazine
Theme URI: https://travelmagazine.com
Description: Tema premium para Travel Magazine. Diseño editorial de lujo.
Version: 1.4.0
Author: Dev Studio
Text Domain: travel-magazine
Requires at least: 6.3
Requires PHP: 8.1
*/

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════════ */
:root {
    --tm-black:      #111111;
    --tm-black-deep: #000000;
    --tm-gold:       #C9A86A;
    --tm-gold-light: #D4B97A;
    --tm-gold-dark:  #A8893A;
    --tm-white:      #FFFFFF;
    --tm-gray-50:    #F5F5F5;
    --tm-gray-100:   #EBEBEB;
    --tm-gray-200:   #DDDDDD;
    --tm-gray-300:   #CCCCCC;
    --tm-gray-500:   #888888;
    --tm-gray-700:   #444444;
    --font-display:  'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-body:     'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --container-max: 1280px;
    --container-px:  clamp(1rem, 3vw, 2rem);
    --header-h:      84px;
    --radius-sm:     3px;
    --radius-md:     6px;
    --shadow-sm:     0 1px 4px rgba(0,0,0,.08);
    --shadow-md:     0 4px 16px rgba(0,0,0,.12);
    --transition:    .22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.65; color: var(--tm-black); background: var(--tm-white); -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

.tm-container { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-px); }

.tm-header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--tm-black-deep);
    border-bottom: 1px solid rgba(255,255,255,.08);
    height: var(--header-h); overflow: visible;
    transition: transform .45s cubic-bezier(.4,0,.2,1), background .45s ease,
                box-shadow .45s ease, border-color .45s ease, backdrop-filter .45s ease;
}
/* Efecto de scroll (ver main.js, sección "8. HEADER SCROLL"):
   - Pasado un umbral chico, el header pasa a "vidrio esmerilado"
     (semitransparente + blur) con sombra y un filo dorado sutil, en vez
     de quedar sólido — nunca toca su altura real (--header-h lo usan
     también el offset sticky del sidebar del artículo y la barra de
     compartir lateral, así que cambiarla de verdad las desalinearía).
   - Al bajar se oculta (translateY) y al subir reaparece — patrón típico
     de sitios premium modernos, y en mobile (80% del tráfico) libera
     espacio real de lectura en vez de ser solo decorativo. */
.tm-header--scrolled {
    background: rgba(8,8,8,.72);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 10px 34px rgba(0,0,0,.4);
    border-bottom-color: rgba(201,168,106,.28);
}
.tm-header--hidden { transform: translateY(-100%); }
.tm-header__inner { display: flex; align-items: center; height: 100%; gap: .5rem; }
.tm-header__logo { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; margin-right: .25rem; }
.tm-header__logo-img { height: 68px; width: 68px; display: block; object-fit: contain; transform-origin: left center; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.tm-header--scrolled .tm-header__logo-img { transform: scale(.72); }
.tm-header__logo-travel { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--tm-white); letter-spacing: .04em; text-transform: uppercase; }
.tm-header__logo-magazine { font-size: .45rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--tm-gold); }
.tm-nav { flex: 1; min-width: 0; display: flex; align-items: center; justify-content: center; overflow: visible; }
.tm-nav__list { display: flex; gap: 0; align-items: center; flex-wrap: nowrap; }
.tm-nav__item { position: relative; }
.tm-nav__link { display: flex; align-items: center; gap: 2px; padding: 0 .5625rem; height: var(--header-h); font-size: .6875rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.75); white-space: nowrap; transition: color var(--transition); position: relative; }
.tm-nav__link:hover, .tm-nav__item:hover > .tm-nav__link, .tm-nav__link.current { color: var(--tm-gold); }
.tm-nav__link.current::after { content: ''; position: absolute; bottom: 0; left: .5rem; right: .5rem; height: 2px; background: var(--tm-gold); }
.tm-nav__link svg { width: 7px; height: 7px; fill: currentColor; }

.tm-mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--tm-white); box-shadow: 0 8px 32px rgba(0,0,0,.18); border-top: 2px solid var(--tm-gold); min-width: 680px; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition); pointer-events: none; z-index: 999; }
.tm-nav__item:hover .tm-mega-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.tm-mega-menu__grid { display: grid; grid-template-columns: 160px 1fr; gap: 1.5rem; }
.tm-mega-menu__categories { border-right: 1px solid var(--tm-gray-100); padding-right: 1.5rem; }
.tm-mega-menu__cat-link { display: flex; align-items: center; justify-content: space-between; padding: .375rem .5rem; font-size: .75rem; color: var(--tm-gray-700); border-radius: 3px; transition: all var(--transition); }
.tm-mega-menu__cat-link:hover, .tm-mega-menu__cat-link.active { background: var(--tm-gray-50); color: var(--tm-gold); }
.tm-mega-menu__regions { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.tm-mega-menu__region { display: flex; flex-direction: column; gap: .375rem; text-decoration: none; }
.tm-mega-menu__region img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; transition: opacity var(--transition); }
.tm-mega-menu__region:hover img { opacity: .82; }
.tm-mega-menu__region-name { font-size: .75rem; font-weight: 600; color: var(--tm-black); }
.tm-mega-menu__region-desc { font-size: .65rem; color: var(--tm-gray-500); }
.tm-mega-menu__footer { margin-top: 1rem; padding-top: .875rem; border-top: 1px solid var(--tm-gray-100); }
.tm-mega-menu__see-all { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tm-gold); display: flex; align-items: center; gap: .375rem; }

.tm-header__actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; margin-left: auto; }
.tm-header__search-btn { color: rgba(255,255,255,.65); display: flex; align-items: center; transition: color var(--transition); }
.tm-header__search-btn:hover { color: var(--tm-gold); }
.tm-header__lang { font-size: .575rem; font-weight: 700; letter-spacing: .1em; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 3px; transition: color var(--transition); }
.tm-header__lang:hover { color: var(--tm-gold); }
.tm-header__user-btn { display: flex; align-items: center; gap: .375rem; font-size: .575rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.8); padding: .35rem .625rem; border: 1px solid rgba(255,255,255,.2); border-radius: 2px; transition: all var(--transition); white-space: nowrap; flex-shrink: 0; }
.tm-header__user-btn:hover { border-color: var(--tm-gold); color: var(--tm-gold); }

.tm-header__burger { display: none; flex-direction: column; gap: 5px; padding: .375rem; }
.tm-header__burger span { display: block; width: 20px; height: 1.5px; background: var(--tm-white); border-radius: 1px; transition: transform var(--transition); }

@media (max-width: 1340px) { .tm-nav { display: none; } .tm-header__burger { display: flex; } .tm-header__lang { display: none; } }
@media (max-width: 600px) { .tm-header__logo-travel { font-size: 1.2rem; } }

.tm-nav--open { display: flex !important; position: absolute !important; top: 100%; left: 0; right: 0; width: 100%; background: #000; flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 1rem 0 1.5rem; overflow-y: auto; max-height: calc(100vh - 72px); z-index: 999; box-shadow: 0 12px 40px rgba(0,0,0,.6); }
.tm-nav--open .tm-nav__list { flex-direction: column; width: 100%; }
.tm-nav--open .tm-nav__link { height: auto; padding: .875rem 0; font-size: .875rem; border-bottom: 1px solid rgba(255,255,255,.07); width: 100%; }
.tm-nav--open .tm-mega-menu { display: none; }

.tm-search-overlay { position: fixed; inset: 0; z-index: 9998; background: rgba(0,0,0,.96); display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 120px; opacity: 0; visibility: hidden; transition: all var(--transition); }
.tm-search-overlay.open { opacity: 1; visibility: visible; }
.tm-search-overlay__form { width: 100%; max-width: 620px; position: relative; }
.tm-search-overlay__input { width: 100%; padding: 1rem 3rem 1rem 0; background: transparent; border: none; border-bottom: 1.5px solid rgba(255,255,255,.25); color: var(--tm-white); font-family: var(--font-display); font-size: 2.5rem; outline: none; }
.tm-search-overlay__input::placeholder { color: rgba(255,255,255,.18); }
.tm-search-overlay__input:focus { border-bottom-color: var(--tm-gold); }

.tm-hero { position: relative; height: min(580px, 52vw); min-height: 400px; overflow: hidden; background: var(--tm-black-deep); }
.tm-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.tm-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.25) 55%, transparent 100%); }
.tm-hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; padding-bottom: 3rem; max-width: 560px; }
.tm-hero__eyebrow { font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--tm-gold); margin-bottom: .875rem; }
.tm-hero__title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; color: var(--tm-white); line-height: 1.1; margin-bottom: .875rem; }
.tm-hero__desc { font-size: .9375rem; color: rgba(255,255,255,.78); line-height: 1.65; margin-bottom: 1.5rem; max-width: 440px; }
.tm-hero__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--tm-black); }
.tm-hero__thumb { position: relative; overflow: hidden; display: block; }
.tm-hero__thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; opacity: .65; transition: opacity var(--transition), transform var(--transition); }
.tm-hero__thumb:hover img { opacity: .85; transform: scale(1.04); }
.tm-hero__thumb-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; background: linear-gradient(transparent, rgba(0,0,0,.88)); }
.tm-hero__thumb-cat { font-size: .55rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tm-gold); margin-bottom: .25rem; }
.tm-hero__thumb-title { font-family: var(--font-display); font-size: .8125rem; color: var(--tm-white); line-height: 1.3; }
.tm-hero__thumb-read { font-size: .6rem; color: rgba(255,255,255,.65); margin-top: .375rem; letter-spacing: .08em; }

.tm-btn { display: inline-flex; align-items: center; gap: .375rem; padding: .75rem 1.75rem; font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); }
.tm-btn--gold { background: var(--tm-gold); color: var(--tm-white); border: 2px solid var(--tm-gold); }
.tm-btn--gold:hover { background: var(--tm-gold-dark); border-color: var(--tm-gold-dark); }
.tm-btn--outline { background: transparent; color: var(--tm-white); border: 1.5px solid rgba(255,255,255,.5); }
.tm-btn--outline:hover { border-color: var(--tm-gold); color: var(--tm-gold); }

.tm-ad-block { padding-block: .75rem; text-align: center; border-top: 1px solid var(--tm-gray-100); border-bottom: 1px solid var(--tm-gray-100); }
.tm-ad-block::before { content: 'Publicidad'; display: block; font-size: .55rem; color: var(--tm-gray-300); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .375rem; }
.tm-ad { display: inline-block; max-width: 100%; position: relative; }
.tm-ad__label { position: absolute; top: 2px; right: 2px; font-size: 9px; color: var(--tm-gray-300); background: rgba(255,255,255,.8); padding: 1px 4px; pointer-events: none; }

.tm-section { padding-block: 3.5rem; }
.tm-section--gray { background: var(--tm-gray-50); }
.tm-section--dark { background: var(--tm-black-deep); }
.tm-section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap; }
.tm-section-header__eyebrow { font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--tm-gold); margin-bottom: .5rem; }
.tm-section-header__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: var(--tm-black); line-height: 1.2; }
.tm-section--dark .tm-section-header__title { color: var(--tm-white); }
.tm-section-header__desc { font-size: .8125rem; color: var(--tm-gray-500); margin-top: .375rem; max-width: 320px; line-height: 1.55; }
.tm-section-header__link { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--tm-gold); white-space: nowrap; flex-shrink: 0; display: flex; align-items: center; gap: .375rem; transition: gap var(--transition); }
.tm-section-header__link:hover { gap: .625rem; }

.tm-card { position: relative; background: var(--tm-white); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow var(--transition); }
.tm-card:hover { box-shadow: var(--shadow-md); }
.tm-card__thumb { position: relative; overflow: hidden; flex-shrink: 0; }
.tm-card__thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform var(--transition); }
.tm-card:hover .tm-card__thumb img { transform: scale(1.04); }
.tm-card__cat { position: absolute; top: .625rem; left: .625rem; font-size: .55rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--tm-gold); background: rgba(0,0,0,.72); padding: 2px 6px; border-radius: 2px; }
.tm-card__body { padding: .875rem; flex: 1; display: flex; flex-direction: column; }
.tm-card__meta { font-size: .6875rem; color: var(--tm-gray-500); margin-bottom: .375rem; }
.tm-card__title { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; color: var(--tm-black); line-height: 1.3; margin-bottom: .375rem; transition: color var(--transition); }
.tm-card:hover .tm-card__title { color: var(--tm-gold-dark); }
.tm-card__excerpt { font-size: .8125rem; color: var(--tm-gray-700); line-height: 1.6; flex: 1; }
.tm-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: .875rem; padding-top: .75rem; border-top: 1px solid var(--tm-gray-100); }
.tm-card__read-more { font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tm-gold); display: flex; align-items: center; gap: 3px; transition: gap var(--transition); }
.tm-card:hover .tm-card__read-more { gap: 6px; }

.tm-favorite-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,.6); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); position: absolute; top: .5rem; right: .5rem; z-index: 2; }
.tm-favorite-btn:hover, .tm-favorite-btn.active { background: var(--tm-gold); }
.tm-favorite-btn svg { width: 14px; height: 14px; fill: none; stroke: var(--tm-white); stroke-width: 2; transition: fill var(--transition); }
.tm-favorite-btn.active svg { fill: var(--tm-white); animation: tm-heart-pop .4s ease; }

/* Favoritos + compartir agrupados — ver tm_render_card_actions() en
   functions.php, único punto que arma este par de botones para toda
   tarjeta con imagen (genérica, video, home). Por default se superponen
   sobre la miniatura (mismo posicionamiento que .tm-favorite-btn solo
   tenía antes); .tm-favorite-btn/.tm-share-btn quedan en flujo normal
   dentro del grupo en vez de posicionarse cada uno por su cuenta. */
.tm-card-actions { position: absolute; top: .5rem; right: .5rem; z-index: 2; display: flex; gap: .375rem; }
.tm-card-actions .tm-favorite-btn,
.tm-card-actions .tm-share-btn { position: static; }
.tm-share-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,.6); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); flex-shrink: 0; }
.tm-share-btn:hover { background: var(--tm-gold); }
.tm-share-btn svg { width: 14px; height: 14px; stroke: var(--tm-white); }

/* Variante compacta — miniaturas chicas (fila de lista del home, 88px o
   64px de alto) donde el par de botones a tamaño completo no entra bien. */
.tm-card-actions--compact { top: .3rem; right: .3rem; gap: .25rem; }
.tm-card-actions--compact .tm-favorite-btn,
.tm-card-actions--compact .tm-share-btn { width: 20px; height: 20px; }
.tm-card-actions--compact .tm-favorite-btn svg,
.tm-card-actions--compact .tm-share-btn svg { width: 9px; height: 9px; }

/* Variante en línea — tarjetas sin imagen (fila de solo texto del home:
   Insider). No hay miniatura sobre la que flotar, así que va al lado del
   link en vez de superpuesta, con un tratamiento claro en vez del fondo
   oscuro pensado para ir sobre una foto. */
.tm-card-actions--inline { position: static; flex-shrink: 0; gap: .3rem; }
.tm-card-actions--inline .tm-favorite-btn,
.tm-card-actions--inline .tm-share-btn { position: static; width: 26px; height: 26px; background: var(--tm-gray-50); }
.tm-card-actions--inline .tm-favorite-btn svg,
.tm-card-actions--inline .tm-share-btn svg { stroke: var(--tm-gray-500); width: 11px; height: 11px; }
.tm-card-actions--inline .tm-favorite-btn:hover,
.tm-card-actions--inline .tm-share-btn:hover,
.tm-card-actions--inline .tm-favorite-btn.active { background: var(--tm-gold); }
.tm-card-actions--inline .tm-favorite-btn:hover svg,
.tm-card-actions--inline .tm-share-btn:hover svg,
.tm-card-actions--inline .tm-favorite-btn.active svg { stroke: var(--tm-white); }

/* Variante "pill" (ícono + etiqueta) — vista individual de publicaciones,
   fuera de una card, así que necesita su propio fondo/borde en vez de
   flotar sobre una miniatura. Mismo elemento .tm-favorite-btn con
   data-post-id, mismo listener delegado en main.js. */
.tm-favorite-btn--pill { position: static; width: auto; height: auto; display: inline-flex; align-items: center; gap: .375rem; padding: .375rem .875rem; border: 1.5px solid var(--tm-gray-200); border-radius: 999px; background: var(--tm-white); cursor: pointer; font-family: inherit; font-size: .7rem; font-weight: 600; color: var(--tm-gray-500); white-space: nowrap; transition: all .25s cubic-bezier(.4,0,.2,1); }
.tm-favorite-btn--pill:hover { border-color: var(--tm-gold); color: var(--tm-gold-dark); }
.tm-favorite-btn--pill.active { border-color: var(--tm-gold); background: rgba(201,168,106,.1); color: var(--tm-gold-dark); }
.tm-favorite-btn--pill:disabled { opacity: .6; cursor: default; }
.tm-favorite-btn--pill__icon { font-size: .9375rem; display: inline-block; }
.tm-favorite-btn--pill.active .tm-favorite-btn--pill__icon { animation: tm-heart-pop .4s ease; }
@keyframes tm-heart-pop {
    0%   { transform: scale(1); }
    35%  { transform: scale(1.35); }
    60%  { transform: scale(.92); }
    100% { transform: scale(1); }
}

/* Mismo tratamiento "pill" que el favorito de single.php, pero solo
   visible ≤960px — a ese ancho la barra lateral de compartir (5 redes,
   ver single.php) se oculta por completo, así que sin esto el artículo
   se quedaba sin ninguna forma de compartir en mobile. */
.tm-share-btn--pill { display: none; align-items: center; gap: .375rem; padding: .375rem .875rem; border: 1.5px solid var(--tm-gray-200); border-radius: 999px; background: var(--tm-white); cursor: pointer; font-family: inherit; font-size: .7rem; font-weight: 600; color: var(--tm-gray-500); white-space: nowrap; transition: all .25s cubic-bezier(.4,0,.2,1); }
.tm-share-btn--pill:hover { border-color: var(--tm-gold); color: var(--tm-gold-dark); }
.tm-share-btn--pill svg { width: 13px; height: 13px; stroke-width: 2; }
@media (max-width: 960px) { .tm-share-btn--pill { display: inline-flex; } }

/* Toast breve anclado a un botón — favoritos (sin sesión) y compartir
   (enlace copiado), ver tmShowToast() en main.js. */
.tm-toast {
    position: fixed;
    transform: translate(-50%, -100%) translateY(-6px);
    background: #1a1a1a;
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: .5rem .875rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.tm-toast::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1a1a1a;
}
.tm-toast.show {
    opacity: 1;
    transform: translate(-50%, -100%) translateY(-10px);
}

.tm-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.tm-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.tm-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 1024px) { .tm-grid-4 { grid-template-columns: repeat(2, 1fr); } .tm-grid-3 { grid-template-columns: repeat(2, 1fr); } }
/* Antes colapsaba a 1 columna acá — con 80% de tráfico mobile eso es una
   card por pantalla y scroll interminable para listados de 12+ items
   (/destinos, /hoteles, /experiencias, /videos). 2 columnas parejas. */
@media (max-width: 600px) { .tm-grid-4, .tm-grid-3, .tm-grid-2 { grid-template-columns: repeat(2, 1fr); } }

.tm-article-wrap { display: grid; grid-template-columns: 44px 1fr 280px; gap: 2rem; align-items: start; }
.tm-article-share-lateral { position: sticky; top: calc(var(--header-h) + 2rem); display: flex; flex-direction: column; gap: .625rem; align-items: center; }
.tm-article-share-lateral a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--tm-gray-200); display: flex; align-items: center; justify-content: center; color: var(--tm-gray-500); font-size: .8125rem; transition: all var(--transition); text-decoration: none; }
.tm-article-share-lateral a:hover { border-color: var(--tm-gold); color: var(--tm-gold); }
.tm-article__header { margin-bottom: 1.75rem; }
.tm-article__cat { font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--tm-gold); margin-bottom: .625rem; }
.tm-article__title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.15; color: var(--tm-black); margin-bottom: .75rem; }
.tm-article__subtitle { font-size: 1.0625rem; color: var(--tm-gray-700); line-height: 1.55; margin-bottom: 1.25rem; }
.tm-article__meta { display: flex; align-items: center; justify-content: space-between; padding-block: .875rem; border-block: 1px solid var(--tm-gray-100); margin-bottom: 1.75rem; flex-wrap: wrap; gap: .75rem; }
.tm-article__actions { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.tm-article__author { display: flex; align-items: center; gap: .625rem; }
.tm-article__author-img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.tm-article__author-name { font-size: .8125rem; font-weight: 600; }
.tm-article__date { font-size: .6875rem; color: var(--tm-gray-500); }
.tm-article__read-time { font-size: .6875rem; color: var(--tm-gray-500); }
.tm-article__cover { border-radius: var(--radius-md); overflow: hidden; margin-bottom: .375rem; }
.tm-article__cover img { width: 100%; max-height: 500px; object-fit: cover; }
.tm-article__caption { font-size: .6875rem; color: var(--tm-gray-500); text-align: center; margin-bottom: 1.75rem; }
.tm-article__content { font-size: .9375rem; line-height: 1.8; color: var(--tm-gray-700); }
.tm-article__content p { margin-bottom: 1.25rem; }
.tm-article__content h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--tm-black); margin-block: 2rem 1rem; }
.tm-article__content h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--tm-black); margin-block: 1.5rem .75rem; }
.tm-article__content ul { margin-bottom: 1.25rem; padding-left: 1.25rem; list-style: disc; }
.tm-article__content ol { margin-bottom: 1.25rem; padding-left: 1.25rem; list-style: decimal; }
.tm-article__content li { margin-bottom: .375rem; }
.tm-article__content blockquote { border-left: 3px solid var(--tm-gold); padding-left: 1.25rem; margin-block: 2rem; font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--tm-black); }
.tm-article__content img { border-radius: var(--radius-sm); margin-block: 1.5rem; }
.tm-article__content a { color: var(--tm-gold-dark); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--transition); }
.tm-article__content a:hover { text-decoration-color: var(--tm-gold-dark); }
.tm-article__sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); display: flex; flex-direction: column; gap: 1.5rem; }
.tm-related-sidebar__title { font-size: .6rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--tm-gray-500); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--tm-gray-100); }
.tm-related-sidebar__item { display: grid; grid-template-columns: 72px 1fr; gap: .625rem; padding-block: .75rem; border-bottom: 1px solid var(--tm-gray-50); text-decoration: none; transition: opacity var(--transition); }
.tm-related-sidebar__item:hover { opacity: .75; }
.tm-related-sidebar__img { width: 72px; height: 50px; object-fit: cover; border-radius: var(--radius-sm); }
.tm-related-sidebar__cat { font-size: .55rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tm-gold); margin-bottom: 2px; }
.tm-related-sidebar__title-text { font-size: .8125rem; font-weight: 600; color: var(--tm-black); line-height: 1.3; }
@media (max-width: 960px) { .tm-article-wrap { grid-template-columns: 1fr; } .tm-article-share-lateral { display: none; } .tm-article__sidebar { position: static; } }

.tm-comments { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--tm-gray-100); }
.tm-comments__header { margin-bottom: 1.5rem; }
.tm-comments__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--tm-black); }
.tm-comments__list { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.tm-comment { display: grid; grid-template-columns: 40px 1fr; gap: .875rem; align-items: start; padding-bottom: 1.25rem; border-bottom: 1px solid var(--tm-gray-50); }
.tm-comment:last-child { border-bottom: none; }
.tm-comment__img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.tm-comment__meta { display: flex; align-items: center; gap: .625rem; margin-bottom: .375rem; flex-wrap: wrap; }
.tm-comment__author { font-size: .875rem; font-weight: 700; color: var(--tm-black); }
.tm-comment__date { font-size: .6875rem; color: var(--tm-gray-500); }
.tm-comment__text { font-size: .875rem; color: var(--tm-gray-700); line-height: 1.65; }
.tm-comment__text p { margin-bottom: .5rem; }
.tm-comment__text p:last-child { margin-bottom: 0; }
.tm-comment-form { background: var(--tm-gray-50); border-radius: var(--radius-md); padding: 1.5rem; margin-top: 1.5rem; }
.tm-comment-form__title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--tm-black); margin-bottom: 1rem; }
.tm-comment-form__textarea { width: 100%; padding: .875rem; border: 1px solid var(--tm-gray-200); border-radius: var(--radius-sm); font-size: .9375rem; font-family: var(--font-body); line-height: 1.6; color: var(--tm-black); resize: vertical; min-height: 110px; background: var(--tm-white); transition: border-color .2s; box-sizing: border-box; margin-bottom: .875rem; }
.tm-comment-form__textarea:focus { outline: none; border-color: var(--tm-gold); }
.tm-comment-form__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.tm-comment-form__user { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--tm-gray-600); font-weight: 600; }
.tm-comment-form__avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.tm-comment-login { background: var(--tm-gray-50); border-radius: var(--radius-md); padding: 2rem; text-align: center; margin-top: 1.5rem; }
.tm-comment-login__icon { font-size: 2rem; margin-bottom: .75rem; }
.tm-comment-login__text { font-size: .9375rem; color: var(--tm-gray-600); margin-bottom: 1.25rem; font-weight: 500; }

.tm-search { position: relative; }
.tm-search__box { position: absolute; top: calc(100% + 8px); right: 0; width: 360px; background: var(--tm-white); border: 1px solid var(--tm-gray-100); border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06); z-index: 9999; overflow: hidden; }
.tm-search__box[hidden] { display: none; }
.tm-search__input-wrap { display: flex; align-items: center; gap: .5rem; padding: .75rem 1rem; border-bottom: 1px solid var(--tm-gray-100); }
.tm-search__input { flex: 1; border: none; outline: none; font-size: .9375rem; font-family: var(--font-body); color: var(--tm-black); background: transparent; }
.tm-search__input::placeholder { color: var(--tm-gray-400); }
.tm-search__close { background: none; border: none; cursor: pointer; color: var(--tm-gray-400); display: flex; align-items: center; padding: .25rem; border-radius: 4px; transition: color .15s; }
.tm-search__close:hover { color: var(--tm-black); }
.tm-search__results { max-height: 420px; overflow-y: auto; }
.tm-search__results:empty { display: none; }
.tm-search__results::-webkit-scrollbar { width: 4px; }
.tm-search__results::-webkit-scrollbar-thumb { background: var(--tm-gray-200); border-radius: 4px; }
.tm-search-result-item { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .75rem 1rem; text-decoration: none; border-bottom: 1px solid var(--tm-gray-50); transition: background .15s; }
.tm-search-result-item:last-child { border-bottom: none; }
.tm-search-result-item:hover, .tm-search-result-item:focus-visible { background: var(--tm-gray-50); }
.tm-search-result-item__title { flex: 1; min-width: 0; font-size: .8125rem; font-weight: 600; color: var(--tm-black); line-height: 1.35; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tm-search-result-item__type { flex-shrink: 0; font-size: .6rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--tm-gold-dark); background: rgba(201,168,106,.1); padding: .2rem .55rem; border-radius: 999px; }
.tm-search__state { padding: 1.25rem 1rem; text-align: center; font-size: .8125rem; color: var(--tm-gray-400); }
.tm-search__empty { padding: 2rem; text-align: center; color: var(--tm-gray-500); font-size: .875rem; }
.tm-search__loading { padding: 1.25rem; text-align: center; color: var(--tm-gray-400); font-size: .8125rem; }
.tm-search__hint { padding: .875rem 1rem; font-size: .75rem; color: var(--tm-gray-400); text-align: center; border-top: 1px solid var(--tm-gray-50); }
.tm-search__group-label { padding: .5rem 1rem .25rem; font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--tm-gray-400); background: var(--tm-gray-50); }
.tm-search__item { display: flex; align-items: center; gap: .75rem; padding: .625rem 1rem; text-decoration: none; transition: background .12s; border-bottom: 1px solid var(--tm-gray-50); }
.tm-search__item:last-child { border-bottom: none; }
.tm-search__item:hover, .tm-search__item:focus { background: var(--tm-gray-50); outline: none; }
.tm-search__item-img { width: 44px; height: 34px; object-fit: cover; border-radius: 4px; flex-shrink: 0; background: var(--tm-gray-100); }
.tm-search__item-no-img { width: 44px; height: 34px; border-radius: 4px; flex-shrink: 0; background: var(--tm-gray-100); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.tm-search__item-info { flex: 1; min-width: 0; }
.tm-search__item-title { font-size: .8125rem; font-weight: 600; color: var(--tm-black); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tm-search__item-type { font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tm-gold); margin-top: 2px; display: block; }
mark.tm-highlight { background: rgba(201,168,106,.2); color: var(--tm-black); border-radius: 2px; padding: 0 1px; font-style: normal; }
.tm-search__see-all { display: block; padding: .75rem 1rem; text-align: center; font-size: .75rem; font-weight: 700; color: var(--tm-gold); text-decoration: none; border-top: 1px solid var(--tm-gray-100); transition: background .12s; }
.tm-search__see-all:hover { background: var(--tm-gray-50); }
@media (max-width: 480px) { .tm-search__box { width: calc(100vw - 2rem); right: -1rem; } }

.tm-footer { background: var(--tm-black-deep); color: rgba(255,255,255,.55); }
.tm-footer__top { padding-block: 3.5rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.tm-footer__grid { display: grid; grid-template-columns: 260px repeat(3, 1fr); gap: 3rem; }
.tm-footer__brand-logo { font-family: var(--font-display); font-size: 1.625rem; font-weight: 700; color: var(--tm-white); letter-spacing: .04em; text-transform: uppercase; line-height: 1; }
.tm-footer__brand-sub { font-size: .5rem; color: var(--tm-gold); letter-spacing: .28em; text-transform: uppercase; margin-bottom: .875rem; margin-top: 3px; }
.tm-footer__brand-desc { font-size: .8125rem; line-height: 1.7; margin-bottom: 1.25rem; }
.tm-footer__col-title { font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tm-white); margin-bottom: .875rem; }
.tm-footer__link { display: block; font-size: .8125rem; color: rgba(255,255,255,.45); padding-block: .375rem; transition: color var(--transition); }
.tm-footer__link:hover { color: var(--tm-gold); }
.tm-footer__social { display: flex; gap: .625rem; }
.tm-footer__social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); font-size: .8125rem; transition: all var(--transition); }
.tm-footer__social a:hover { border-color: var(--tm-gold); color: var(--tm-gold); }
.tm-footer__partners { padding-block: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.tm-footer__partners .tm-container { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.tm-footer__partner-label { font-size: .55rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.28); flex-shrink: 0; }
.tm-footer__partner-logos { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.tm-footer__partner-logo { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.35); letter-spacing: .04em; text-transform: uppercase; transition: color var(--transition); }
.tm-footer__partner-logo:hover { color: rgba(255,255,255,.75); }
.tm-footer__bottom { padding-block: 1.125rem; }
.tm-footer__bottom .tm-container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.tm-footer__copy { font-size: .6875rem; color: rgba(255,255,255,.28); }
@media (max-width: 900px) { .tm-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .tm-footer__grid { grid-template-columns: 1fr; } .tm-footer__bottom .tm-container { flex-direction: column; align-items: flex-start; } }

/* Hero de los archivos de destinos/hoteles/videos/experiencias/lifestyle
   — ver tm_render_section_hero() en functions.php. */
.tm-section-hero { position: relative; overflow: hidden; min-height: 220px; display: flex; align-items: flex-end; padding: 2rem 0 1.75rem; background: var(--tm-black-deep); }
.tm-section-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.tm-section-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.4) 65%, rgba(0,0,0,.15) 100%); }
.tm-section-hero__content { position: relative; z-index: 2; width: 100%; }
.tm-section-hero__eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--tm-gold); margin-bottom: .75rem; }
.tm-section-hero__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #fff; margin-bottom: .75rem; line-height: 1.1; }
.tm-section-hero__subtitle { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 560px; }
@media (max-width: 600px) { .tm-section-hero { min-height: 190px; padding: 1.75rem 0 1.5rem; } }

.tm-breadcrumb { font-size: .6875rem; color: var(--tm-gray-500); margin-bottom: 1.25rem; display: flex; align-items: center; gap: .375rem; flex-wrap: wrap; }
.tm-breadcrumb a { color: var(--tm-gray-500); transition: color var(--transition); }
.tm-breadcrumb a:hover { color: var(--tm-gold); }
.tm-breadcrumb span { color: var(--tm-gold); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.tm-divider { height: 1px; background: var(--tm-gray-100); margin-block: 1.5rem; }

@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@3.10.0/tabler-icons.min.css');
#tm-sticky-bar { position: fixed; right: 20px; bottom: 80px; z-index: 9990; display: flex; flex-direction: column; align-items: flex-end; gap: 0; opacity: 0; pointer-events: none; transform: translateX(calc(100% + 20px)); transition: opacity .35s ease, transform .35s cubic-bezier(.4,0,.2,1); }
#tm-sticky-bar.visible { opacity: 1; pointer-events: auto; transform: translateX(0); }
.admin-bar #tm-sticky-bar { bottom: 114px; }
#tm-sticky-btn { width: 50px; height: 50px; border-radius: 50%; background: var(--tm-gold, #C9A86A); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; box-shadow: 0 4px 20px rgba(201,168,106,.35); flex-shrink: 0; }
#tm-sticky-btn:hover { background: var(--tm-gold-dark, #A8893A); transform: scale(1.06); }
#tm-sticky-btn.active { background: var(--tm-white, #fff); }
#tm-sticky-btn .ti { font-size: 22px; color: #000; transition: transform .3s; }
#tm-sticky-btn.active .ti { color: #000; }
.tm-sticky-label { font-size: .55rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); text-align: center; margin-top: 5px; display: block; }
#tm-sticky-panel { background: #0A0A0A; border: 1px solid rgba(201,168,106,.2); border-radius: 14px; width: 230px; overflow: hidden; max-height: 0; opacity: 0; margin-bottom: 0; pointer-events: none; transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .3s ease, margin-bottom .3s ease; }
#tm-sticky-panel.open { max-height: 500px; opacity: 1; margin-bottom: 12px; pointer-events: auto; }
.tm-sticky-panel__header { padding: 14px 16px 10px; border-bottom: 1px solid rgba(255,255,255,.06); }
.tm-sticky-panel__brand { display: block; font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--tm-gold, #C9A86A); margin-bottom: 2px; }
.tm-sticky-panel__sub { font-size: .75rem; color: rgba(255,255,255,.35); }
.tm-sticky-panel__nav { padding: 6px 0; }
.tm-sticky-panel__link { display: flex; align-items: center; gap: 10px; padding: 9px 16px; font-size: .8125rem; color: rgba(255,255,255,.6); text-decoration: none; transition: background .15s, color .15s; }
.tm-sticky-panel__link:hover { background: rgba(201,168,106,.08); color: var(--tm-gold, #C9A86A); }
.tm-sticky-panel__link .ti { font-size: 16px; color: rgba(255,255,255,.25); transition: color .15s; flex-shrink: 0; }
.tm-sticky-panel__link:hover .ti { color: var(--tm-gold, #C9A86A); }
.tm-sticky-panel__footer { padding: 10px 12px 14px; border-top: 1px solid rgba(255,255,255,.06); display: flex; flex-direction: column; gap: 8px; }
.tm-sticky-panel__cta { display: block; background: var(--tm-gold, #C9A86A); color: #000 !important; text-align: center; padding: 9px; border-radius: 6px; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; transition: background .2s; }
.tm-sticky-panel__cta:hover { background: var(--tm-gold-dark, #A8893A); }
.tm-sticky-panel__login { display: block; text-align: center; font-size: .7rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.tm-sticky-panel__login:hover { color: var(--tm-gold, #C9A86A); }
@media (max-width: 768px) { #tm-sticky-bar { right: 12px; bottom: 70px; } #tm-sticky-btn { width: 44px; height: 44px; } #tm-sticky-btn .ti { font-size: 20px; } #tm-sticky-panel { width: 200px; } }
.page-template-page-tm-dashboard #tm-sticky-bar { display: none; }

.tm-header__burger { flex-direction: column; gap: 5px; }
.tm-header__burger-line { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .2s; }
@media (max-width: 1340px) {
    .tm-nav { display: none !important; position: absolute !important; top: 100% !important; left: 0 !important; right: 0 !important; width: 100% !important; background: #000 !important; flex-direction: column !important; padding: 1rem 0 1.5rem !important; z-index: 998 !important; box-shadow: 0 8px 32px rgba(0,0,0,.5) !important; max-height: calc(100vh - 72px); max-height: calc(100dvh - 72px); overflow-y: auto !important; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
    .tm-nav.tm-nav--open { display: flex !important; }
    .tm-nav .tm-nav__item { width: 100%; border-bottom: 1px solid rgba(255,255,255,.07); }
    .tm-nav .tm-nav__link { display: block !important; padding: .875rem 1.5rem !important; font-size: 1rem !important; color: #fff !important; font-weight: 500; }
    .tm-nav .tm-nav__link:hover { color: #C9A86A !important; }
    .tm-header { position: sticky; overflow: visible; }
    .tm-header__inner { position: relative; }
    .tm-header__burger { display: flex !important; }
    .tm-header__burger--open .tm-header__burger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .tm-header__burger--open .tm-header__burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .tm-header__burger--open .tm-header__burger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .tm-header__lang { display: none !important; }
    .tm-header__user-btn span:not(:first-child) { display: none; }
}
/* El responsive del hero del home vive en el <style> inline de index.php
   (junto al resto del CSS del carrusel) — este bloque quedó duplicado y
   además apuntaba a clases que no existen en el HTML actual
   (.tm-hero-slide__title/.tm-hero-slide__excerpt en vez de .tm-hero__title/
   .tm-hero__desc), así que el achique de fuente y el ocultamiento de la
   bajada en mobile nunca se aplicaban de verdad. */
@media (max-width: 900px) {
    /* 260px + 3x1fr no entra cómodo en tablet. Antes pasaba a 2 columnas y
       dejaba el tercer bloque de links (Legal) solo, huérfano, en su
       propia fila — ahora son 3 columnas parejas para los 3 bloques de
       links, con la marca arriba ocupando todo el ancho. */
    .tm-footer__grid { grid-template-columns: repeat(3, 1fr) !important; gap: 2rem !important; }
    .tm-footer__brand { grid-column: 1 / -1 !important; display: flex; align-items: center; gap: .875rem; }
    .tm-footer__brand img { height: 44px !important; width: 44px !important; }
    .tm-footer__brand-desc { margin-top: 0 !important; font-size: .8125rem; }
    .tm-footer__top { padding-block: 2.75rem !important; }
}
@media (max-width: 640px) {
    .tm-footer__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1.75rem 1.5rem !important; }
}
@media (max-width: 460px) {
    .tm-footer__grid { grid-template-columns: 1fr !important; gap: 1.75rem !important; }
    .tm-footer__top { padding-block: 2.25rem !important; }
    .tm-footer__brand { flex-direction: column; align-items: flex-start; }
    .tm-footer__partner-logos { display: none !important; }
    .tm-footer__bottom .tm-container { flex-direction: column !important; gap: .5rem !important; text-align: center !important; }
}
@media (max-width: 900px) { .tm-article-layout { grid-template-columns: 1fr !important; } .tm-article__share-sidebar, .tm-article__sidebar { display: none !important; } }
@media (max-width: 600px) {
    .tmlh { padding: 2rem 1.25rem 1.5rem !important; }
    .tmlb { padding: 2rem 1.25rem 3rem !important; }
    .tmlh h1 { font-size: 1.625rem !important; }
    .tbl { font-size: .75rem !important; display: block; overflow-x: auto; }
    .tmlnav { gap: .375rem !important; }
    .tmlnav a { font-size: .6rem !important; padding: .3rem .625rem !important; }
}
@media (max-width: 860px) {
    #tm-profile-layout { flex-direction: column !important; }
    #tm-profile-sidebar { width: 100% !important; height: auto !important; position: static !important; }
    #tm-profile-sidebar .tm-sidebar-header, #tm-profile-sidebar .tm-sidebar-cta { display: none !important; }
    #tm-profile-sidebar nav { flex-direction: row !important; overflow-x: auto !important; padding: .5rem .875rem !important; gap: .25rem !important; scrollbar-width: none; }
    #tm-profile-sidebar nav a { white-space: nowrap !important; margin-bottom: 0 !important; }
    .tm-pf-wrap { padding: 1.25rem !important; }
    .tm-pf-grid-2 { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) { #tm-cb { flex-direction: column !important; padding: 1rem !important; gap: .75rem !important; } #tm-cw { width: 100% !important; } #tm-ca, #tm-ce { flex: 1 !important; text-align: center !important; } }
html { overflow-x: hidden !important; }
img, video, iframe { max-width: 100%; }

.tm-card,.tm-card[class]{border-radius:10px!important;box-shadow:0 1px 4px rgba(0,0,0,.07),0 4px 16px rgba(0,0,0,.05)!important;transition:box-shadow .3s ease,transform .3s ease!important}
.tm-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.13),0 2px 8px rgba(0,0,0,.06)!important;transform:translateY(-3px)!important}
.tm-card__thumb{aspect-ratio:16/10!important;overflow:hidden!important}
.tm-card__thumb img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important;transition:transform .5s ease!important}
.tm-card:hover .tm-card__thumb img{transform:scale(1.05)!important}
.tm-card__body{padding:1.125rem 1.25rem 1.25rem!important}
.tm-card__title{font-size:1rem!important;line-height:1.35!important;font-weight:700!important;letter-spacing:-.01em!important;margin-bottom:.625rem!important}
.tm-card__meta{font-size:.6875rem!important;letter-spacing:.02em!important;margin-bottom:.5rem!important}
.tm-card__excerpt{font-size:.875rem!important;line-height:1.65!important;color:#444!important;margin-bottom:.875rem!important}
.tm-card__read-more{font-size:.65rem!important;font-weight:700!important;letter-spacing:.12em!important;text-transform:uppercase!important;color:#C9A86A!important;display:inline-flex!important;align-items:center!important;gap:.25rem!important;transition:gap .2s ease!important}
.tm-card:hover .tm-card__read-more{gap:.5rem!important}
.tm-card__cat{font-size:.6rem!important;font-weight:700!important;letter-spacing:.14em!important;background:#C9A86A!important;color:#000!important;padding:.25rem .625rem!important;border-radius:3px!important}
.tm-section-header__eyebrow{font-size:.6rem!important;font-weight:700!important;letter-spacing:.22em!important;margin-bottom:.875rem!important}
.tm-section-header__title{font-size:clamp(1.625rem,3.5vw,2.375rem)!important;line-height:1.2!important;letter-spacing:-.02em!important;margin-bottom:1rem!important}
.tm-section-header__link{font-size:.6rem!important;font-weight:700!important;letter-spacing:.14em!important;text-transform:uppercase!important;display:inline-flex!important;align-items:center!important;gap:.375rem!important;transition:gap .2s,color .2s!important}
.tm-section-header__link:hover{gap:.625rem!important}
.tm-section,.tm-section--gray{padding-block:4.5rem!important}
.tm-grid-4{gap:1.5rem!important}
.tm-grid-3{gap:1.75rem!important}
.tm-grid-2{gap:2rem!important}
.tm-section+.tm-section{border-top:1px solid #ebebeb!important}
.tm-section--gray+.tm-section,.tm-section+.tm-section--gray{border-top:none!important}
/* Los gap!important de arriba no tienen media query — ganan en cualquier
   ancho de pantalla salvo que la regla que los pisa esté, como esta,
   después en el archivo y sea igual de !important. */
@media (max-width: 600px) {
    .tm-grid-4,.tm-grid-3,.tm-grid-2 { gap: .75rem !important; }
}


/* ══════════════════════════════════════════════════
   VIDEO CARD — archive-tm_video.php. Antes esto era
   ~35 líneas de style="" inline por card, repetidas 12
   veces por página, sin ningún wrapper de grid/sidebar
   con CSS real (.tm-videos-layout/.tm-videos-sidebar/
   .tm-videos-grid no estaban definidas en ningún lado —
   por eso el archivo de videos se veía sin estilo). Ahora
   /videos/ reusa el mismo .tm-archive-layout/.tm-archive-sidebar
   que /destinos/, /hoteles/ y /experiencias/.
   ══════════════════════════════════════════════════ */
.tm-video-card { background: var(--tm-white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s; }
.tm-video-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tm-video-card__media-wrap { position: relative; }
.tm-video-card__media { display: block; position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--tm-black); }
.tm-video-card__media img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .25s; display: block; }
.tm-video-card:hover .tm-video-card__media img { opacity: 1; }
.tm-video-card__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.tm-video-card__play svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.tm-video-card__duration { position: absolute; bottom: .5rem; right: .5rem; background: rgba(0,0,0,.75); color: #fff; font-size: .65rem; font-weight: 600; padding: .15rem .5rem; border-radius: 3px; }
.tm-video-card__body { padding: 1rem; }
.tm-video-card__cat { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--tm-gold); margin-bottom: .375rem; }
.tm-video-card__title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; line-height: 1.3; margin-bottom: .375rem; }
.tm-video-card__title a { color: var(--tm-black); text-decoration: none; }
.tm-video-card__subtitle { font-size: .8rem; color: var(--tm-gray-700); margin-bottom: .5rem; line-height: 1.4; }
.tm-video-card__meta { font-size: .7rem; color: var(--tm-gray-500); display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin: 0; }



/* ══════════════════════════════════════════════════
   FILTRO CHIPS — reusados dentro del sidebar de archivo
   (.tm-archive-sidebar), dorado de marca
   ══════════════════════════════════════════════════ */
.tm-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    flex: 1;
}
.tm-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .9rem;
    border: 1px solid var(--tm-gray-200);
    border-radius: 999px;
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .01em;
    color: var(--tm-gray-700);
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s cubic-bezier(.4,0,.2,1);
}
.tm-filter-chip:hover {
    border-color: var(--tm-gold);
    color: var(--tm-gold-dark);
    background: rgba(201,168,106,.06);
    transform: translateY(-1px);
}
.tm-filter-chip.is-active {
    background: var(--tm-gold);
    border-color: var(--tm-gold);
    color: #1a1508;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(201,168,106,.35);
}
.tm-filter-chip.is-active:hover {
    background: var(--tm-gold-dark);
    border-color: var(--tm-gold-dark);
    color: #fff;
    transform: translateY(-1px);
}
.tm-filter-chip__count {
    font-size: .625rem;
    opacity: .6;
}
/* ══════════════════════════════════════════════════
   ARCHIVE LAYOUT — sidebar izquierdo de filtros/búsqueda
   + grid de resultados, usado por archive-tm_destino.php,
   archive-tm_hotel.php y archive-tm_experiencia.php.
   ══════════════════════════════════════════════════ */
.tm-archive-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}
.tm-archive-sidebar {
    position: sticky;
    top: 2rem;
}
/* <details> es el contenedor: se muestra siempre abierto en desktop
   (el <summary> queda oculto, así que no hay forma de colapsarlo ahí) y
   se vuelve un panel colapsable real en mobile (media query más abajo). */
.tm-archive-sidebar summary {
    display: none;
}
.tm-sidebar-card {
    background: var(--tm-white);
    border: 1px solid var(--tm-gray-100);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    padding: 1.5rem;
}
.tm-sidebar-section {
    margin-bottom: 1.5rem;
}
.tm-sidebar-section:last-of-type {
    margin-bottom: 0;
}
.tm-sidebar-title {
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--tm-black);
    margin: 0 0 .75rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--tm-gray-100);
}
.tm-sidebar-search__field {
    position: relative;
}
.tm-sidebar-search__field svg {
    position: absolute;
    left: .875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tm-gray-500);
    pointer-events: none;
}
.tm-sidebar-search__field input {
    width: 100%;
    padding: .65rem .875rem .65rem 2.5rem;
    border: 1px solid var(--tm-gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: .8125rem;
    color: var(--tm-black);
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
}
.tm-sidebar-search__field input:focus {
    outline: none;
    border-color: var(--tm-gold);
    box-shadow: 0 0 0 3px rgba(201,168,106,.12);
}
.tm-sidebar-search-form select {
    width: 100%;
    padding: .65rem 2.25rem .65rem .875rem;
    border: 1px solid var(--tm-gray-200);
    border-radius: 8px;
    background: var(--tm-white) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path d="M1 1l4 4 4-4" fill="none" stroke="%23888888" stroke-width="1.5"/></svg>') no-repeat right .875rem center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--tm-gray-700);
    cursor: pointer;
    box-sizing: border-box;
}
.tm-sidebar-search-form select:hover,
.tm-sidebar-search-form select:focus {
    outline: none;
    border-color: var(--tm-gold);
}
.tm-sidebar-search__submit {
    width: 100%;
    margin-top: 1rem;
    padding: .65rem;
    border: none;
    border-radius: 8px;
    background: var(--tm-gold);
    color: var(--tm-white);
    font-family: inherit;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    transition: background .2s;
}
.tm-sidebar-search__submit:hover {
    background: var(--tm-gold-dark);
}
.tm-sidebar-results {
    font-size: .7rem;
    letter-spacing: .04em;
    color: var(--tm-gray-400);
    text-transform: uppercase;
    margin: 0;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--tm-gray-100);
}
.tm-sidebar-results strong {
    color: var(--tm-black);
    font-weight: 700;
}
.tm-sidebar-clear {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: .75rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--tm-gold-dark);
    text-decoration: none;
    transition: gap .2s;
}
.tm-sidebar-clear:hover {
    gap: .5rem;
    color: var(--tm-black);
}
.tm-archive-content {
    min-width: 0;
}

@media (max-width: 992px) {
    .tm-archive-layout {
        grid-template-columns: 1fr;
    }
    .tm-archive-sidebar {
        position: static;
        margin-bottom: 1.75rem;
    }
    .tm-archive-sidebar summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding: .875rem 1.25rem;
        background: var(--tm-white);
        border: 1px solid var(--tm-gray-100);
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,.04);
        font-family: var(--font-display);
        font-size: .8125rem;
        font-weight: 700;
        color: var(--tm-black);
        list-style: none;
    }
    .tm-archive-sidebar summary::-webkit-details-marker {
        display: none;
    }
    .tm-archive-sidebar summary::after {
        content: '▾';
        font-size: .7rem;
        color: var(--tm-gray-500);
        transition: transform .2s;
    }
    .tm-archive-sidebar[open] summary::after {
        transform: rotate(180deg);
    }
    .tm-archive-sidebar[open] summary {
        border-radius: 12px 12px 0 0;
        border-bottom-color: transparent;
    }
    .tm-sidebar-card {
        border-radius: 0 0 12px 12px;
        box-shadow: none;
    }
}

/* ══════════════════════════════════════════════════
   HOME — componentes reusables (Hoteles, Experiencias,
   Movilidad, Privilegios, Insider). Antes cada sección
   repetía este mismo patrón visual a mano con style=""
   inline — ver tm_render_home_*() en functions.php.
   ══════════════════════════════════════════════════ */
.tm-home-featured,
.tm-home-list-item--card,
.tm-home-mini-card {
    text-decoration: none;
    background: var(--tm-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.05);
    transition: box-shadow .3s, transform .3s;
}
.tm-home-featured:hover,
.tm-home-list-item--card:hover,
.tm-home-mini-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.12), 0 8px 28px rgba(0,0,0,.08);
    transform: translateY(-2px);
}
.tm-home-featured { display: flex; flex-direction: column; height: 100%; }
.tm-home-featured__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #111; }
.tm-home-featured__media > a { display: block; width: 100%; height: 100%; }
.tm-home-featured__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tm-home-featured__badge { position: absolute; top: .875rem; left: .875rem; font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: var(--tm-gold); color: #000; padding: .3rem .7rem; border-radius: 3px; }
.tm-home-featured__body { padding: 1.25rem 1.375rem 1.5rem; flex: 1; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.tm-home-featured__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--tm-black); line-height: 1.3; margin: 0 0 .625rem; }
.tm-home-featured__excerpt { font-size: .875rem; color: #555; line-height: 1.65; margin: 0 0 1rem; flex: 1; }
.tm-home-featured__cta { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--tm-gold-dark); }

.tm-home-list-item { display: flex; gap: 1rem; align-items: center; text-decoration: none; }
.tm-home-list-item--card { padding: .875rem; }
.tm-home-list-item--row { padding: .875rem 0; border-bottom: 1px solid var(--tm-gray-100); gap: .875rem; }
.tm-home-list-item__thumb { position: relative; flex-shrink: 0; overflow: hidden; background: #111; }
.tm-home-list-item__thumb--square { width: 88px; height: 88px; border-radius: 8px; }
.tm-home-list-item__thumb--rect { width: 84px; height: 64px; border-radius: 7px; }
.tm-home-list-item__thumb > a { display: block; width: 100%; height: 100%; }
.tm-home-list-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tm-home-list-item__body { flex: 1; min-width: 0; text-decoration: none; color: inherit; }
.tm-home-list-item__title { font-family: var(--font-display); font-size: .875rem; font-weight: 700; color: var(--tm-black); line-height: 1.3; margin: 0 0 .25rem; }
.tm-home-list-item__excerpt { font-size: .7rem; color: #767676; line-height: 1.4; margin: 0; }
.tm-home-list-item--card .tm-home-list-item__excerpt { margin-bottom: .3rem; }
.tm-home-list-item__cta { font-size: .575rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tm-gold-dark); }

.tm-home-mini-card__media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #111; }
.tm-home-mini-card__media > a { display: block; width: 100%; height: 100%; }
.tm-home-mini-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tm-home-mini-card__cat { position: absolute; top: .625rem; left: .625rem; font-size: .55rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(0,0,0,.72); color: var(--tm-gold); padding: .2rem .5rem; border-radius: 2px; }
.tm-home-mini-card__body { display: block; padding: .75rem .875rem .875rem; text-decoration: none; color: inherit; }
.tm-home-mini-card__title { font-family: var(--font-display); font-size: .8125rem; font-weight: 700; color: var(--tm-black); line-height: 1.3; margin: 0 0 .375rem; }
.tm-home-mini-card__cta { font-size: .575rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tm-gold-dark); }

.tm-home-text-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .75rem 0; border-bottom: 1px solid var(--tm-gray-100); }
.tm-home-text-row__link { display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex: 1; min-width: 0; text-decoration: none; color: inherit; }
.tm-home-text-row__title { font-family: var(--font-display); font-size: .875rem; font-weight: 700; color: var(--tm-black); line-height: 1.3; }
.tm-home-text-row__cta { font-size: .575rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tm-gold-dark); white-space: nowrap; flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   HOME — banner de newsletter
   ══════════════════════════════════════════════════ */
.tm-home-newsletter { background: var(--tm-black-deep); padding: 3.5rem 0; }
.tm-home-newsletter__inner { max-width: 560px; margin-inline: auto; text-align: center; }
.tm-home-newsletter__eyebrow { font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--tm-gold); margin-bottom: .625rem; }
.tm-home-newsletter__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700; color: #fff; margin-bottom: .625rem; line-height: 1.2; }
.tm-home-newsletter__desc { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.65; margin-bottom: 1.75rem; }
.tm-home-newsletter__form { display: flex; gap: .625rem; max-width: 420px; margin-inline: auto; }
.tm-home-newsletter__input { flex: 1; min-width: 0; padding: .8rem 1rem; border: none; border-radius: 8px; font-size: .875rem; font-family: inherit; box-sizing: border-box; }
.tm-home-newsletter__input:focus { outline: 2px solid var(--tm-gold); outline-offset: 1px; }
.tm-home-newsletter__submit { background: var(--tm-gold); color: #000; border: none; border-radius: 8px; padding: .8rem 1.375rem; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background .2s; }
.tm-home-newsletter__submit:hover { background: var(--tm-gold-dark); }
.tm-home-newsletter__msg { font-size: .75rem; color: var(--tm-gold); margin-top: .875rem; min-height: 1.2em; }
@media (max-width: 480px) {
    .tm-home-newsletter { padding: 2.75rem 0; }
    .tm-home-newsletter__form { flex-direction: column; }
    .tm-home-newsletter__submit { width: 100%; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — grids de 2 columnas del home (Hoteles,
   Experiencias+Movilidad, Privilegios+Insider)
   ══════════════════════════════════════════════════ */
@media (max-width: 860px) {
    .tm-responsive-2col {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
    }
}

/* ══════════════════════════════════════════════════
   POPUP — newsletter (configurable desde el dashboard)
   ══════════════════════════════════════════════════ */
.tm-popup-backdrop { position: fixed; inset: 0; z-index: 99998; background: rgba(0,0,0,.72); display: flex; align-items: center; justify-content: center; padding: 1.25rem; opacity: 0; transition: opacity .25s ease; }
.tm-popup-backdrop[hidden] { display: none; }
.tm-popup-backdrop--visible { opacity: 1; }
.tm-popup { position: relative; width: 100%; max-width: 420px; background: var(--tm-white); border-radius: 14px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.4); transform: translateY(12px) scale(.98); transition: transform .25s ease; }
.tm-popup-backdrop--visible .tm-popup { transform: translateY(0) scale(1); }
.tm-popup__close { position: absolute; top: .625rem; right: .625rem; width: 30px; height: 30px; border-radius: 50%; border: none; background: rgba(0,0,0,.55); color: #fff; font-size: 1.25rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 1; }
.tm-popup__close:hover { background: rgba(0,0,0,.75); }
.tm-popup__media { width: 100%; aspect-ratio: 16/9; background: var(--tm-gray-100); }
.tm-popup__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tm-popup__body { padding: 1.75rem; text-align: center; }
.tm-popup__title { font-family: var(--font-display); font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 700; color: var(--tm-black); margin: 0 0 .5rem; line-height: 1.25; }
.tm-popup__subtitle { font-size: .875rem; color: var(--tm-gray-700); line-height: 1.55; margin: 0 0 1.375rem; }
.tm-popup__form { display: flex; gap: .625rem; }
.tm-popup__input { flex: 1; min-width: 0; padding: .75rem .875rem; border: 1px solid var(--tm-gray-300); border-radius: 8px; font-size: .875rem; font-family: inherit; box-sizing: border-box; }
.tm-popup__input:focus { outline: 2px solid var(--tm-gold); outline-offset: 1px; }
.tm-popup__submit { background: var(--tm-gold); color: #000; border: none; border-radius: 8px; padding: .75rem 1.25rem; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background .2s; }
.tm-popup__submit:hover { background: var(--tm-gold-dark); }
.tm-popup__msg { font-size: .75rem; color: var(--tm-gold-dark); margin: .75rem 0 0; min-height: 1.2em; }
@media (max-width: 480px) {
    .tm-popup__body { padding: 1.5rem; }
    .tm-popup__form { flex-direction: column; }
    .tm-popup__submit { width: 100%; }
}
