/* ============================================================
   CUSTOM PROPERTIES — paleta a typografie na jednom místě
   ============================================================ */
:root {
  /* barvy — tmavé, přírodní */
  --bg: #1A1A1A;
  --bg-elevated: #232323;
  --bg-elevated-2: #2C2C2C;
  --line: rgba(243, 239, 226, 0.11);
  --line-strong: rgba(243, 239, 226, 0.20);

  --text: #F3EFE2;
  --text-muted: #B7B29E;

  --moss: #7FA05F;
  --moss-bright: #9CC17A;
  --sage: #A9BE93;
  --forest-deep: #232B1B;
  --champagne: #CFC9B4;
  --metal-light: #E4E0CF;
  --metal-mid: #C2BFAE;
  --metal-dark: #8B897A;

  /* typografie */
  --font-display: 'Oswald', -apple-system, sans-serif;
  --font-body: 'Open Sans', -apple-system, sans-serif;

  --fs-hero: clamp(2.2rem, 3.6vw + 1rem, 3.6rem);
  --fs-h2: clamp(1.7rem, 2.6vw + 1rem, 2.6rem);
  --fs-h3: clamp(1.15rem, 1vw + 0.9rem, 1.4rem);
  --fs-lead: clamp(1.05rem, 0.6vw + 0.9rem, 1.2rem);

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-space: clamp(4rem, 9vw, 7rem);
}

/* ============================================================
   RESET & ZÁKLAD
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.005em;
}

h2, h3 {
  text-transform: uppercase;
}

em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 600;
  color: var(--moss-bright);
}

ol, ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   MIKROINTERAKCE
   ============================================================ */
.link-grow {
  position: relative;
  display: inline-block;
  padding-bottom: 0.15em;
}
.link-grow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.35s ease;
  opacity: 0.6;
}
.link-grow:hover::after,
.link-grow:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   TLAČÍTKA
   ============================================================ */
.btn {
  display: inline-block;
  background: var(--moss);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover {
  background: var(--moss-bright);
  transform: scale(1.05) translateY(-1px);
}

.btn--small {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

/* ============================================================
   HLAVIČKA
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(18, 22, 15, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 13px;
  background: #F7F5EC;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand:hover .brand-logo {
  transform: scale(1.08) rotate(-3deg);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: var(--text);
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-bottom: 0.2em;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (min-width: 860px) {
  .nav-links { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 130%;
  z-index: 0;
  background:
    radial-gradient(38% 45% at 22% 30%, rgba(207, 201, 180, 0.10), transparent 70%),
    radial-gradient(32% 40% at 78% 15%, rgba(127, 160, 95, 0.06), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.hero-copy-top, .hero-copy-bottom { max-width: 46ch; }

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr clamp(300px, 34vw, 460px) 1fr;
    grid-template-rows: auto auto auto;
    column-gap: clamp(1.5rem, 3vw, 2.5rem);
    row-gap: clamp(1rem, 3vw, 2rem);
  }

  .hero-copy-top {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: start;
    max-width: none;
  }

  .monitor {
    grid-column: 2;
    grid-row: 1 / 3;
    justify-self: center;
    align-self: center;
  }

  .hero-copy-bottom {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
    align-self: end;
    max-width: none;
    text-align: right;
  }

  .hero-extra {
    grid-column: 1 / 4;
    grid-row: 3;
    margin-top: 1rem;
  }
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--champagne);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  font-size: var(--fs-hero);
  max-width: 15ch;
}

.hero-title--accent {
  max-width: 19ch;
}

.hero-sub {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  max-width: 42ch;
  margin-top: 1.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hero-tags {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   MONITOR MOCKUP — vizuální "počítač" v hero, jemné 3D naklonění
   ============================================================ */
.monitor {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  perspective: 1600px;
}

.monitor-body {
  transform: rotateY(-30deg) rotateX(7deg);
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.55));
}

.monitor:hover .monitor-body {
  transform: rotateY(-8deg) rotateX(2deg);
}

@media (prefers-reduced-motion: reduce) {
  .monitor-body { transition: none; }
}

.monitor-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 4px),
    linear-gradient(160deg, var(--metal-light) 0%, var(--metal-mid) 45%, var(--metal-dark) 100%);
  border-radius: 8px;
  padding: 0.3rem;
  display: flex;
  flex-direction: column;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.12),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 2px 4px rgba(0, 0, 0, 0.25),
    0 40px 60px rgba(0, 0, 0, 0.4);
}

.monitor-cam {
  position: absolute;
  top: 0.14rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #4a4a44, #0a0a08 75%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.monitor-display {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #FAF8F0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.browser-bar {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem;
  background: #EFEBDE;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.browser-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
}

.browser-url {
  margin-left: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.5rem;
  color: rgba(0, 0, 0, 0.4);
  background: #FAF8F0;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.browser-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 6% 6% 5%;
  gap: 5%;
  overflow: hidden;
}

.mock-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 6px;
}

.mock-logo {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--moss);
  flex-shrink: 0;
}

.mock-nav-link {
  height: 3px;
  width: 22px;
  border-radius: 2px;
  background: #D8D4C4;
}

.mock-nav-btn {
  margin-left: auto;
  width: 34px;
  height: 9px;
  border-radius: 999px;
  background: #232B1B;
}

.mock-hero {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5%;
  min-height: 0;
}

.mock-hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-line {
  display: block;
  height: 5px;
  border-radius: 2px;
  background: #DAD6C6;
}
.mock-line--sm { height: 4px; background: #E6E3D6; }

.mock-cta {
  margin-top: 5px;
  width: 46px;
  height: 11px;
  border-radius: 4px;
  background: var(--moss);
}

.mock-hero-image {
  width: 36%;
  align-self: stretch;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--metal-light), var(--metal-mid));
}

