* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #000;
  line-height: 1.6;
}
.story-block.left { flex-direction: row; }
.story-block.right { flex-direction: row-reverse; }
header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: #000;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Optional: simple animation for open state */
.nav-toggle.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #a52828;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d32f2f;
}

.hero {
  position: relative;
  overflow: hidden;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/tir.jpeg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.4;
  z-index: 0;
}

.hero-overlay {
  z-index: 10;
  position: absolute;
}
.hero-overlay.animated {
  max-width: 700px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  animation: fadeInUp 1s ease-out;
}
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #222;
  font-weight: 300;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.cta-button {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #d32f2f;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #a52828;
}

.section {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
  color: #000;
  scroll-margin-top: 80px;
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #d32f2f;
}

.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  text-align: center;
}

.ablauftag {
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
  position: relative;
}

.ablauftag:hover {
  transform: translateY(-6px);
  background: #e0e0e0;
}

.ablauftag h3 {
  margin-bottom: 0.5rem;
  color: #d32f2f;
  font-size: 1.1rem;
}

.ablauf-details {
  list-style: none;
  margin: 0;
  padding-left: 0;
  color: #222;
  opacity: 1;
  max-height: none;
  overflow: visible;
  transition: transform 0.3s ease;
}

.ablauftag:hover .ablauf-details {
  transform: scale(1.05);
}

.ablauf-details li {
  margin: 0.3rem 0;
  padding-left: 1.4rem;
  position: relative;
  color: #222;
}

.ablauf-details li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #d32f2f;
}

.buchungsformular {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
}

.buchungsformular input,
.buchungsformular select {
  padding: 0.75rem;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

.buchungsformular button {
  background-color: #d32f2f;
  color: #fff;
  font-weight: bold;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.buchungsformular button:hover {
  background-color: #a52828;
}

.pakete {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.paket {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.paket:hover {
  transform: translateY(-5px);
  background-color: #e0e0e0;
}

.paket h3 {
  color: #d32f2f;
  margin-bottom: 1rem;
}

.paket ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  color: #222;
  text-align: left;
}

.paket ul li {
  margin: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
  color: #222;
}

.paket ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}

.preis {
  font-size: 1.5rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 1rem;
}

.paket-btn {
  background-color: #d32f2f;
  color: #000;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.paket-btn:hover {
  background-color: #a52828;
  color: #fff;
}

.mosaik {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.mosaik img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.mosaik img:hover {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 8px;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-info {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  color: #222;
}

.team-info li {
  margin: 0.3rem 0;
}
.team-member {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.team-member:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

footer {
  text-align: center;
  padding: 2rem;
  background: #fff;
  color: #222;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .cta-button {
    font-size: 0.9rem;
  }
}
/* Hero background image layer */
/* Removed .hero-bg to avoid conflicting background images */

.team-info {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  color: #222;
}

.team-info li {
  margin: 0.3rem 0;
}

/* ----- Ablaufkarten Hover Details ----- */
.ablauftag {
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
  position: relative;
}

.ablauftag h3 {
  margin-bottom: 0.5rem;
  color: #d32f2f;
  font-size: 1.1rem;
}

.ablauf-details {
  list-style: none;
  margin: 0;
  padding-left: 0;
  color: #222;
  opacity: 1;
  max-height: none;
  overflow: visible;
  transition: transform 0.3s ease;
}

.ablauftag:hover {
  transform: translateY(-6px);
  background: #e0e0e0;
}

.ablauftag:hover .ablauf-details {
  transform: scale(1.05);
}

.ablauf-details li {
  margin: 0.3rem 0;
  padding-left: 1.4rem;
  position: relative;
  color: #222;
}

.ablauf-details li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #d32f2f;
}

/* Countdown Styling: Inline, größer und fetter */
#countdown {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin: 1rem 0;
}


@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Graffiti-Text Styling */
.graffiti-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: #000;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff;
  -webkit-text-stroke: 1px #fff;
  display: inline-block;
  margin: 0 1rem;
}

/* Unterkunft & Anreise */
#unterkunft .unterkunft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.unterkunft-option {
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 8px;
}
.map-container {
  margin-top: 1rem;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
}

/* Hotelgalerie als Grid ohne Lücken */
#unterkunft .hotel-gallery img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
 
.hotel-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Spalten für 2 Zeilen */
  gap: 13px; /* kleiner, moderner Abstand */
  max-width: 100%;
  margin: 0 auto;
}

