/* ==========================================================
   mini-car.com – Statische Website
   Design: 1:1 Nachbau des Originals
   Fonts: Ubuntu + Ubuntu Condensed (self-hosted, DSGVO)
   ========================================================== */

/* ── Self-hosted Fonts ── */
@font-face { font-family:'Ubuntu'; src:url('fonts/ubuntu-300.woff2') format('woff2'),url('fonts/ubuntu-300.woff') format('woff'); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'Ubuntu'; src:url('fonts/ubuntu-400.woff2') format('woff2'),url('fonts/ubuntu-400.woff') format('woff'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Ubuntu'; src:url('fonts/ubuntu-500.woff2') format('woff2'),url('fonts/ubuntu-500.woff') format('woff'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Ubuntu'; src:url('fonts/ubuntu-700.woff2') format('woff2'),url('fonts/ubuntu-700.woff') format('woff'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Ubuntu Condensed'; src:url('fonts/ubuntu-condensed-400.woff2') format('woff2'),url('fonts/ubuntu-condensed-400.woff') format('woff'); font-weight:400; font-style:normal; font-display:swap; }

/* ── CSS-Variablen ── */
:root {
  --red:        #a0000a;
  --red-hover:  #7a0008;
  --red-dark:   #5a0005;
  --red-link:   #c30f14;
  --orange:     #eb8c00;
  --text:       #323232;
  --footer-bg:  #2d2d2d;
  --gray-bg:    #f0f0f0;
  --border:     #e0e0e0;
  --container:  960px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Ubuntu', Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
}

a { color: var(--red-link); text-decoration: none; }
a:hover { color: var(--red); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--red);
  margin: 0 0 0.6em;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.55rem; margin-top: 1.4em; }
h3 { font-size: 1.2rem; margin-top: 1em; color: var(--text); }

p { margin-bottom: 0.9em; }
ul, ol { margin: 0 0 1em 1.4em; }
li { margin-bottom: 0.2em; }
strong { font-weight: 700; }

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

/* ══════════════════════════════
   HEADER
   ══════════════════════════════ */
#site-header {
  background: #fff;
  position: relative;
  z-index: 100;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 0 0 20px;
  display: flex;
  align-items: stretch;
  min-height: 130px;
}

/* Logo-Box: weißer Kasten, leicht in Slider ragend */
.site-logo {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 10px 18px 10px 0;
  flex-shrink: 0;
  margin-bottom: -20px; /* ragt in Slider */
  z-index: 10;
  position: relative;
}
.site-logo img {
  height: 126px;
  width: auto;
}

/* Navigation */
nav#main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 20px;
}

nav#main-nav > ul {
  list-style: none;
  display: flex;
  height: 100%;
}

nav#main-nav > ul > li {
  position: relative;
}

nav#main-nav > ul > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 16px;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 22px;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.15s;
  text-decoration: none;
}

nav#main-nav > ul > li > a:hover { color: var(--red); text-decoration: none; }
nav#main-nav > ul > li.active > a { color: var(--orange); }

/* Dropdown */
nav#main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: 3px solid #a0000a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  z-index: 200;
  list-style: none;
}
nav#main-nav li:hover > .dropdown { display: block; }
nav#main-nav .dropdown li a {
  display: block;
  padding: 9px 16px;
  font-size: 0.875rem;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.1s, color 0.1s;
  text-decoration: none;
}
nav#main-nav .dropdown li a:hover { background: #f8f8f8; color: var(--red); text-decoration: none; }
nav#main-nav .dropdown li:last-child a { border-bottom: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  margin-right: 16px;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text); }

/* ══════════════════════════════
   HERO SLIDER
   ══════════════════════════════ */
#hero-slider {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
  background: #555;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 50% 50%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.slide.active { opacity: 1; }

