/* ═══════════════════════════════════════════════════════════════
   /trabajo/ — Cosmos Editorial
   Este archivo NO redefine tokens, nav, botones base ni .eyebrow/
   .section — todo eso ya vive en /style.css (raíz) y ya está
   migrado al sistema dorado. Aquí solo lo específico de esta
   página: hero propio, filtros por objetivo de negocio, tarjetas
   con storytelling (problema → solución → resultado) y la sección
   de capacidades.
═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────
   HERO — mismo universo del inicio: fondo void, grain, partículas
   doradas. Sin el retrato (no aplica aquí), pero con el mismo aire.
─────────────────────────────────────────────────────────────── */
.tw-hero {
  position: relative;
  padding: 160px 0 96px;
  overflow: hidden;
  isolation: isolate;
  background: var(--hv2-void);
}
.tw-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(120% 90% at 50% 0%, var(--hv2-void-soft) 0%, var(--hv2-void) 60%);
}
.tw-hero__grain {
  position: absolute;
  inset: -50%;
  z-index: 2;
  width: 200%;
  height: 200%;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.tw-hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.tw-hero__inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
}
.tw-hero__title {
  font-family: var(--hv2-font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--hv2-ink);
  margin-bottom: 24px;
}
.tw-hero__accent {
  font-style: italic;
  font-weight: 400;
  color: var(--hv2-gold);
}
.tw-hero__sub {
  font-family: var(--hv2-font-body);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  color: var(--hv2-ink-dim);
  max-width: 540px;
  margin-bottom: 48px;
}

/* Stats — prueba inmediata, no decoración */
.tw-hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.tw-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tw-hero__stat-num {
  font-family: var(--hv2-font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  color: var(--hv2-gold);
  line-height: 1;
}
.tw-hero__stat-arrow { margin: 0 4px; opacity: 0.6; font-weight: 400; }
.tw-hero__stat-label {
  font-family: var(--hv2-font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hv2-ink-dim);
}
.tw-hero__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--hv2-line);
}

@media (max-width: 600px) {
  .tw-hero { padding: 130px 0 72px; }
  .tw-hero__stats { gap: 18px; }
  .tw-hero__stat-divider { display: none; }
}

/* ───────────────────────────────────────────────────────────────
   GRID DE PROYECTOS
─────────────────────────────────────────────────────────────── */
.tw-grid-section {
  padding: 56px 0 120px;
  background: var(--hv2-void);
}

/* Filtros en la página de trabajo */
.tw-filters {
  margin-bottom: 48px;
}

/* ── CASO DESTACADO ────────────────────────────────────────────
   El único gesto de layout nuevo: una tarjeta a ancho completo,
   imagen y texto lado a lado, reservada para el caso más fuerte.
   Mantiene tokens, radios y hover del sistema; solo cambia la
   escala y la disposición. Escala bien: futuros casos web fuertes
   entran aquí; el resto cae en .tw-grid de abajo. */
.tw-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--hv2-void-soft);
  border: 1px solid var(--hv2-line);
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 56px;
  transition: border-color 0.3s var(--hv2-ease), transform 0.3s var(--hv2-ease);
}
.tw-featured:hover {
  border-color: var(--hv2-gold-dim);
  transform: translateY(-4px);
}
.tw-featured__media {
  position: relative;
  overflow: hidden;
  background: #0a0907;
  min-height: 420px;
}
.tw-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--hv2-ease);
}
.tw-featured:hover .tw-featured__media img { transform: scale(1.04); }

/* ── PANEL DE DATOS (reemplaza imagen en el destacado) ──────────
   Cuenta la historia de performance sin depender de un screenshot.
   Coherente con el mensaje "carga instantánea, sin dependencias":
   el caso estrella no carga ni una imagen. Todo en tokens. */
