/* ------------------------------------------------------------------
   Jetsam. Blue, sandy, slightly sunburnt.
------------------------------------------------------------------ */
:root {
  --blue:       #0A6CFF;
  --blue-dark:  #054AB8;
  --blue-deep:  #052B63;
  --sand:       #FFF3E0;
  --paper:      #FFFDF8;
  --ink:        #07203F;
  --coral:      #FF5A3C;
  --mint:       #00D19B;
  --sun:        #FFC93C;
  --sun-deep:   #BC4B07;
  --line:       #07203F;
  --shadow:     4px 4px 0 var(--line);
  --shadow-sm:  3px 3px 0 var(--line);
  --radius:     14px;
  --font: ui-rounded, "SF Pro Rounded", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background-color: var(--sand);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(10,108,255,.10) 0, transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(0,209,155,.12) 0, transparent 40%);
  background-attachment: fixed;
  -webkit-text-size-adjust: 100%;
}

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 18px; }
.wrap.rails { max-width: 1800px; }
.narrow { max-width: 640px; margin: 0 auto; }

h1 { font-size: clamp(1.9rem, 5.5vw, 2.9rem); line-height: 1.05; letter-spacing: -.02em; margin: .4em 0 .3em; }
h2 { font-size: 1.25rem; letter-spacing: -.01em; margin: 0 0 .5em; }
h3 { font-size: 1.05rem; margin: 0 0 .35em; }
a  { color: var(--blue-dark); }