/* Slider-Content: Wrapper über volle Breite */
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
/* Innerer Container aligned mit dem Rest der Seite */
.slide-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
/* Roter Titel-Block: inline-block → Background nur um Text */
.slide-content h1 {
  display: inline-block;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 0 0;
  letter-spacing: 0.01em;
  background: rgba(160, 0, 10, 0.8);
  padding: 1px 20px;
}
/* Untertitel ebenfalls roter Block */
.slide-content p {
  display: block;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 30px;
  font-style: normal;
  color: #fff;
  margin: 0;
  font-weight: 400;
  background: rgba(160, 0, 10, 0.8);
  padding: 2px 20px;
  width: fit-content;
}

/* Slider-Dots */
.slider-dots {
  position: absolute;
  bottom: 12px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
}
.slider-dots button.active { background: #fff; opacity: 1; }

/* ══════════════════════════════
   TELEFON-LEISTE
   ══════════════════════════════ */
#phone-bar {
  background: rgb(160, 0, 10);
  color: #fff;
}
.phone-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.phone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  border-right: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: background 0.15s;
  color: #fff;
}
.phone-item:last-child { border-right: none; }
.phone-item:hover {
  background: #fff;
  text-decoration: none;
  color: rgb(195, 15, 20);
}
.phone-item:hover .phone-brand,
.phone-item:hover .phone-prefix,
.phone-item:hover .phone-number {
  color: rgb(195, 15, 20);
}

.phone-brand {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}
.phone-row2 {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.phone-prefix {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1;
}
.phone-number {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}
/* Inline-Variante für Footer-Bar */
.phone-bar-inline {
  background: var(--red);
  text-align: right;
  padding: 10px 20px;
}
.phone-bar-inline a {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
}
.phone-bar-inline a strong {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 1.9rem;
  margin-left: 6px;
}

/* ══════════════════════════════
   HAUPTINHALT
   ══════════════════════════════ */
#main-content {
  padding: 32px 0 50px;
}

/* Zweispaltig auf Startseite */
.intro-cols {
  column-count: 2;
  column-gap: 40px;
  margin-bottom: 32px;
}
.intro-cols h3 {
  column-span: all;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 1.7rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.4em;
}

