@font-face { font-family: 'Designer'; src: url('../assets/Evogria.otf') format('opentype'); font-weight: normal; font-style: normal; font-display: swap; }
@font-face { font-family: 'Designer'; src: url('../assets/Evogria Italic.otf') format('opentype'); font-weight: normal; font-style: italic; font-display: swap; }

:root {
  --red: #D02C39;
  --red-dark: #A82530;
  --gold: #CB9E0F;
  --ink: #23252B;
  --charcoal: #17181D;
  --font-display: 'Designer', 'Barlow Condensed', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); background: #F6F4EF; color: #212329; }
img { max-width: 100%; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
input, select, textarea { font-family: var(--font-body); }

@keyframes cdPulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  height: 100px;
  background: rgba(23, 24, 29, 1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: height 0.25s ease, background 0.25s ease;
}
.nav.scrolled { height: 70px; background: rgba(23, 24, 29, 0.7); }
.nav.nav-transparent:not(.scrolled) { background: rgba(23, 24, 29, 0.7); }
.nav-inner {
  width: 100%; max-width: 1536px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; padding: 0 clamp(20px, 4vw, 56px);
}
.nav-logo-link { display: flex; align-items: center; gap: 12px; color: #fff; }
.nav-logo { height: 80px; width: auto; display: block; filter: brightness(0) invert(1); transition: height 0.25s ease; }
.nav.scrolled .nav-logo { height: 48px; }
.nav-links-desktop { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 36px); }
.nav-link {
  color: #E8EDF4; font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: 0.06em; text-transform: uppercase; padding-bottom: 4px;
  border-bottom: 2px solid transparent; transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active { border-bottom-color: var(--red); }
.nav-cta {
  display: inline-flex; align-items: center; height: 44px; padding: 0 26px;
  background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 4px;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--red-dark); color: #fff; }
.nav-hamburger { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; background: transparent; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { width: 26px; height: 2px; background: #fff; }
.mobile-menu {
  display: none; position: fixed; top: 100px; left: 0; right: 0; z-index: 99;
  background: #17181D; flex-direction: column; padding: 24px clamp(20px, 4vw, 56px) 32px; gap: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }
.nav.scrolled ~ .mobile-menu { top: 70px; }
.mobile-link { color: #E8EDF4; font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
.mobile-cta {
  display: inline-flex; align-items: center; justify-content: center; height: 50px;
  background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 4px;
}
@media (max-width: 900px) {
  .nav-links-desktop { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============ HERO ============ */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; background: var(--charcoal); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 32%; filter: saturate(0.92) brightness(0.92); opacity: 0; transition: opacity 1.8s ease; }
.hero-img.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,17,21,0.96) 0%, rgba(16,17,21,0.72) 32%, rgba(16,17,21,0.28) 62%, rgba(16,17,21,0.55) 100%); }
.hero-content { position: relative; width: 100%; max-width: 900px; margin: 0 auto; padding: 0 clamp(24px, 6vw, 80px); display: flex; flex-direction: column; align-items: center; gap: 26px; text-align: center; }
.hero-logo { width: clamp(320px, 38vw, 500px); height: auto; filter: brightness(0) invert(1) drop-shadow(0 6px 22px rgba(0,0,0,0.5)); }
.hero-meta { display: flex; flex-direction: column; gap: 8px; color: #fff; font-family: var(--font-cond); font-weight: 600; font-size: clamp(18px, 1.9vw, 24px); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-meta-item { display: flex; align-items: center; justify-content: center; gap: 10px; }
.hero-dot { width: 8px; height: 8px; background: #C7C9CF; transform: rotate(45deg); display: inline-block; }
.hero-dot-red { background: var(--red); }
.countdown { display: flex; gap: clamp(14px, 1.8vw, 24px); margin-top: 4px; }
.cd-block { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cd-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 4.4vw, 64px); line-height: 1; color: #fff; }
.cd-num-pulse { color: var(--red); animation: cdPulse 2s ease-in-out infinite; }
.cd-label { font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #C7C9CF; }
.cd-sep { width: 1px; align-self: stretch; background: rgba(255,255,255,0.22); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.hero-camo-strip { position: absolute; left: 0; right: 0; bottom: 0; height: 14px; background-image: url('../assets/fondo-rojo.jpg'); background-size: 480px auto; }

/* ============ BUTTONS ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 4px; border: none; cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease; }
.btn-primary { height: 56px; padding: 0 44px; background: var(--red); color: #fff; font-size: 17px; letter-spacing: 0.12em; box-shadow: 0 10px 30px rgba(200,16,46,0.4); }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-secondary { height: 56px; padding: 0 36px; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); font-size: 17px; letter-spacing: 0.12em; }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-block { width: 100%; height: 52px; font-size: 16px; }
.btn-alt { background: #fff; color: #8A1D27; }
.btn-alt:hover { background: #F0E6D2; color: #5C131A; }
.btn-outline-disabled { display: inline-flex; align-items: center; justify-content: center; height: 44px; border: 1.5px dashed rgba(255,255,255,0.3); color: #9EA1AA; font-family: var(--font-cond); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 4px; text-align: center; padding: 0 8px; }
.btn-outline-disabled-light { color: #D9B7BD; }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; height: 44px; border: 1.5px solid rgba(255,255,255,0.4); color: #fff; font-family: var(--font-cond); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 4px; text-align: center; padding: 0 8px; cursor: pointer; background: transparent; transition: background 0.2s ease, border-color 0.2s ease; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-light { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

/* ============ SECTIONS shared ============ */
.section { position: relative; padding: clamp(72px, 9vw, 130px) clamp(24px, 6vw, 80px); overflow: hidden; }
.section-gold-border { border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.section-gold-border-top { border-top: 3px solid var(--gold); }
.section-light { background: #F6F4EF; }
.section-off-white { background: #E9E9EA; }
.section-white { background: #fff; }
.section-dark { background: #23252B; }
.section-camo-red { background: #33070F; }
.section-inner { position: relative; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(40px, 5vw, 64px); }
.section-heading { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.section-bg-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.section-bg-tint { position: absolute; inset: 0; background: rgba(10,2,4,0.25); }
.section-textured::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: url('../assets/fondo-gris.jpg'); background-size: cover;
  opacity: var(--tex-opacity, 0.15); mix-blend-mode: var(--tex-blend, normal);
}
.section-textured > .section-inner { z-index: 1; }
.h2 { margin: 0; font-family: var(--font-display); font-weight: 800; line-height: 1; text-transform: uppercase; color: var(--ink); font-size: clamp(42px, 5vw, 64px); }
.h2-tight { font-size: clamp(38px, 4.5vw, 56px); }
.h2-white { color: #fff; }
.h2-shadow { text-shadow: 0 2px 16px rgba(0,0,0,0.6); }
.lead { margin: 0; font-size: 17px; color: #C7C9CF; }
.lead-muted { color: #C7C9CF; }
.lead-shadow { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
.eyebrow { font-weight: 700; font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); }
.fine-print { margin: 0; text-align: center; font-size: 14px; color: #9EA1AA; font-style: italic; }

/* ============ EVENTO ============ */
.evento-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: minmax(320px, 1.1fr) minmax(300px, 0.9fr); gap: clamp(40px, 6vw, 90px); align-items: center; }
.evento-copy { display: flex; flex-direction: column; gap: 24px; }
.h2 { font-size: clamp(42px, 5vw, 68px); line-height: 0.98; }
.p-justify { margin: 0; font-size: 17px; line-height: 1.75; color: #45484F; text-align: justify; text-wrap: pretty; }
.evento-photos { display: flex; flex-direction: column; gap: 16px; }
.evento-photo { width: 100%; object-fit: cover; border-radius: 8px; box-shadow: 0 20px 50px rgba(22,23,28,0.18); }
.evento-photo-tall { height: 320px; }
.evento-photo-short { height: 220px; }
@media (max-width: 900px) { .evento-grid { grid-template-columns: 1fr; } }

/* ============ DISTANCIAS ============ */
.dist-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; max-width: 1280px; margin: 0 auto; width: 100%; }
@media (max-width: 1200px) { .dist-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dist-grid { grid-template-columns: 1fr; } }
.dist-card {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  background: linear-gradient(180deg, #2B2D34 0%, #1B1C21 100%);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  padding: 40px 20px 30px; min-height: 500px; text-align: center;
  transition: all .25s ease; position: relative;
}
.dist-card:hover { border-color: rgba(201,162,39,0.6); transform: translateY(-6px); }
.dist-card-featured {
  background: linear-gradient(180deg, #8A1D27 0%, #5C131A 100%);
  border-color: rgba(201,162,39,0.5);
}
.dist-card-featured:hover { border-color: #C7C9CF; }
.dist-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #E9EAEE; color: #8A1D27; font-weight: 700; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; white-space: nowrap; }
.dist-kicker { font-weight: 700; font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: #C7C9CF; }
.dist-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(56px, 8vw, 100px); line-height: 1; color: #fff; margin-top: 12px; }
.dist-rule { width: 48px; height: 3px; background: var(--red); margin: 24px 0; }
.dist-rule-light { background: rgba(255,255,255,0.55); }
.dist-info { display: flex; flex-direction: column; gap: 10px; font-size: 16px; color: #D2D4D9; flex-grow: 1; }
.dist-info-light { color: #EBD5D9; }
.dist-price { font-family: var(--font-display); font-weight: 700; font-size: 34px; color: #fff; margin-top: 8px; }
.dist-actions { display: flex; flex-direction: column; gap: 12px; width: 100%; margin-top: 28px; }

/* ============ KIT ============ */
.kit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.kit-card { display: flex; gap: 18px; align-items: flex-start; background: #fff; border-radius: 8px; padding: 28px 26px; box-shadow: 0 8px 24px rgba(22,23,28,0.07); }
.kit-icon { flex-shrink: 0; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: #8A1D27; border-radius: 6px; }
.kit-text { display: flex; flex-direction: column; gap: 4px; }
.kit-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; text-transform: uppercase; color: var(--ink); }
.kit-desc { font-size: 15px; line-height: 1.5; color: #5D6068; }
.kit-image-wrap { display: flex; flex-direction: column; align-items: center; gap: 40px; margin-top: clamp(16px, 3vw, 32px); }
.kit-image-title { margin: 0; text-align: center; font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 3.6vw, 44px); text-transform: uppercase; color: var(--ink); }
.kit-image { display: block; width: 100%; max-width: 960px; }

/* ============ BASES ============ */
.bases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .bases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bases-grid { grid-template-columns: 1fr; } }
.bases-card {
  background: rgba(20,4,7,0.55); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 30px 26px; display: flex; flex-direction: column; gap: 26px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.bases-card:hover { background: rgba(20,4,7,0.7); border-color: rgba(255,255,255,0.25); transform: translateY(-3px); }
.bases-title { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 21px; text-transform: uppercase; color: #fff; }
.bases-body { display: flex; flex-direction: column; gap: 8px; font-size: 15px; line-height: 1.4; color: #E5CDD1; text-align: justify; }
.strong-white { color: #fff; }
.bases-table { display: flex; flex-direction: column; }
.bases-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.bases-row-last { border-bottom: none; }
.bases-row-label { font-family: var(--font-display); font-size: 20px; color: #E5CDD1; }
.bases-row-value { font-size: 17px; color: #fff; }
.bases-row-value-sm { font-size: 16px; color: #fff; }
.bases-fine { font-size: 14px; line-height: 1.6; color: #C9A1A5; margin-top: 10px; text-align: justify; }
.link-underline { color: #fff; text-decoration: underline; transition: color 0.2s ease; }
.link-underline:hover { color: #E5CDD1; }
.bases-cta {
  background: #fff; border: 1px solid transparent; border-radius: 8px; padding: 32px 30px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  text-align: center; text-decoration: none; box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.bases-cta:hover { background: rgba(20,4,7,0.7); border-color: rgba(255,255,255,0.2); transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,0.45); }
.bases-cta-title { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 24px; text-transform: uppercase; color: #7A1B21; transition: color 0.25s ease; }
.bases-cta-arrow { font-size: 30px; color: #7A1B21; transition: color 0.25s ease; }
.bases-cta:hover .bases-cta-title, .bases-cta:hover .bases-cta-arrow { color: #fff; }

/* ============ MARCAS ============ */
.marcas-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }
.h2 { } /* already defined */
.marcas-groups { display: flex; flex-direction: column; gap: 40px; }
.marcas-group { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.marcas-label { font-weight: 700; font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); }
.marcas-row { display: flex; flex-wrap: wrap; gap: 56px; justify-content: center; align-items: center; }
.logo-caja { width: 239px; height: 82px; }
.logo-electrolit { width: 183px; height: 82px; }
.logo-spartan { height: 66px; width: auto; }
.logo-trekine { height: 56px; width: auto; }
.logo-senoras { height: 66px; width: auto; }
.logo-eventrid { width: 120px; height: 56px; }
.logo-fotorace { width: 120px; height: 56px; }
.logo-ejercito { height: 96px; width: auto; }
.logo-lc { width: auto; height: 56px; }
.logo-menta { width: 120px; height: 56px; }

/* ============ CONTACTO ============ */
.contacto-inner { position: relative; max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 36px; }
.form-card { background: #fff; border-radius: 10px; padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 18px; box-shadow: 0 30px 80px rgba(0,0,0,0.35); }
.form-card form { display: flex; flex-direction: column; gap: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 900px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 14px; color: var(--ink); }
.form-input, .form-select, .form-textarea, .captcha-input {
  height: 46px; padding: 0 14px; border: 1.5px solid #D5D9DF; border-radius: 6px; font-size: 15px;
  color: #212329; outline-color: var(--ink); transition: border-color 0.2s ease;
}
.form-input.error, .form-select.error, .form-textarea.error, .captcha-input.error { border-color: var(--red); }
.form-textarea { padding: 12px 14px; resize: vertical; height: auto; }
.select-wrap { position: relative; }
.form-select { width: 100%; padding: 0 40px 0 14px; background: #fff; appearance: none; cursor: pointer; }
.form-select:hover { border-color: var(--ink); }
.form-select:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(35,37,43,0.12); }
.select-chevron { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.captcha-row { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.captcha-label { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; color: var(--ink); white-space: nowrap; }
.captcha-input { width: 90px; padding: 0 10px; font-size: 11px; }
.btn-submit:hover { background: var(--red-dark); }
.form-status { margin: 0; margin-top: 30px; font-size: 15px; font-weight: 600; text-align: center; }
.form-status.ok { color: #1F7A3D; }
.form-status.err { color: var(--red); }
.contact-alt { margin: 0; text-align: center; font-size: 14px; color: #D3AEB4; }
.link-muted { color: #C7C9CF; transition: color 0.2s ease; }
.link-muted:hover { color: #fff; }

/* ============ MAP MODAL ============ */
.map-modal {
  display: none; position: fixed; inset: 0; z-index: 200; background: rgba(10,4,5,0.88);
  backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: clamp(16px, 4vw, 40px);
}
.map-modal.open { display: flex; }
.map-modal-box { position: relative; max-width: 1100px; width: max-content; display: flex; flex-direction: column; gap: 12px; }
.map-modal-head { display: flex; align-items: center; justify-content: space-between; }
.map-modal-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; text-transform: uppercase; color: #fff; }
.map-modal-close { width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 20px; cursor: pointer; transition: background 0.2s ease; }
.map-modal-close:hover { background: rgba(255,255,255,0.15); }
.map-modal-img { width: min(90vw, 900px, 78vh * 1024 / 764); aspect-ratio: 1024 / 764; background-size: contain; background-repeat: no-repeat; background-position: center; border-radius: 10px; background-color: #fff; }
.map-modal-img.map-3k { background-image: url('../assets/3K.jpg'); }
.map-modal-img.map-5k { background-image: url('../assets/5K.jpg'); }
.map-modal-img.map-5kt { background-image: url('../assets/5KT.jpg'); }
.map-modal-img.map-10k { background-image: url('../assets/10K.jpg'); }

/* ============ FOOTER ============ */
.footer { position: relative; background: #141519; overflow: hidden; }
.footer-inner { max-width: 1536px; margin: 0 auto; padding: clamp(56px, 7vw, 80px) clamp(20px, 4vw, 56px) 32px; display: flex; flex-direction: column; gap: clamp(40px, 5vw, 56px); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; align-items: start; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-end { align-items: flex-end; }
.footer-logo { height: 90px; width: auto; align-self: flex-start; filter: brightness(0) invert(1); }
.footer-army-logo { height: 150px; width: auto; }
.footer-label { font-weight: 700; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: #C7C9CF; }
.footer-link { color: #C7C9CF; font-size: 15px; transition: color 0.2s ease; }
.footer-link:hover { color: #fff; }
.footer-link-icon { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; }
.footer-text { color: #C7C9CF; font-size: 15px; line-height: 1.6; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: #6E717A; }