.muted { color: #5a6b80; }
.small { font-size: .85rem; }

/* ---------- top bar ---------- */
.topbar { background: var(--blue); color: #fff; position: relative; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 18px 10px;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #fff; }
.logo-mark {
  font-size: 1.5rem; display: inline-block;
  transform: rotate(-12deg);
  animation: bob 3.5s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: rotate(-12deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-4px); } }
@media (prefers-reduced-motion: reduce) { .logo-mark { animation: none; } }
.logo-text { font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em; }

.nav { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.nav a { color: #fff; text-decoration: none; font-size: .95rem; }
.nav a:hover { text-decoration: underline wavy; text-underline-offset: 4px; }

.wave { display: block; width: 100%; height: 26px; margin-bottom: -1px; }
.wave path { fill: var(--sand); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 11px 18px; border-radius: 999px;
  border: 2.5px solid var(--line); background: #fff; color: var(--ink);
  font-family: inherit; font-size: .98rem; font-weight: 700; text-decoration: none;
  cursor: pointer; box-shadow: var(--shadow-sm);
  transition: transform .08s ease, box-shadow .08s ease;
}
.btn:hover  { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--line); }
.btn:active { transform: translate(2px,2px);  box-shadow: 1px 1px 0 var(--line); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-sell    { background: var(--sun-deep); color: #fff; padding: 8px 15px; white-space: nowrap; }
.btn-sell-or { font-weight: 400; opacity: .8; font-size: .88em; }
.btn-ghost   { background: var(--paper); }
.btn-wide    { display: block; width: 100%; text-align: center; margin-top: 12px; }
.btn-big     { padding: 16px; font-size: 1.1rem; margin-top: 22px; }

.linkish {
  background: none; border: 0; padding: 0; font: inherit; font-size: .88rem;
  color: var(--blue-dark); text-decoration: underline; cursor: pointer;
}
.linkish.danger { color: #b3261e; }
.inline { display: inline; }

/* ---------- hero ---------- */
.hero { padding: 14px 0 6px; }
.hero h1 { margin-top: .1em; }
.hl {
  background: var(--sun); padding: 0 .18em; border-radius: 6px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
  display: inline-block; transform: rotate(-1.2deg);
}
.hero-sub { font-size: 1.05rem; max-width: 46ch; color: #33475f; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 4px; }
.chip {
  background: #fff; border: 2.5px solid var(--line); border-radius: 999px;
  padding: 5px 13px; font-size: .85rem; font-weight: 700; box-shadow: var(--shadow-sm);
}
.chip-hot { background: var(--coral); color: #fff; }

/* ---------- filters ---------- */
.filters { margin: 20px 0 26px; }
.trip-box {
  background: var(--blue-deep); color: #fff; border: 3px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px 16px;
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px;
}
.trip-label { font-weight: 800; font-size: 1rem; width: 100%; }
.trip-box label { display: flex; flex-direction: column; gap: 4px; font-size: .82rem; font-weight: 700; }
.trip-hint { width: 100%; margin: 2px 0 0; font-size: .8rem; color: #b9d3ff; }

.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.filter-row input[type=search] { flex: 1 1 200px; width: auto; }
.filter-row input.where-input { flex: 0 1 170px; }
.filter-row select { flex: 0 1 auto; width: auto; max-width: 100%; }
.filter-row .btn { flex: 0 0 auto; }

input, select, textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 10px 12px; border: 2.5px solid var(--line); border-radius: 10px;
  background: var(--paper); width: 100%; min-width: 0;
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid var(--blue); outline-offset: 1px;
}
textarea { resize: vertical; }

/* Budget: two small boxes and the currency the buyer thinks in. */
.budget-row { align-items: center; gap: 8px; margin-top: 10px; }
.budget-label { font-weight: 800; font-size: .9rem; flex: 0 0 auto; }
.budget-sep { font-size: .9rem; color: #5a7291; flex: 0 0 auto; }
.budget-row input.budget-input { flex: 0 0 92px; width: 92px; padding: 8px 10px; }
.budget-row select.budget-cur { flex: 0 0 auto; width: auto; padding: 8px 10px; }
.budget-hint { font-size: .8rem; color: #5a7291; flex: 1 1 auto; min-width: 0; }

.tabs { display: flex; gap: 8px; margin-top: 14px; }
.tab {
  padding: 7px 16px; border: 2.5px solid var(--line); border-radius: 999px;
  background: var(--paper); text-decoration: none; font-weight: 700; font-size: .9rem;
  color: var(--ink);
}
.tab.on { background: var(--ink); color: #fff; }

/* ---------- cards ---------- */
.grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.card {
  display: block; text-decoration: none; color: inherit; background: var(--paper);
  border: 3px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .1s ease, box-shadow .1s ease;
}
.card:hover { transform: translate(-2px,-2px) rotate(-.4deg); box-shadow: 7px 7px 0 var(--line); }
.card-photo { position: relative; aspect-ratio: 4/3; background: #dceaff; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-body { padding: 12px 14px 14px; }
.card-body h3 { font-size: 1rem; line-height: 1.25; }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: .78rem; color: #5a6b80; margin-bottom: 8px; }
.card-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.card-price strong { font-size: 1.3rem; letter-spacing: -.02em; }
.drop { font-size: .76rem; font-weight: 700; color: var(--coral); }

.no-photo {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px; font-size: 2rem; color: #7a93b5;
}
.no-photo span { font-size: .75rem; }
.no-photo.big { height: auto; aspect-ratio: 4/3; border: 3px dashed var(--line); border-radius: var(--radius); }

/* ---------- urgency stickers ---------- */
.sticker {
  position: absolute; top: 9px; left: 9px;
  padding: 4px 11px; border: 2.5px solid var(--line); border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .02em;
  background: #fff; transform: rotate(-3deg); box-shadow: 2px 2px 0 var(--line);
}
.sticker-panic { background: var(--coral); color: #fff; animation: wiggle 1.1s ease-in-out infinite; }
.sticker-hot   { background: var(--sun);   color: var(--ink); }
.sticker-warm  { background: #fff0c2;      color: var(--ink); }
.sticker-chill { background: var(--mint);  color: var(--ink); }
.sticker-gone  { background: #93a3b8;      color: #fff; }
.sticker-wanted{ background: var(--blue);  color: #fff; top: 9px; left: auto; right: 9px; transform: rotate(4deg); }
@keyframes wiggle { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(2deg); } }
@media (prefers-reduced-motion: reduce) { .sticker-panic { animation: none; } }

.sticker-lg { position: static; display: inline-block; margin: 0 6px 10px 0; font-size: .82rem; padding: 6px 14px; }

/* ---------- detail ---------- */
.back { display: inline-block; margin: 16px 0 4px; font-weight: 700; text-decoration: none; }
.detail { display: grid; gap: 26px; grid-template-columns: 1fr; margin-bottom: 40px; }
@media (min-width: 820px) { .detail { grid-template-columns: 1.1fr 1fr; } }
.detail-photos { display: flex; flex-direction: column; gap: 12px; }
.detail-photos img {
  width: 100%; border: 3px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); display: block;
}
.price-block { margin: 6px 0 16px; }
.price { font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; }
.drop-big { display: block; font-size: .9rem; font-weight: 700; color: var(--coral); }

.dates {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px;
}
.dates > div {
  flex: 1 1 140px; background: var(--blue-deep); color: #fff;
  border: 3px solid var(--line); border-radius: var(--radius); padding: 10px 13px;
  box-shadow: var(--shadow-sm);
}
.dates-k { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: #9fc4ff; }
.dates-v { display: block; font-size: 1.05rem; font-weight: 800; }

.specs { margin: 0 0 16px; display: grid; gap: 0; }
.specs > div { display: flex; gap: 10px; padding: 7px 0; border-bottom: 2px dotted #c3cede; }
.specs dt { min-width: 92px; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: #5a6b80; font-weight: 700; }
.specs dd { margin: 0; font-weight: 600; }
.desc { white-space: pre-wrap; background: var(--paper); border: 2.5px solid var(--line); border-radius: var(--radius); padding: 14px; }

.contact {
  margin-top: 20px; background: var(--paper); border: 3px solid var(--line);
  border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow);
}
.contact-note { font-size: .82rem; color: #5a6b80; margin-bottom: 0; }
.owner-tools { display: flex; gap: 8px; margin-top: 16px; }

/* ---------- panels & forms ---------- */
.panel {
  background: var(--paper); border: 3px solid var(--line); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow); margin-bottom: 18px;
}
.panel-urgent { background: #FFF7E0; border-color: var(--coral); box-shadow: 4px 4px 0 var(--coral); }
.big-form label, .profile-form label { display: block; margin-bottom: 14px; font-weight: 700; font-size: .88rem; }
.big-form label input, .big-form label select, .big-form label textarea,
.profile-form label input { margin-top: 5px; font-weight: 400; }
.two   { display: grid; gap: 0 12px; grid-template-columns: 1fr 1fr; }
.three { display: grid; gap: 0 12px; grid-template-columns: 2fr 1fr 1fr; }

.kind-toggle { display: flex; gap: 10px; margin-bottom: 16px; }
.radio-card { flex: 1; margin: 0 !important; }
.radio-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-card span {
  display: block; text-align: center; padding: 12px 8px; border: 2.5px solid var(--line);
  border-radius: 10px; background: #fff; cursor: pointer; font-weight: 700;
}
.radio-card input:checked + span { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.radio-card input:focus-visible + span { outline: 3px solid var(--coral); }

details summary { cursor: pointer; font-weight: 800; padding: 6px 0; }
.panic { margin-top: 6px; background: #fff2ee; border: 2.5px dashed var(--coral); border-radius: 10px; padding: 10px 12px; }
.specs-box { margin-bottom: 14px; }

.thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.thumb { width: 110px; margin: 0 !important; font-size: .75rem; font-weight: 600; }
.thumb img { width: 110px; height: 84px; object-fit: cover; border: 2.5px solid var(--line); border-radius: 8px; display: block; }
.thumb input { width: auto; }

.errors {
  background: #ffe3de; border: 3px solid var(--coral); border-radius: var(--radius);
  padding: 12px 16px; margin-bottom: 16px;
}
.errors ul { margin: 6px 0 0; padding-left: 20px; }
.error { color: #b3261e; font-weight: 700; }
.flash {
  background: var(--mint); border: 3px solid var(--line); border-radius: var(--radius);
  padding: 10px 16px; margin: 16px 0 0; font-weight: 700; box-shadow: var(--shadow-sm);
}
.devcode { background: var(--sun); border: 2.5px dashed var(--line); border-radius: 10px; padding: 10px; font-weight: 700; }

.code-input { font-size: 2rem; letter-spacing: .35em; text-align: center; font-weight: 800; }
.resend { margin-top: 14px; text-align: center; }

/* ---------- my stuff ---------- */
.me-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 26px 0 14px; }
.me-head h2 { margin: 0; }
.me-item { display: flex; flex-direction: column; gap: 8px; }
.me-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; padding-left: 4px; }
.status-tag {
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  background: var(--ink); color: #fff; padding: 2px 9px; border-radius: 999px;
}
.logout { margin: 34px 0; text-align: center; }


/* ---------- ad rails ----------
   Two columns of ad cards flanking the page, the way TrustMRR does it. They fall
   back to one rail beside the listings, then to a block underneath on a phone. */
.rails-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.rails-main { min-width: 0; }

.rail { display: grid; gap: 10px; align-content: start; }
.rail-track { display: grid; gap: 10px; }
.rail-loop { display: none; }  /* second copy, only the phone marquee needs it */

@media (min-width: 980px) {
  /* One column beside the listings: left rail on top, right rail under it. The
     rail is a slice of the window rather than a fixed 232px, so the cards take
     whatever room the listings do not need. */
  .rails-grid { grid-template-columns: minmax(0, 1fr) clamp(168px, 17vw, 272px); align-items: start; }
  .rails-main { grid-column: 1; grid-row: 1 / span 2; }
  .rail-left  { grid-column: 2; grid-row: 1; }
  /* Pull the second rail up so the join matches the gap between cards. */
  .rail-right { grid-column: 2; grid-row: 2; margin-top: -14px; }
}

@media (min-width: 1560px) {
  /* Enough room to flank the page properly. */
  .rails-grid {
    grid-template-columns: clamp(180px, 13vw, 300px) minmax(0, 1fr) clamp(180px, 13vw, 300px);
    gap: 28px;
  }
  .rails-main { grid-column: 2; grid-row: 1; }
  .rail-left  { grid-column: 1; grid-row: 1; margin-top: 0; }
  .rail-right { grid-column: 3; grid-row: 1; margin-top: 0; }
}

@media (max-width: 979px) {
  /* No room down the sides, so each rail becomes a strip that drifts sideways:
     the first five above the listings, the rest below. Two identical tracks in
     a row, each sliding its own width, so the loop has no seam. */
  .rails-grid { gap: 16px; }
  .rail {
    display: flex; gap: 0; overflow: hidden;
    margin: 0 -18px; padding: 3px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 26px,
                        #000 calc(100% - 26px), transparent);
            mask-image: linear-gradient(90deg, transparent, #000 26px,
                        #000 calc(100% - 26px), transparent);
  }
  .rail-left { order: -1; margin-top: -2px; }
  .rail-right { margin-top: 6px; }
  .rail-track {
    display: flex; flex: 0 0 auto; gap: 10px; padding-right: 10px;
    animation: rail-drift 34s linear infinite;
  }
  .rail-loop { display: flex; }
  /* Pills rather than cards: logo, name, no tagline. */
  .rail .ad {
    flex: 0 0 auto; min-height: 0; flex-direction: row; align-items: center;
    gap: 9px; padding: 8px 16px 8px 9px; border-radius: 999px;
  }
  .rail .ad-logo { width: 27px; height: 27px; border-radius: 8px; margin: 0; }
  .rail .ad-mono { font-size: .95rem; }
  .rail .ad-name { font-size: .86rem; white-space: nowrap; }
  .rail .ad-tag { display: none; }
  .rail .ad:hover { transform: none; box-shadow: none; border-color: rgba(7, 32, 63, .10); }
  /* Stop it while someone is trying to tap one. */
  .rail:hover .rail-track, .rail:focus-within .rail-track { animation-play-state: paused; }
}

@keyframes rail-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

@media (max-width: 979px) and (prefers-reduced-motion: reduce) {
  /* Nothing moves on its own: one set of pills, swipe them by hand. */
  .rail { overflow-x: auto; }
  .rail-track { animation: none; }
  .rail-loop { display: none; }
}

.ad {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 6px; min-height: clamp(112px, 9vw, 152px);
  padding: clamp(13px, 1.1vw, 20px) clamp(10px, 1vw, 18px) clamp(15px, 1.2vw, 22px);
  border-radius: 16px; text-decoration: none; color: var(--ink);
  border: 2px solid rgba(7, 32, 63, .10); background: #fff;
  transition: transform .1s ease, box-shadow .1s ease, border-color .1s ease;
}
.ad:hover {
  transform: translate(-2px, -2px);
  border-color: var(--line); box-shadow: 4px 4px 0 var(--line);
}
.ad-t0 { background: #E6F6EE; }
.ad-t1 { background: #E7F0FF; }
.ad-t2 { background: #F1EAFB; }
.ad-t3 { background: #FFEAEE; }
.ad-t4 { background: #FFF4D6; }

.ad-logo {
  width: clamp(34px, 2.9vw, 52px); height: clamp(34px, 2.9vw, 52px);
  border-radius: 11px; background: #fff;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  border: 1px solid rgba(7, 32, 63, .10); margin-bottom: 2px;
}
.ad-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.ad-mono { font-size: 1.25rem; font-weight: 800; color: #5a6b80; line-height: 1; }

.ad-name { font-weight: 800; font-size: clamp(.88rem, .35vw + .74rem, 1.05rem); line-height: 1.2; }
.ad-tag  { font-size: clamp(.74rem, .25vw + .63rem, .86rem); line-height: 1.35; color: #5a6b80; }

.ad-free {
  background: transparent; border-style: dashed; border-color: rgba(7, 32, 63, .22);
}
.ad-free .ad-name, .ad-free .ad-mono { color: #8298b2; }
.ad-free:hover { background: var(--paper); }

/* The pitch page lays the same cards out in a wide grid. */
.ad-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

.admin-logo {
  max-height: 60px; border: 2.5px solid var(--line); border-radius: 8px;
  background: #fff; padding: 4px; margin-bottom: 12px;
}
.checkline { display: flex !important; align-items: center; gap: 8px; }
.checkline input[type=checkbox] { width: auto; margin: 0; }

/* ---------- messaging ---------- */
.msg-form textarea { margin-bottom: 2px; }
.msg-form .btn-wide { margin-top: 8px; }
.other-contact { margin-top: 14px; }
.other-contact summary { font-size: .85rem; font-weight: 700; }
.other-contact .btn-wide { margin-top: 8px; font-size: .9rem; }

.inbox { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.inbox-item {
  border: 2.5px solid var(--line); border-radius: 10px; background: #fff; padding: 11px 13px;
}
.inbox-top { display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline; }
.inbox-body { white-space: pre-wrap; margin: 7px 0; }
.inbox-foot { display: flex; flex-wrap: wrap; gap: 6px; }

/* ---------- misc ---------- */
.empty { text-align: center; padding: 46px 20px; }
.empty.big { padding: 80px 20px; }
.empty h1, .empty h2 { margin-bottom: .2em; }
.steps, .tips { padding-left: 22px; }
.steps li, .tips li { margin-bottom: 8px; }

.footer { margin-top: 60px; background: var(--blue-deep); color: #fff; padding: 34px 0 40px; }
.footer-big { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; margin: 0 0 6px; }
.footer-def { font-size: .86rem; color: #cfe0fb; margin: 0 0 10px; font-style: normal; }
.footer-def em { font-style: normal; font-weight: 800; letter-spacing: .01em; }
.footer-small { font-size: .84rem; color: #a9c7f5; margin: 0; }
.footer a { color: #fff; }

@media (max-width: 520px) {
  .two, .three { grid-template-columns: 1fr; }
  .filter-row input[type=search] { flex: 1 1 100%; width: 100%; }
  .filter-row select,
  .filter-row input.where-input { flex: 1 1 calc(50% - 4px); width: auto; }
  .budget-row input.budget-input { flex: 1 1 0; width: auto; }
  .budget-row select.budget-cur { flex: 0 0 auto; }
  .budget-hint { flex: 1 1 100%; }
  .filter-row .btn { flex: 1 1 100%; }
  .nav { gap: 9px; }
  .nav a { font-size: .88rem; }
  .btn-sell   { padding: 7px 12px; font-size: .92rem; }
  .ad { padding: 14px 10px 16px; }
  .logo-text { font-size: 1.15rem; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .card-body { padding: 10px; }
  .price { font-size: 1.9rem; }
}

/* Under a field rather than beside it, so the "type your own" note cannot be
   mistaken for the value in the box. */
.field-hint { display: block; margin-top: 4px; font-weight: 400; line-height: 1.35; }

/* The shop's own page: a reminder of what it already has in the slot. */
.logo-preview { max-width: 120px; border-radius: 10px; border: 1px solid #dde5ef; }
.panel-mine { border-left: 4px solid #2f8fd8; }
.pay-note { margin-top: 10px; }
.footer-legal { margin-top: 6px; line-height: 1.7; }