/* CTA-Boxen */
.cta-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 20px;
  margin: 24px 0 32px;
}
.cta-box {
  background: var(--gray-bg);
  padding: 22px 24px;
  border-top: 4px solid var(--red);
  display: flex;
  flex-direction: column;
}
.cta-dekra {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-box h4 {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 1.1rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cta-box p { font-size: 0.9rem; margin-bottom: 6px; }
.cta-box a.read-more {
  display: none; /* kein Read more */
}
.cta-box .btn-cta {
  display: block;
  width: 100%;
  background: rgb(181, 9, 16);
  color: #fff;
  padding: 10px 0;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: auto;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s, color 0.15s;
  border: 2px solid rgb(181, 9, 16);
  box-sizing: border-box;
}
.cta-box .btn-cta:hover {
  background: #fff;
  color: rgb(181, 9, 16);
  text-decoration: none;
}

/* ══════════════════════════════
   FAHRZEUG-BEREICH (4 Spalten)
   ══════════════════════════════ */
#vehicle-section {
  background: var(--gray-bg);
  padding: 30px 0 36px;
}

.vehicle-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.vehicle-col {
  padding: 0 20px;
  text-align: center;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.vehicle-col:hover {
  background: #fff;
}
.vehicle-col:hover h3 a,
.vehicle-col:hover .tagline,
.vehicle-col:hover .desc,
.vehicle-col:hover .mehr {
  color: var(--red);
}
.vehicle-col:last-child { border-right: none; }

.vehicle-col h3 {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.vehicle-col h3 a { color: var(--red); }
.vehicle-col h3 a:hover { color: var(--red); text-decoration: underline; }

.vehicle-col .tagline {
  font-size: 0.88rem;
  color: #777;
  margin-bottom: 10px;
  font-style: normal;
}

.vehicle-col .desc {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
  flex: 1;
}

.vehicle-col .mehr {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-top: auto;
  display: block;
}
.vehicle-col .mehr:hover { color: var(--red); text-decoration: none; }

/* ══════════════════════════════
   SUB-HEADER (Seitentitel-Leiste)
   ══════════════════════════════ */
#sub-header {
  background: var(--red);
  padding: 18px 0;
}
#sub-header h1 {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════
   UNTERSEITEN – Inhalt
   ══════════════════════════════ */
.page-content {
  padding: 30px 0 50px;
}
.page-content .container { max-width: 820px; }

.page-content h1 {
  font-size: 1.9rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.8em;
}
.page-content h2 {
  font-size: 1.3rem;
  color: var(--red);
  margin-top: 1.6em;
}
.page-content a { color: var(--red-link); }

/* Buchungs-Button */
.btn-book {
  display: inline-block;
  background: rgb(181, 9, 16);
  color: #fff !important;
  padding: 10px 28px;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 20px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none !important;
  border: 2px solid rgb(181, 9, 16);
}
.btn-book:hover {
  background: #fff;
  color: rgb(181, 9, 16) !important;
  text-decoration: none !important;
}

/* Artikel-Bild */
.article-img {
  float: right;
  margin: 0 0 16px 28px;
  max-width: 300px;
  border-radius: 0;
}

/* Fahrzeug-Karte (kurier-buchen Seiten) */
.vehicle-card {
  border-top: 3px solid #a0000a;
  background: var(--gray-bg);
  padding: 24px 28px;
  margin-bottom: 28px;
}
.vehicle-card h2 { margin-top: 0; }
.vehicle-card .specs { font-size: 0.88rem; color: #777; font-style: italic; margin-bottom: 0.8em; }

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
#site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.75);
}

.footer-phone-bar {
  background: var(--red);
  padding: 10px 20px;
}
.footer-phone-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}
.footer-phone-bar a {
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-phone-bar a:hover { text-decoration: none; }
.footer-phone-bar .fp-label { font-size: 0.9rem; }
.footer-phone-bar .fp-number {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
}

.footer-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 20px 28px;
  display: grid;
  grid-template-columns: 220px 1fr 1fr 180px;
  gap: 30px;
  align-items: start;
}

/* Footer Logo */
.footer-logo img {
  height: 72px;
  width: auto;
  margin-bottom: 14px;
}
.footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
}

/* Footer Navigation */
.footer-nav-col {}
.footer-nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav-col li { margin-bottom: 5px; }
.footer-nav-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-nav-col a::before { content: '» '; }
.footer-nav-col a:hover { color: #fff; text-decoration: none; }

/* Standort */
.footer-standort { text-align: center; }
.footer-standort h4 {
  color: #fff;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: left;
}
.footer-standort a { text-decoration: none; display: block; }
.footer-standort img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s;
  display: inline-block;
}
.footer-standort a:hover img { border-color: rgba(255,255,255,0.5); }

/* ══════════════════════════════
   COOKIE-BANNER
   ══════════════════════════════ */













/* ══════════════════════════════
   KONTAKT-FORMULAR
   ══════════════════════════════ */
