/* Jornadas & Batalhas — visual de arena (inspirado no género; arte original) */
:root {
  --font-display: "Cinzel", Georgia, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --gold: #d4a64b;
  --gold-dim: #8a6f2e;
  --parchment: #e8dcc4;
  --ink: #0d0c0a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #2a2218 0%, #0f0d0b 55%, #080706 100%);
  color: var(--parchment);
  min-height: 100vh;
}

body.battle-active {
  overflow: hidden;
}

body.battle-active .app {
  height: 100vh;
}

body.battle-active .topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.45rem 0.85rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}

body.battle-active .battle {
  padding-top: 2.5rem;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
  z-index: 50;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.brand h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(212, 166, 75, 0.35);
}

.brand-tag {
  font-size: 0.7rem;
  opacity: 0.7;
  letter-spacing: 0.2em;
}

.btn {
  font-family: var(--font-ui);
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--parchment);
  border: 1px solid rgba(212, 166, 75, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.btn-gold {
  background: linear-gradient(180deg, #e8c56e, #9a7028);
  color: #1a1206;
  box-shadow: 0 4px 20px rgba(212, 166, 75, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-gold:hover {
  filter: brightness(1.08);
}

.btn.large {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
}

.btn-end {
  width: 100%;
  min-height: 5.25rem;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #3d9a52, #1d5a2e);
  color: #fff;
  box-shadow: 0 4px 0 #0f3318, 0 8px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border: 2px solid #5ecf7a;
}

.btn-end:hover {
  filter: brightness(1.1);
}

.btn-sec {
  width: 100%;
  margin-top: 0.45rem;
  background: rgba(0, 0, 0, 0.35);
  color: var(--parchment);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.45rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-sec:hover {
  border-color: var(--gold-dim);
}

.hidden {
  display: none !important;
}

.setup {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.setup-frame {
  width: min(480px, 100%);
  padding: 2rem 1.75rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(40, 32, 22, 0.95), rgba(18, 14, 10, 0.98));
  border: 2px solid var(--gold-dim);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.setup-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.06em;
}

.setup-intro {
  margin: 0 0 1.25rem;
  text-align: center;
  opacity: 0.75;
  font-size: 0.9rem;
  line-height: 1.5;
}

.setup-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.setup-block label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.65;
  margin-bottom: 0.35rem;
}

.setup-block select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(212, 166, 75, 0.25);
  background: rgba(0, 0, 0, 0.4);
  color: var(--parchment);
  font-family: var(--font-ui);
  font-size: 0.95rem;
}

.battle {
  flex: 1;
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(0, 760px) 160px;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "bg arena rail"
    "bg hand rail";
  min-height: 0;
}

@media (max-width: 900px) {
  .battle {
    grid-template-columns: 1fr 132px;
    grid-template-areas:
      "arena rail"
      "hand rail";
  }
}

.battle-backdrop {
  grid-area: bg;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(80, 60, 35, 0.35), transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(20, 35, 50, 0.22), transparent 50%);
  pointer-events: none;
}

.hud-win {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(30, 24, 16, 0.98), rgba(10, 8, 6, 0.99));
  border: 2px solid var(--gold);
  box-shadow: 0 0 80px rgba(212, 166, 75, 0.35), 0 24px 48px rgba(0, 0, 0, 0.7);
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-align: center;
  max-width: 90vw;
  color: var(--gold);
}

.side-rail {
  grid-area: rail;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.65rem 0.55rem 0.85rem;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
  border-left: 1px solid rgba(212, 166, 75, 0.12);
}

.rail-turn {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.rail-phase {
  font-size: 0.74rem;
  opacity: 0.85;
  line-height: 1.3;
}

.ap-tray {
  display: flex;
  gap: 0.3rem;
  justify-content: center;
  padding: 0.3rem 0;
}

.crystal {
  width: 20px;
  height: 28px;
  border-radius: 5px 5px 9px 9px;
  background: linear-gradient(180deg, #4a90b8, #1a3a52);
  border: 1px solid #6ab0d8;
  box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.35);
  opacity: 0.22;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.crystal--full {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(100, 180, 255, 0.55));
}

.rail-controls {
  display: flex;
  flex-direction: column;
}

.log-panel {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-top: 0.35rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.log-title {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.45rem;
  opacity: 0.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.log {
  flex: 1;
  overflow-y: auto;
  padding: 0.35rem 0.45rem;
  font-size: 0.65rem;
  line-height: 1.35;
  opacity: 0.8;
  max-height: 180px;
}

.log div {
  margin-bottom: 0.2rem;
}

.arena-table {
  grid-area: arena;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.25rem 0.5rem 0.15rem;
  gap: 0.15rem;
  min-height: 0;
}

.table-rim {
  height: 6px;
  margin: 0 0.75rem;
  border-radius: 100%;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(212, 166, 75, 0.12), transparent 70%);
}

.combatant {
  --clan-hue: 38;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.combatant__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
}

.combatant--enemy .combatant__row {
  flex-direction: row-reverse;
}

.deck-stack {
  flex-shrink: 0;
  width: 54px;
  height: 74px;
  position: relative;
  border-radius: 8px;
  background: linear-gradient(145deg, #2a1810, #0d0806);
  border: 2px solid #3d2818;
  box-shadow: 3px 3px 0 #1a1008, 6px 6px 16px rgba(0, 0, 0, 0.5);
}

.deck-stack::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 5px;
  border: 1px dashed rgba(212, 166, 75, 0.2);
}

.deck-stack__count {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
  text-shadow: 0 2px 4px #000;
}

.deck-stack__label {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.4;
  white-space: nowrap;
}

.hand-backs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 48px;
  flex: 1;
  padding: 0 0.35rem;
}

.card-back {
  width: 32px;
  height: 44px;
  margin-left: -13px;
  border-radius: 5px;
  background: linear-gradient(145deg, #1e3a5c, #0d1a2a);
  border: 2px solid #2a5080;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.45);
  transform-origin: bottom center;
}

.card-back:first-child {
  margin-left: 0;
}

.hero-plate {
  position: relative;
  flex-shrink: 0;
  width: 104px;
  cursor: default;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.hero-plate.targetable {
  cursor: crosshair;
  animation: pulse-target 1.2s ease-in-out infinite;
}

@keyframes pulse-target {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(212, 166, 75, 0));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(212, 166, 75, 0.65));
  }
}

.hero-plate__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(
    from 200deg,
    hsl(var(--clan-hue), 55%, 32%),
    hsl(calc(var(--clan-hue) + 40), 50%, 45%),
    hsl(var(--clan-hue), 60%, 28%)
  );
  z-index: 0;
}

