:root {
  --blue: #1a56db;
  --blue-light: #e8f0fe;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
  --green: #059669;
  --sun: #d97706;
  --content-max: 600px;
  --main-col-max: 680px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.site-brand-banner {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
  text-decoration: none;
  background: #111827;
  line-height: 0;
  border: none;
}
.site-brand-banner:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}
.site-brand-banner__img {
  display: block;
  width: 100%;
  max-width: none;
  height: clamp(12rem, 45vh, 34rem);
  margin: 0;
  vertical-align: middle;
}

/* Layout: collage panorami ai lati */
.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, var(--main-col-max)) minmax(0, 1fr);
  align-items: stretch;
  min-height: 100vh;
}
.page-main {
  min-width: 0;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(17, 24, 39, 0.04);
}
.side-collage {
  display: grid;
  gap: 8px;
  padding: 14px 10px;
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(165deg, #f3f4f6 0%, #e5e7eb 45%, #f9fafb 100%);
}
.side-collage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.side-collage img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  z-index: 1;
}
.side-collage--left {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 0.85fr 0.95fr;
  padding-right: 6px;
  padding-left: max(10px, env(safe-area-inset-left));
}
.side-collage--left img:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}
.side-collage--left img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.side-collage--left img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
.side-collage--left img:nth-child(4) {
  grid-column: 1 / -1;
  grid-row: 3;
}
.side-collage--left img:nth-child(5) {
  grid-column: 1;
  grid-row: 4;
}
.side-collage--left img:nth-child(6) {
  grid-column: 2;
  grid-row: 4;
}
.side-collage--right {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0.75fr 1fr 0.9fr 0.85fr;
  padding-left: 6px;
  padding-right: max(10px, env(safe-area-inset-right));
}
.side-collage--right img:nth-child(1) {
  grid-column: 1 / -1;
  grid-row: 1;
}
.side-collage--right img:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.side-collage--right img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
.side-collage--right img:nth-child(4) {
  grid-column: 1 / -1;
  grid-row: 3;
}
.side-collage--right img:nth-child(5) {
  grid-column: 1;
  grid-row: 4;
}
.side-collage--right img:nth-child(6) {
  grid-column: 2;
  grid-row: 4;
}

@media (max-width: 1100px) {
  .page-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .page-main {
    border-left: none;
    border-right: none;
    box-shadow: none;
  }
  .side-collage {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .side-collage img {
    transition: none;
  }
  .side-collage img:hover {
    transform: none;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Instrument Serif", serif;
  font-size: 1.4rem;
  color: var(--blue);
  text-decoration: none;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}
.nav-link:hover {
  color: var(--blue);
}
.nav-btn {
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}
.hero {
  padding: 3rem 1.5rem 2rem;
  max-width: var(--content-max);
  margin: 0 auto;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
h1 {
  font-family: "Instrument Serif", serif;
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}
h1 em {
  color: var(--blue);
  font-style: italic;
}
.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.search-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}
.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}
.field-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.35rem 0 0;
  line-height: 1.35;
}
.field input,
.field select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus {
  border-color: var(--blue);
}
.field--autocomplete,
.autocomplete-wrap {
  position: relative;
}
.autocomplete-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: 0.25rem 0 0;
  padding: 0.35rem 0;
  list-style: none;
  max-height: 16rem;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  z-index: 40;
}
.autocomplete-suggestion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
}
.autocomplete-suggestion:hover,
.autocomplete-suggestion:focus {
  background: #eef4ff;
}
.autocomplete-label {
  flex: 1;
  min-width: 0;
}
.autocomplete-iata {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.fields-row .field {
  margin-bottom: 0;
}
.budget-wrap {
  position: relative;
}
.budget-wrap span {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-weight: 700;
}
.budget-wrap input {
  padding-left: 1.8rem;
}
.surprise-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.toggle {
  width: 38px;
  height: 22px;
  background: #d1d5db;
  border-radius: 11px;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.toggle.on {
  background: var(--sun);
}
.toggle::after {
  content: "";
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.toggle.on::after {
  left: 19px;
}
.surprise-label {
  font-size: 0.9rem;
}
.surprise-label span {
  color: var(--sun);
  font-weight: 600;
}
.insurance-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.insurance-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}
.insurance-row label {
  font-size: 0.9rem;
  cursor: pointer;
}
.insurance-row label span {
  color: var(--muted);
  font-size: 0.82rem;
}
.search-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.15s;
}
.search-btn:hover {
  background: #1648c8;
  transform: translateY(-1px);
}
.search-btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}
.loading {
  display: none;
  text-align: center;
  padding: 2rem 1.5rem;
}
.loading-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 1rem;
}
.loading-dots span {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}
.loading p {
  color: var(--muted);
  font-size: 0.95rem;
}
.results {
  display: none;
  padding: 0 1.5rem 3rem;
  max-width: var(--content-max);
  margin: 0 auto;
}
.results.show {
  display: block;
}
.results-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.flight-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  background: white;
}
.flight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.flight-header--scopri {
  justify-content: flex-start;
}
.flight-title {
  font-family: "Instrument Serif", serif;
  font-size: 1.3rem;
}
.flight-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
}
.flight-price--indic {
  font-size: 0.95rem;
  font-weight: 600;
  text-align: right;
  line-height: 1.25;
}
.flight-budget-line {
  margin: 0 0 0.75rem;
  padding: 0.55rem 0.75rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #166534;
  line-height: 1.35;
}
.flight-budget-line--neutral {
  background: var(--bg);
  border-color: var(--border);
  color: var(--muted);
}
.airline-price--indic {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.total-row-item--budget {
  opacity: 1;
  font-weight: 600;
}
.total-row-budget-ok {
  font-size: 0.85rem;
  opacity: 1;
  color: #dcfce7;
  background: rgba(255, 255, 255, 0.12);
  margin: 0.25rem -0.25rem;
  padding: 0.35rem 0.25rem;
  border-radius: 6px;
}
.airline-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.airline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.8rem;
  background: var(--bg);
  border-radius: 8px;
}
.airline-row--no-price {
  justify-content: flex-start;
}
.airline-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.airline-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: white;
  border: 1px solid var(--border);
}
.airline-name {
  font-size: 0.9rem;
  font-weight: 500;
}
.airline-route {
  font-size: 0.78rem;
  color: var(--muted);
}
.airline-price {
  font-weight: 600;
  font-size: 0.95rem;
}
.hotels-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.hotel-stay22-note {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 1rem;
}
.hotel-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: white;
  transition: box-shadow 0.2s;
}
.hotel-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.hotel-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.hotel-body {
  padding: 1rem;
}
.hotel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.3rem;
}
.hotel-name {
  font-weight: 600;
  font-size: 1rem;
}
.hotel-price {
  font-weight: 700;
  color: var(--blue);
  font-size: 1rem;
  white-space: nowrap;
}
.hotel-stars {
  color: var(--sun);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}