.tw-featured__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(100% 85% at 50% 42%, rgba(205,183,142,0.14) 0%, transparent 62%),
    #030302;
  border-right: 1px solid var(--hv2-gold-dim);
  box-shadow: inset -50px 0 70px -50px rgba(0,0,0,0.95);
  isolation: isolate;
}
.tw-panel__grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.tw-panel__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  padding: 40px;
  text-align: center;
}
.tw-panel__eyebrow {
  display: block;
  font-family: var(--hv2-font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hv2-ink-dim);
  margin-bottom: 20px;
}
.tw-panel__score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  font-family: var(--hv2-font-display);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 28px;
}
.tw-panel__from {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--hv2-ink-faint);
  position: relative;
}
.tw-panel__from::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 52%;
  height: 2px;
  background: var(--hv2-ink-faint);
  transform: rotate(-8deg);
}
.tw-panel__arrow {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--hv2-gold-dim);
  font-weight: 400;
}
.tw-panel__to {
  font-size: clamp(3.4rem, 7vw, 5rem);
  color: var(--hv2-gold);
  text-shadow: 0 0 55px rgba(205,183,142,0.45);
}
/* Barra antes/después — se llena al revelar la tarjeta */
.tw-panel__bar {
  position: relative;
  height: 6px;
  border-radius: 100px;
  background: rgba(244,239,230,0.08);
  overflow: visible;
  margin-bottom: 26px;
}
.tw-panel__bar-fill {
  position: absolute;
  inset: 0;
  width: 40%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--hv2-gold-dim), var(--hv2-gold));
  transition: width 1.1s var(--hv2-ease) 0.2s;
}
.tw-featured.visible .tw-panel__bar-fill { width: 97%; }
.tw-panel__bar-mark {
  position: absolute;
  top: 12px;
  font-family: var(--hv2-font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hv2-ink-faint);
}
.tw-panel__bar-mark--from { left: 2px; }
.tw-panel__bar-mark--to { right: 2px; color: var(--hv2-gold); }
.tw-panel__foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--hv2-font-ui);
  font-size: 0.74rem;
  color: var(--hv2-ink-dim);
}
.tw-panel__foot strong { color: var(--hv2-ink); font-weight: 600; }
.tw-panel__foot-dot { color: var(--hv2-gold-dim); }

@media (prefers-reduced-motion: reduce) {
  .tw-panel__bar-fill { transition: none; width: 97%; }
}
.tw-featured__flag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--hv2-font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hv2-gold);
  background: rgba(8,8,7,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--hv2-gold-dim);
  border-radius: 100px;
  padding: 7px 14px;
}
.tw-featured__body {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.tw-featured__title {
  font-family: var(--hv2-font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--hv2-ink);
  line-height: 1.05;
  margin-bottom: 2px;
}
.tw-featured__lead {
  font-family: var(--hv2-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--hv2-ink);
}
.tw-featured__detail {
  font-family: var(--hv2-font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--hv2-ink-dim);
}

/* Métricas del destacado — la jerarquía que separa DATO de CLAIM:
   el número medido (40→97) manda; los de apoyo van más callados. */
.tw-featured__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 6px 0 4px;
}
.tw-metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  border: 1px solid var(--hv2-line);
  border-radius: 12px;
  background: rgba(244,239,230,0.02);
  flex: 1 1 auto;
  min-width: 0;
}
.tw-metric--hero {
  border-color: var(--hv2-gold-dim);
  background: var(--hv2-gold-faint);
}
.tw-metric__num {
  font-family: var(--hv2-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--hv2-ink-dim);
  line-height: 1;
}
.tw-metric--hero .tw-metric__num {
  color: var(--hv2-gold);
  font-size: 1.65rem;
}
.tw-metric__label {
  font-family: var(--hv2-font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hv2-ink-dim);
  line-height: 1.3;
}
.tw-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--hv2-font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--hv2-ink);
  margin-top: 10px;
  transition: gap 0.25s var(--hv2-ease), color 0.25s var(--hv2-ease);
}
.tw-featured__cta svg { transition: transform 0.25s var(--hv2-ease); }
.tw-featured:hover .tw-featured__cta { color: var(--hv2-gold); gap: 11px; }
.tw-featured:hover .tw-featured__cta svg { transform: translateX(3px); }