.mock-footer-line {
  flex-shrink: 0;
  height: 2px;
  border-radius: 1px;
  background: #E9E6DA;
}

.monitor-glare {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.08) 14%, transparent 30%);
  pointer-events: none;
}

.monitor-neck {
  position: relative;
  width: 19%;
  height: 54px;
  margin: 0 auto;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 3px),
    linear-gradient(90deg, #7D7A6B 0%, #E4E0CF 30%, #C2BFAE 50%, #E4E0CF 68%, #7D7A6B 100%);
  clip-path: polygon(24% 0%, 76% 0%, 90% 100%, 10% 100%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.monitor-neck::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #E4E0CF, #9C9887);
}

.monitor-base {
  position: relative;
  width: 54%;
  height: 13px;
  margin: -2px auto 0;
  border-radius: 3px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, #E4E0CF 0%, #B5B1A0 55%, #7D7A6B 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 6px 14px rgba(0, 0, 0, 0.35);
}

.monitor-shadow {
  width: 60%;
  height: 20px;
  margin: 0.4rem auto 0;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.5), transparent 75%);
  filter: blur(6px);
  transform: perspective(1600px) rotateX(60deg) translateX(-6%);
}

/* ============================================================
   SECTION HEADINGS (společné)
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--champagne);
  margin-bottom: 0.85rem;
}

.section-heading {
  font-size: var(--fs-h2);
  max-width: 22ch;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

/* ============================================================
   CO DĚLÁME
   ============================================================ */
.services { padding: var(--section-space) 0; }

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  border-color: var(--metal-mid);
  transform: scale(1.03) translateY(-6px);
  box-shadow: var(--shadow);
}

.service-glyph {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--metal-light), var(--metal-dark));
}

.service-title {
  font-size: var(--fs-h3);
  margin-bottom: 0.75rem;
}

.service-text { color: var(--text-muted); }

@media (min-width: 780px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card--alt { margin-top: 2.5rem; }
}

/* ============================================================
   UKÁZKY PRÁCE
   ============================================================ */
.work { padding: var(--section-space) 0; }

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.work-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--metal-mid);
}

.device-mockup {
  position: relative;
  background: var(--bg-elevated-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 2.25rem 0.85rem 0.85rem;
}

.work-image {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-elevated-2);
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover .work-image img {
  transform: scale(1.06);
}

.device-dot {
  position: absolute;
  top: 0.95rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-strong);
}
.device-dot:nth-child(1) { left: 0.9rem; }
.device-dot:nth-child(2) { left: 1.6rem; }
.device-dot:nth-child(3) { left: 2.3rem; }

.device-screen {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
}

.device-screen--1 { background: linear-gradient(135deg, var(--metal-light), var(--metal-dark) 80%); }
.device-screen--2 { background: linear-gradient(135deg, var(--champagne), var(--forest-deep) 85%); }
.device-screen--3 { background: radial-gradient(120% 120% at 20% 20%, var(--metal-mid), var(--bg-elevated-2) 75%); }
.device-screen--4 { background: linear-gradient(135deg, var(--moss), var(--metal-dark) 85%); }

.work-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 1.1rem;
  padding: 0 0.25rem;
}

.work-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.work-status {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .work-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   CENÍK
   ============================================================ */
.pricing { padding: var(--section-space) 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover {
  border-color: var(--metal-mid);
  transform: scale(1.03) translateY(-6px);
  box-shadow: var(--shadow);
}

.pricing-title {
  font-size: var(--fs-h3);
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.1rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-text { color: var(--text-muted); }

@media (min-width: 780px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card--alt { margin-top: 2.5rem; }
}

/* ============================================================
   JAK TO PROBÍHÁ
   ============================================================ */
.process { padding: var(--section-space) 0; }

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem 1.25rem;
  margin: 0 -1.25rem;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step:hover {
  background: var(--bg-elevated);
  transform: scale(1.015);
}

.process-index {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--champagne);
}

.process-title {
  font-size: var(--fs-h3);
  margin-bottom: 0.5rem;
}

.process-text {
  color: var(--text-muted);
  max-width: 56ch;
}

@media (min-width: 780px) {
  .process-step { grid-template-columns: 6rem 1fr; align-items: baseline; }
}

/* ============================================================
   O NÁS
   ============================================================ */
.about {
  padding: var(--section-space) 0;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  margin: 0 var(--gutter) var(--section-space);
}

.about-inner {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.about-heading {
  font-size: var(--fs-h2);
  margin-bottom: 1.25rem;
}

.about-text {
  color: var(--text-muted);
  font-size: var(--fs-lead);
}

/* ============================================================
   PATIČKA / KONTAKT
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 4.5rem) 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-lead {
  color: var(--text-muted);
  margin-top: 0.85rem;
  max-width: 32ch;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--text); }

.footer-note {
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (min-width: 780px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

/* ============================================================
   KREATIVNÍ ROZLOŽENÍ — asymetrické posuny nadpisů mezi sekcemi
   ============================================================ */
@media (min-width: 900px) {
  .work .section-eyebrow,
  .work .section-heading {
    margin-left: 14%;
  }

  .pricing .section-eyebrow,
  .pricing .section-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .process .section-eyebrow,
  .process .section-heading {
    margin-left: auto;
    text-align: right;
  }

  .about-inner {
    margin-left: 8%;
    margin-right: auto;
    text-align: left;
  }
}