.hotel-location {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.hotel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.hotel-tag {
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 20px;
  padding: 0.15rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.book-hotel-btn {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.65rem;
  background: white;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.book-hotel-btn:hover {
  background: var(--blue);
  color: white;
}
.flight-price-hint {
  margin: 0.75rem 0 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}
.scopri-prezzo-btn {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.85rem 1rem;
  background: var(--sun);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: filter 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.35);
}
.scopri-prezzo-btn:hover {
  filter: brightness(1.05);
  color: white;
  transform: translateY(-1px);
}
.flight-airhelp-inline {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
}
.flight-airhelp-inline a {
  color: #1a6fa8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.flight-airhelp-inline a:hover {
  color: #0f598a;
}
.flight-partner-note {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}
.total-scopri-link {
  color: white;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.total-scopri-link:hover {
  color: #fde68a;
}

.results-budget-summary {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  font-size: 0.92rem;
  line-height: 1.45;
}
.results-budget-summary p {
  margin: 0;
}
.results-budget-summary__sub {
  margin-top: 0.5rem !important;
  font-size: 0.82rem;
  color: var(--muted);
}
.package-card__quota-hint {
  margin: 0;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text);
  background: #fafafa;
  border-bottom: 1px solid var(--border);
}

.packages-route-line {
  font-size: 0.92rem;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.45;
}
.package-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: white;
}
.package-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--bg);
  gap: 0.75rem;
}
.package-card__badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.package-card__total {
  text-align: right;
}
.package-card__total-label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}
.package-card__total-eur {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue);
}
.package-card__budget-ok {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #166534;
  background: #dcfce7;
  padding: 0.1rem 0.45rem;
  border-radius: 6px;
}
.package-card__split {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  gap: 0.5rem;
  flex-wrap: wrap;
}
.package-card__split-hint {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.15rem;
}
.package-card__stay-disclaimer {
  margin: 0;
  padding: 0.45rem 1rem 0.55rem;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #7c2d12;
  background: #fff7ed;
  border-bottom: 1px solid var(--border);
}
.package-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.package-card__body {
  padding: 1rem;
}
.package-card__hotel-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.package-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.85rem;
}
.package-btn {
  display: block;
  text-align: center;
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.2s;
  font-family: "DM Sans", sans-serif;
}
.package-btn--kiwi {
  background: var(--sun);
  color: white;
  border: none;
}
.package-btn--kiwi:hover {
  filter: brightness(1.05);
  color: white;
}
.package-btn--booking {
  background: white;
  border: 1.5px solid var(--blue);
  color: var(--blue);
}
.package-btn--booking:hover {
  background: var(--blue);
  color: white;
}
.package-card__fineprint {
  margin: 0.65rem 0 0;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.35;
}
.package-card__airhelp {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
}
.package-card__airhelp a {
  color: #1a6fa8;
  font-weight: 600;
  text-decoration: underline;
}
@media (max-width: 520px) {
  .package-card__actions {
    grid-template-columns: 1fr;
  }
}
.surprise-card {
  border: 2px dashed #fde68a;
  background: #fffbeb;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.surprise-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}
.surprise-card h3 {
  font-family: "Instrument Serif", serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.surprise-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.reveal-btn {
  padding: 0.8rem 2rem;
  background: var(--sun);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}
.total-card {
  background: var(--blue);
  border-radius: 14px;
  padding: 1.2rem;
  margin-bottom: 2rem;
  color: white;
}
.total-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.total-row-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.85;
}
.total-row-item.big {
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 1;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 0.25rem;
}
.prenota-btn {
  width: 100%;
  padding: 0.9rem;
  background: white;
  color: var(--blue);
  border: none;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.how {
  padding: 3rem 1.5rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.how-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.how h2 {
  font-family: "Instrument Serif", serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.step-num {
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.step-text span {
  font-size: 0.9rem;
  color: var(--muted);
}
.feedback {
  padding: 3rem 1.5rem;
}
.feedback-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.feedback h2 {
  font-family: "Instrument Serif", serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.fb-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: white;
}
.fb-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.fb-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fb-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
  flex-shrink: 0;
}
.fb-name {
  font-size: 0.85rem;
  font-weight: 600;
}
.fb-platform {
  font-size: 0.75rem;
  color: var(--muted);
}
footer {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}
footer a {
  color: var(--blue);
  text-decoration: none;
}
.results-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