@media (max-width: 860px) {
  .tw-featured { grid-template-columns: 1fr; margin-bottom: 40px; }
  .tw-featured__media { min-height: 240px; aspect-ratio: 16 / 10; }
  .tw-featured__body { padding: 32px 24px 30px; }
  /* Panel apilado arriba: el divisor va abajo, y la altura la marca
     el contenido (no el aspect-ratio de imagen, que lo aplastaría). */
  .tw-featured__panel {
    border-right: none;
    border-bottom: 1px solid var(--hv2-gold-dim);
    box-shadow: inset 0 -40px 60px -50px rgba(0,0,0,0.95);
    aspect-ratio: auto;
    min-height: 0;
  }
}

.tw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 860px) {
  .tw-grid { grid-template-columns: 1fr; }
}

.tw-card {
  display: flex;
  flex-direction: column;
  background: var(--hv2-void-soft);
  border: 1px solid var(--hv2-line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s var(--hv2-ease), transform 0.3s var(--hv2-ease);
}
.tw-card:hover {
  border-color: var(--hv2-gold-dim);
  transform: translateY(-4px);
}
.tw-card.hidden { display: none; }

.tw-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #0a0907;
}
.tw-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--hv2-ease);
}
.tw-card:hover .tw-card__media img { transform: scale(1.05); }

.tw-card__media--text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tw-card__media-mark {
  text-align: center;
  padding: 20px;
  pointer-events: none;
}
.tw-card__media-logo {
  font-family: var(--hv2-font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--hv2-ink);
}
.tw-card__media-dot { color: var(--hv2-gold); }
.tw-card__media-tag {
  display: block;
  font-family: var(--hv2-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--hv2-ink-dim);
  margin-top: 8px;
}

/* Badge de resultado — siempre visible, esto es lo que vende */
.tw-card__result {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(8,8,7,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--hv2-gold-dim);
  border-radius: 10px;
  padding: 10px 14px;
}
.tw-card__result-num {
  font-family: var(--hv2-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hv2-gold);
  line-height: 1.1;
}
.tw-card__result-label {
  font-family: var(--hv2-font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--hv2-ink-dim);
}

.tw-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tw-card__year {
  font-family: var(--hv2-font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hv2-gold);
}
.tw-card__title {
  font-family: var(--hv2-font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--hv2-ink);
  margin-bottom: 4px;
}
.tw-card__problem,
.tw-card__solution {
  font-family: var(--hv2-font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--hv2-ink-dim);
}
.tw-card__problem strong,
.tw-card__solution strong {
  color: var(--hv2-ink);
  font-weight: 600;
}
.tw-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.tag {
  font-family: var(--hv2-font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(244,239,230,0.06);
  color: var(--hv2-ink-dim);
}
.tag--gold {
  background: var(--hv2-gold-dim);
  color: var(--hv2-gold);
}
/* Marcador honesto de roadmap: distinto del dorado de "entregado",
   con borde discontinuo que lee como "en construcción" sin gritar. */
.tag--wip {
  background: transparent;
  color: var(--hv2-ink-dim);
  border: 1px dashed var(--hv2-gold-dim);
}
.tw-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--hv2-font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hv2-ink);
  margin-top: 12px;
  transition: gap 0.25s var(--hv2-ease), color 0.25s var(--hv2-ease);
}
.tw-card__cta svg { transition: transform 0.25s var(--hv2-ease); }
.tw-card:hover .tw-card__cta { color: var(--hv2-gold); gap: 10px; }
.tw-card:hover .tw-card__cta svg { transform: translateX(2px); }

/* ───────────────────────────────────────────────────────────────
   CAPACIDADES
─────────────────────────────────────────────────────────────── */
.tw-capabilities {
  padding: 0 0 120px;
  background: var(--hv2-void);
}
.tw-capabilities__title {
  font-family: var(--hv2-font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--hv2-ink);
  margin-bottom: 16px;
  max-width: 600px;
}
.tw-capabilities__sub {
  font-family: var(--hv2-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--hv2-ink-dim);
  max-width: 560px;
  margin-bottom: 56px;
}
.tw-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--hv2-line);
  border: 1px solid var(--hv2-line);
  border-radius: 16px;
  overflow: hidden;
}
.tw-capability {
  background: var(--hv2-void-soft);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.25s var(--hv2-ease);
}
.tw-capability:hover { background: #14110c; }
.tw-capability__num {
  font-family: var(--hv2-font-display);
  font-size: 0.85rem;
  color: var(--hv2-gold);
  opacity: 0.7;
}
.tw-capability__title {
  font-family: var(--hv2-font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--hv2-ink);
}
.tw-capability__desc {
  font-family: var(--hv2-font-body);
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--hv2-ink-dim);
}