.hero-plate__avatar {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 4px solid #2a2018;
  overflow: hidden;
  background: #120e0a;
  box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.combatant--enemy .hero-plate__avatar {
  width: 88px;
  height: 88px;
}

.combatant--enemy .hero-plate {
  width: 88px;
}

.combatant--enemy .hero-plate__ring {
  inset: -3px;
}

.hero-plate__badge {
  position: absolute;
  bottom: -2px;
  right: -4px;
  z-index: 3;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.3rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #2ecf6a, #0d6e32);
  border: 3px solid #0a3018;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  text-shadow: 0 2px 0 #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
}

.hero-plate__meta {
  margin-top: 0.3rem;
  text-align: center;
  max-width: 112px;
}

.hero-plate__player {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
}

.hero-plate__name {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.15;
}

.hero-plate__clan {
  font-size: 0.58rem;
  opacity: 0.62;
  margin-top: 0.12rem;
  line-height: 1.15;
}

.minion-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 0.4rem;
  min-height: 128px;
  padding: 0.3rem 0.2rem;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(0, 0, 0, 0.22), transparent 70%);
  border-radius: 12px;
}

.combatant--enemy .minion-row {
  min-height: 112px;
}

.minion-slot {
  width: 96px;
  min-height: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.minion-slot--empty {
  border-radius: 10px;
  border: 2px dashed rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.1);
}