.hotel-gallery img {
  width: 100%;
  height: 200px; /* mittlere Höhe */
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* FAQ */
.faq-answer {
  display: none;
  padding: 0.5em 0;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1em;
  font-weight: bold;
  padding: 0.5em 0;
  cursor: pointer;
}
#faq .faq-item {
  margin-bottom: 1rem;
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 8px;
}
#faq .faq-item h3 {
  font-weight: 700;
  color: #d32f2f;
  cursor: pointer;
}
#faq .faq-item p {
  margin-top: 0.5rem;
  color: #222;
}

/* Ausrüstungs-Checkliste */
#checkliste ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}
#checkliste ul li {
  position: relative;
  padding-left: 1.5rem;
  color: #222;
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
}
#checkliste ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  color: #d32f2f;
}

/* Sicherheit & Gesundheit */
#sicherheit p {
  margin-bottom: 0.75rem;
  color: #222;
}

/* Unsere Geschichte */
.story-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.story-block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: nowrap;
  flex-direction: row;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.story-block.reverse {
  flex-direction: row-reverse;
}

.story-block img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.story-block img:hover {
  transform: scale(1.05);
}

.story-text {
  max-width: 500px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #222;
  animation: fadeInUp 1s ease forwards;
  flex: 1;
  max-width: 40%;
}

.story-text p {
  margin-bottom: 0.5rem;
  color: #222;
}

.story-text strong {
  color: #000;
  font-weight: 700;
}