.contact-form, .reg-form { max-width: 600px; margin-top: 24px; }
.form-section-title {
  font-family: 'Ubuntu Condensed', sans-serif;
  background: var(--text);
  color: #fff;
  padding: 7px 14px;
  font-size: 1rem;
  margin-bottom: 14px;
  margin-top: 24px;
  letter-spacing: 0.03em;
}
.form-row { display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 14px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: #555; margin-bottom: 4px; }
.form-group label .req { color: var(--red); }
.form-group input, .form-group textarea {
  width: 100%; padding: 8px 10px;
  border: 1px solid #ccc;
  background: #fafafa;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.15s;
  border-radius: 0;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.form-group input.error { border-color: var(--red); background: #fff5f5; }
.form-group textarea { min-height: 130px; resize: vertical; }
.field-error { font-size: 0.78rem; color: var(--red); display: none; margin-top: 2px; }
.form-note { font-size: 0.8rem; color: #888; margin: 14px 0; line-height: 1.5; }
.form-note a { color: var(--red); }
.dsgvo-row { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; padding: 14px; background: var(--gray-bg); border-left: 3px solid var(--red); }
.dsgvo-row input[type=checkbox] { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--red); }
.dsgvo-row label { font-size: 0.83rem; color: #444; line-height: 1.5; }
.dsgvo-row label a { color: var(--red); text-decoration: underline; }
.captcha-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.captcha-box { background: var(--text); color: #fff; font-family: 'Ubuntu Condensed', sans-serif; font-size: 1.1rem; letter-spacing: 0.08em; padding: 7px 16px; user-select: none; }
.captcha-row input { width: 70px; text-align: center; }
.btn-send {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 32px;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 0.04em;
}
.btn-send:hover { background: var(--red-hover); }
.alert-success { background: #e8f5e9; border-left: 4px solid #2e7d32; padding: 14px 18px; margin-bottom: 18px; color: #1b5e20; display: none; }
.alert-error   { background: #fff5f5; border-left: 4px solid var(--red); padding: 14px 18px; margin-bottom: 18px; color: var(--red); display: none; }
.hp-field { display: none !important; }

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 768px) {
  .header-inner { padding: 0 14px; min-height: 64px; }
  .site-logo { margin-bottom: 0; padding: 10px 14px 10px 0; }
  .site-logo img { height: 56px; }

  .nav-toggle { display: flex; }
  nav#main-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff;
    border-top: 2px solid var(--red);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0 16px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    z-index: 999;
  }
  nav#main-nav.open { display: flex; }
  nav#main-nav > ul { flex-direction: column; width: 100%; }
  nav#main-nav > ul > li > a { height: auto; padding: 13px 20px; border-bottom: 1px solid #f0f0f0; font-size: 18px; }
  nav#main-nav .dropdown { display: block; position: static; box-shadow: none; border: none; background: #f8f8f8; }
  nav#main-nav .dropdown li a { padding: 9px 20px 9px 34px; }

  #hero-slider { height: 180px; }
  .slide-content h1 { font-size: 32px; }
  .slide-content p { font-size: 18px; }
  .slide-content h1 { font-size: 28px; padding: 1px 12px; }
  .slide-content p  { font-size: 16px; padding: 2px 12px; }
  .slide-inner { padding: 0 10px; }

  .phone-bar-inner { grid-template-columns: 1fr; }
  .phone-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 10px; }
  .phone-item:last-child { border-bottom: none; }
  .phone-number { font-size: 1.7rem; }

  .intro-cols { column-count: 1; }
  .cta-row { grid-template-columns: 1fr; }

  .vehicle-grid { grid-template-columns: 1fr 1fr 1fr; }
  .vehicle-col { border-right: none; border-bottom: 1px solid #ddd; padding: 16px 10px; }
  .vehicle-col:nth-child(2n) { border-right: none; }

  .footer-main { grid-template-columns: 1fr; gap: 20px; }
  .footer-standort { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .slide-content h1 { font-size: 1.5rem; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .phone-number { font-size: 1.5rem; }
}

/* ── Fahrzeug-Unterseiten: Bild rechts, Text links ── */
.vehicle-page {
  padding: 30px 0 50px;
}
.vehicle-page .container {
  max-width: 960px;
}
.vehicle-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  margin-top: 16px;
}
.vehicle-layout .vehicle-img {
  text-align: center;
  background: #fff;
  padding: 20px;
  border: none;
}
.vehicle-layout .vehicle-img img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.vehicle-specs {

/* ── DEKRA Siegel ─────────────────────────────────────────────────────────── */
.dekra-block {
  margin: 16px 0 20px;
}
.dekra-block img {
  display: block;
  max-width: 310px;
  height: auto;
}