.minion-slot--empty span {
  font-size: 0.55rem;
  opacity: 0.22;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.board-minion {
  position: relative;
  width: 96px;
  height: 118px;
  border-radius: 11px;
  background: linear-gradient(180deg, #2a2420 0%, #161210 100%);
  border: 2px solid #5a4a38;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: default;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.board-minion:hover {
  transform: translateY(-3px);
  z-index: 5;
}

.board-minion.criatura {
  border-color: #7a6238;
}

.board-minion.ativador {
  border-color: #4a5a8a;
}

.board-minion.artefato {
  border-color: #6a6a6a;
}

.board-minion__art {
  height: 48px;
  margin: 5px 5px 0;
  border-radius: 6px;
  background: linear-gradient(135deg, hsl(var(--card-hue, 38), 40%, 28%), hsl(var(--card-hue, 38), 30%, 12%));
  border: 1px solid rgba(0, 0, 0, 0.35);
}

.board-minion__name {
  padding: 0.22rem 5px 0;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.board-minion__stats {
  position: absolute;
  bottom: 5px;
  left: 5px;
  right: 5px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.orb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  text-shadow: 0 1px 2px #000;
  border: 2px solid #000;
}

.orb--atk {
  background: linear-gradient(180deg, #f4d060, #8a6520);
  border-color: #3d2808;
  color: #1a1006;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.orb--hp {
  background: linear-gradient(180deg, #3dd170, #156630);
  border-color: #082010;
}

.board-minion.exhausted {
  filter: grayscale(0.35) brightness(0.85);
}

.board-minion.summon {
  box-shadow: 0 0 0 2px rgba(212, 166, 75, 0.45), 0 10px 20px rgba(0, 0, 0, 0.45);
}

.board-minion.can-act {
  cursor: pointer;
  box-shadow: 0 0 0 2px #5ecf7a, 0 10px 24px rgba(0, 0, 0, 0.5);
}

.board-minion.targetable {
  cursor: crosshair;
  animation: minion-target 1s ease-in-out infinite;
}

@keyframes minion-target {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(196, 60, 60, 0.3);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(196, 60, 60, 0.75);
  }
}

.artifact-strip {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  min-height: 32px;
}

.artifact-chip {
  padding: 0.2rem 0.45rem;
  border-radius: 8px;
  font-size: 0.58rem;
  background: rgba(40, 40, 45, 0.92);
  border: 1px solid #666;
}

.artifact-chip--empty {
  opacity: 0.22;
  border-style: dashed;
}

.hand-dock {
  grid-area: hand;
  z-index: 30;
  padding: 0.4rem 0.5rem 0.85rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.hand-dock__hint {
  text-align: center;
  font-size: 0.68rem;
  opacity: 0.62;
  margin-bottom: 0.25rem;
  min-height: 1em;
}

.hand {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 162px;
  padding: 0 0.75rem;
}

.hand--fan .hand-card {
  margin-left: -48px;
  transform-origin: bottom center;
  transition: transform 0.2s ease, margin 0.2s ease, filter 0.2s ease;
}

.hand--fan .hand-card:first-child {
  margin-left: 0;
}

.hand--fan .hand-card:hover:not(.disabled) {
  z-index: 20;
  transform: translateY(-26px) scale(1.06) rotate(0deg) !important;
  filter: brightness(1.08);
}

.hand-card {
  position: relative;
  flex-shrink: 0;
  width: 112px;
  height: 152px;
  border-radius: 13px;
  background: linear-gradient(180deg, #3a3228 0%, #16120e 55%, #0a0806 100%);
  border: 3px solid #6a5538;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  overflow: hidden;
}

.hand-card.criatura {
  border-color: #8a7038;
}

.hand-card.ativador {
  border-color: #4a5a9a;
}

.hand-card.artefato {
  border-color: #777;
}

.hand-card.disabled {
  opacity: 0.36;
  cursor: not-allowed;
  filter: grayscale(0.15);
}

.hand-card__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 0%, rgba(212, 166, 75, 0.12), transparent 55%);
  pointer-events: none;
}

.hand-card__art {
  height: 52px;
  margin: 7px 7px 0;
  border-radius: 7px;
  background: linear-gradient(135deg, hsl(var(--card-hue, 38), 42%, 32%), hsl(var(--card-hue, 38), 35%, 14%));
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.hand-card__tipo {
  position: absolute;
  top: 5px;
  left: 7px;
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.52;
}

.hand-card__nome {
  padding: 0.3rem 6px 0;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hand-card__texto {
  padding: 0.2rem 6px 0;
  font-size: 0.54rem;
  line-height: 1.15;
  opacity: 0.68;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hand-card__pa {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  font-weight: 700;
  color: #f0d060;
  text-shadow: 0 1px 2px #000;
}

.hand-card__orbs {
  position: absolute;
  bottom: 3px;
  left: 5px;
  right: 5px;
  display: flex;
  justify-content: space-between;
}

.hand-card__orbs .orb {
  width: 24px;
  height: 24px;
  font-size: 0.78rem;
}

/* ——— Setup: modo local / online ——— */
.mode-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.mode-tab {
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  opacity: 0.55;
  border: 1px solid rgba(212, 166, 75, 0.2);
}

.mode-tab--on {
  opacity: 1;
  border-color: var(--gold);
  color: var(--gold);
}

.mode-panel.hidden {
  display: none;
}

.online-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin: 0.65rem 0 0.25rem;
}

.online-input {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 166, 75, 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: var(--parchment);
  font-family: var(--font-ui);
}

.online-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.online-actions .btn {
  flex: 1;
  min-width: 140px;
}

.online-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.85;
  min-height: 1.2em;
}

.lobby-box {
  margin-top: 1rem;
  padding: 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.lobby-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.55;
  margin-bottom: 0.35rem;
}

.lobby-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  max-height: 120px;
  overflow-y: auto;
}

.google-slot {
  min-height: 44px;
  margin-bottom: 0.35rem;
}

.online-google-hint {
  font-size: 0.78rem;
  opacity: 0.75;
  line-height: 1.4;
  margin: 0;
}

.hero-plate__raca {
  font-size: 0.58rem;
  opacity: 0.75;
  margin-top: 0.15rem;
  line-height: 1.15;
  color: #c9d4e8;
}

.card-raca {
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.65;
  text-align: center;
  padding: 0.1rem 4px 0;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