@media (max-width: 980px) {
  .tw-capabilities__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .tw-capabilities__grid { grid-template-columns: 1fr; }
}

/* ───────────────────────────────────────────────────────────────
   CTA — hereda .cta-section del raíz; solo el botón dorado local
─────────────────────────────────────────────────────────────── */
.btn--gold {
  background: var(--hv2-gold);
  color: #1a1510;
}
.btn--gold:hover {
  background: #ddc9a0;
  box-shadow: 0 0 32px rgba(205,183,142,0.35), 0 0 70px rgba(205,183,142,0.12);
  transform: translateY(-2px);
}

/* ───────────────────────────────────────────────────────────────
   SCROLL REVEAL (compartido con el resto del sitio via script.js)
─────────────────────────────────────────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--hv2-ease), transform 0.6s var(--hv2-ease);
  transition-delay: var(--reveal-delay, 0s);
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* Specificity bump (body .reveal-up, not just .reveal-up) so this
   definition always wins over the root /style.css one regardless of
   link order — the root's .reveal-up uses filter:blur(6px) as its
   entrance state (intentional there, for other pages), which must
   never apply here. */
body .reveal-up {
  opacity: 0;
  transform: translateY(16px);
  filter: none;
  animation: twRevealUp 0.7s var(--hv2-ease) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes twRevealUp {
  to { opacity: 1; transform: translateY(0); filter: none; }
}
/* fill-mode:forwards (above) keeps the element on its own GPU
   compositing layer indefinitely once the animation ends, which can
   render delicate serif text (Fraunces) with different subpixel
   antialiasing than static text — a permanent slight blur. Adding
   reveal-done (via JS, on animationend) sets will-change back to its
   default, releasing that layer and letting the browser repaint the
   text normally, without touching opacity/transform — so there's no
   visual jump, just a one-frame sharpening. */
body .reveal-up.reveal-done {
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal, body .reveal-up { opacity: 1; transform: none; filter: none; animation: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   FRAME DE NAVEGADOR — para tw-card__media (consistente con el home)
   ═══════════════════════════════════════════════════════════════ */
.tw-card__media--framed {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 18px 0;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(205,183,142,0.10) 0%, transparent 55%),
    var(--hv2-void, #050504);
}
.tw-card__media--framed::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.browser-mock {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background: #181613;
  border: 1px solid var(--hv2-line);
  border-bottom: none;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.55), 0 8px 20px -8px rgba(0,0,0,0.4);
  transform: translateY(14px);
  transition: transform 0.5s var(--hv2-ease), box-shadow 0.5s ease;
}
.tw-card:hover .browser-mock,
.tw-featured:hover .browser-mock {
  transform: translateY(4px);
  box-shadow: 0 32px 64px -16px rgba(0,0,0,0.6), 0 10px 26px -8px rgba(205,183,142,0.12);
}
.browser-mock__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: #1f1c18;
  border-bottom: 1px solid rgba(244,239,230,0.06);
}
.browser-mock__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(244,239,230,0.18);
  flex-shrink: 0;
}
.browser-mock__url {
  flex: 1;
  margin-left: 6px;
  height: 14px;
  border-radius: 4px;
  background: rgba(244,239,230,0.05);
}
.browser-mock__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: #0a0907;
}
.browser-mock__viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s var(--hv2-ease);
}
.tw-card:hover .browser-mock__viewport img { transform: scale(1.05); }

@media (max-width: 640px) {
  .tw-card__media--framed { padding: 14px 14px 0; }
}