@media (max-width: 768px) {
  .story-block {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .story-block.reverse {
    flex-direction: row-reverse;
  }

  .story-text {
    flex: 1 1 40%;
    text-align: left;
    min-width: 300px;
  }

  .story-images-duo {
    flex: 1 1 55%;
    justify-content: flex-start;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

.story-images-multi {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.story-images-multi img {
  width: 100%;
  max-width: 200px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.story-images-multi img:hover {
  transform: scale(1.05);
}


/* Zwei große Story-Bilder nebeneinander */
.story-images-duo {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 1rem;
  flex: 1;
  max-width: 55%;
}

.story-images-duo img {
  width: 52%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-images-duo img:hover {
  transform: scale(1.05);
}

.story-images-duo .image-pair {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}

.story-images-duo .image-pair img {
  width: 50%;
  height: auto;
  object-fit: cover;
}
.countdown-flip {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  font-family: 'Roboto Mono', monospace;
}

.flip-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flip-number {
  background: none;
  color: #d32f2f;
  font-size: 4rem;
  font-weight: bold;
  width: auto;
  height: auto;
  line-height: 1;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  border-radius: 0;
  box-shadow: none;
  padding: 0.5rem 1rem;
}

.label {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-date {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 1.2rem;
  color: #d32f2f;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.facts-section {
  background-color: #fff;
  padding: 3rem 2rem;
  margin-bottom: 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
}

.fact {
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.fact:hover {
  transform: translateY(-5px);
  background-color: #e0e0e0;
}

.fact h3 {
  color: #d32f2f;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.ablauf-section {
  padding-top: 2rem;
  margin-top: -1rem;
}

.section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #ccc, transparent);
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .hotel-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-block {
    flex-direction: column;
    align-items: center;
  }

  .story-text {
    max-width: 100%;
    text-align: center;
  }

  .story-images-duo {
    flex-direction: column;
    max-width: 100%;
  }

  .story-images-duo .image-pair {
    flex-direction: column;
  }

  .story-section img {
    display: block;
    margin: 0 auto;
  }

  .footer-links a {
    display: inline-block;
    margin: 0.3rem 0;
  }
}

@media (max-width: 480px) {
  .hotel-gallery {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.3rem;
  }

  .hero .subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  /* Mobile navbar & menu */
  .navbar {
    padding: 0.75rem 1.25rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: #ffffff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 999;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links li a {
    width: 100%;
    padding: 0.25rem 0;
  }

  /* Hero adjustments for mobile */
  .hero {
    height: auto;
    min-height: 80vh;
    padding: 6rem 1.25rem 3rem;
  }

  .hero::before {
    background-attachment: scroll;
  }

  .hero-overlay.animated {
    max-width: 95%;
    padding: 1.5rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .countdown-flip {
    gap: 1rem;
  }

  .flip-number {
    font-size: 2.4rem;
  }

  /* Sections & cards */
  .section {
    padding: 2.5rem 1.5rem;
    max-width: 100%;
  }

  .pakete {
    gap: 1.5rem;
  }

  .paket {
    width: 100%;
    max-width: 360px;
  }

  .ablauf-grid {
    grid-template-columns: 1fr;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    gap: 1.5rem;
  }
}
/* --- Photo credit badges on story images (compact under-image style) --- */
.img-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 18px; /* reserve space for the under-photo caption so nothing shifts */
}
.img-wrap > img {
  display: block;
}
.photo-credit {
  position: absolute;
  left: 50%;
  bottom: -14px;          /* direkt unter dem Bild */
  transform: translateX(-50%);
  font-size: 11px;
  line-height: 1;
  color: rgba(90, 90, 90, 0.65);  /* grau, leicht transparent */
  background: transparent;
  padding: 0;
  text-decoration: none;
  white-space: nowrap;    /* einzeilig halten */
}
.photo-credit:hover {
  text-decoration: underline; /* subtle hover */
}
/* Make the two wrapped images keep the 50/50 layout inside the flex row */
.story-images-duo .image-pair > .img-wrap {
  width: 50%;
}
.story-images-duo .image-pair > .img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Center .img-wrap items on narrow screens like plain <img> */
@media (max-width: 768px) {
  .story-images-duo .image-pair { 
    align-items: center;       /* center flex children vertically when column */
    justify-content: center; 
  }
  .story-images-duo .image-pair > .img-wrap {
    width: 100%;
    max-width: 400px;          /* match the other story image max width */
    margin: 0 auto 18px;       /* center horizontally + keep caption space */
  }
}
/* Adjust face position in circular team images */
.team-member img {
  object-fit: cover;
  object-position: center top; /* Bildausschnitt nach oben verschieben */
}
/* --- Fix: Button in Paket-Karte wird nicht abgeschnitten --- */
.pakete .paket {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding-bottom: 28px;   /* extra Platz unten */
  overflow: visible;      /* nichts abschneiden */
}
.pakete .paket ul {
  margin-bottom: 0;       /* Platz nach unten durch gap/padding */
}
.pakete .paket .preis {
  margin: 0;              /* konsistent, Button bekommt separaten Abstand */
}
.pakete .paket .paket-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .pakete .paket { padding-bottom: 32px; }
}
/* --- Button text: white, no underline --- */
.paket-btn,
.paket-btn:link,
.paket-btn:visited,
.checkout-button,
.checkout-button:link,
.checkout-button:visited,
.cta-button,
.cta-button:link,
.cta-button:visited {
  color: #fff !important;
  text-decoration: none !important;
}
.paket-btn:hover,
.paket-btn:focus,
.checkout-button:hover,
.checkout-button:focus,
.cta-button:hover,
.cta-button:focus {
  color: #fff !important;
  text-decoration: none !important;
}
/* --- Bild im Impressum mittig zentrieren --- */
.impressum-bild,
.impressum-bild img {
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width: 400px;
}
.summary-box {
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 2rem 1.75rem;
  max-width: 700px;
  margin: 2.5rem auto;
  text-align: center;
  backdrop-filter: blur(6px);
}
.summary-box h1 { color: #111; margin-bottom: .75rem; }
.summary-box p { color: #333; }
.summary-box .form-actions { justify-content: center; }
/* ===== Albanien Section: 1 Bild + Text daneben (wie Story), mobil sauber ===== */
.albanien-section .albanien-block {
  margin-bottom: 3rem;
}

.story-images-single {
  flex: 1;
  max-width: 55%;
  display: flex;
  justify-content: center;
}

.story-images-single img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-images-single img:hover {
  transform: scale(1.05);
}

.albanien-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.75rem;
}

.albanien-list li {
  margin: 0.35rem 0;
  padding-left: 1.4rem;
  position: relative;
  color: #222;
}

.albanien-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #d32f2f;
}

/* Mobile: untereinander, nichts verschiebt sich komisch */
@media (max-width: 768px) {
  .story-images-single {
    max-width: 100%;
  }

  .story-images-single img {
    max-width: 400px;
    margin: 0 auto;
  }

  /* deine story-text ist aktuell teils auf 40% begrenzt – hier sicher auf 100% */
  #albanien .story-text {
    max-width: 100%;
  }
}
.partner-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center; /* oder flex-start, wenn linksbündig */
}

.partner-list img {
  max-width: 220px; /* optional */
  height: auto;
  cursor: pointer;
}
