
:root {
  --bg-dark: #050505;
  --bg-mid: #0f0f10;
  --bg-panel: rgba(9, 9, 10, 0.78);
  --paper: #fbf8f2;
  --paper-soft: #f4efe4;
  --text: #24201b;
  --text-soft: #6c6358;
  --title: #f8f4ee;
  --accent: #c6a36a;
  --accent-dark: #8e6a3a;
  --link: #9a7440;
  --border: rgba(198, 163, 106, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  --radius: 0;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(198, 163, 106, 0.22);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(154, 116, 64, 0.18), transparent 24%),
    linear-gradient(180deg, #050505 0%, #0c0c0d 100%);
  font: 16px/1.75 Georgia, "Times New Roman", Times, serif;
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/eidos/imgslide/img05.jpg") center / cover no-repeat;
  filter: blur(2px);
  transform: scale(1.02);
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 25, 0.4);
  z-index: 1;
  pointer-events: none;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 10000;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--paper);
  color: #111;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: max(12px, env(safe-area-inset-top));
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

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

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

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  text-decoration: underline;
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

#rolling-nav a:focus-visible {
  outline-color: rgba(255,255,255,.92);
  outline-offset: 4px;
}

h1,
h2,
h3,
.hero-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text);
}

p {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  overflow-wrap: break-word;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

span {
  font-variant: small-caps;
  font-weight: 700;
}

#page {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  background: transparent;
  overflow: hidden;
}

#logo {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  background: #000;
}

.carousel-controls {
  position: absolute;
  right: clamp(34px, 4vw, 72px);
  bottom: 46px;
  z-index: 30;
}


.carousel-controls--inner {
  top: 16px;
  right: 16px;
  bottom: auto;
}

.carousel-toggle {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  touch-action: manipulation;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(10,10,10,0.42);
  color: rgba(255,255,255,0.9);
  font: 400 0.78rem/1 system-ui, "Segoe UI Symbol", sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.carousel-toggle:hover {
  background: rgba(10,10,10,0.7);
  border-color: rgba(255,255,255,0.38);
}

.carousel-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.carousel-controls--inner .carousel-toggle {
  border-color: rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.78);
  color: #111;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  object-fit: cover;
  filter: saturate(.88) brightness(.54);
}

.logo-overlay {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.8) 0 24%, rgba(0,0,0,0.42) 38%, rgba(0,0,0,0.16) 58%, rgba(0,0,0,0.24) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.36));
}

.logo-overlay p {
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.title-stack {
  position: absolute;
  right: 7em;
  bottom: 54px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: min(58vw, 760px);
}

.site-title {
  display: inline-block;
  position: relative;
  margin: 0;
  color: #fbf7f1;
  font-size: clamp(2.7rem, 4.7vw, 4.65rem);
  line-height: 1.04;
  text-align: right;
  letter-spacing: 0.014em;
  white-space: nowrap;
  text-shadow: 0 8px 22px rgba(0,0,0,0.42);
}

.site-title::after {
  content: "";
  display: block;
  width: 100%;
  margin-top: 0.42em;
  border-top: 1px solid rgba(198, 163, 106, 0.96);
}

.hero-meta {
  margin-top: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  max-width: 100%;
}


.tagline {
  margin: 0;
  color: rgba(248, 240, 230, 0.9);
  font-size: clamp(0.95rem, 1.32vw, 1.04rem);
  font-style: italic;
  letter-spacing: 0.028em;
  text-transform: none;
  text-align: right;
  white-space: nowrap;
}

.hero-toggle {
  position: static;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-color: rgba(255,255,255,0.2);
  background: rgba(10,10,10,0.32);
  color: rgba(255,255,255,0.84);
  font-size: 0.68rem;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}


#rolling-nav {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 25;
  width: min(340px, 34vw);
  display: flex;
  align-items: flex-start;
  padding: calc(7em + env(safe-area-inset-top)) 28px 28px max(24px, env(safe-area-inset-left));
}

.nav-inner {
  width: 100%;
  max-width: 318px;
  padding: 28px 24px 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(9, 9, 10, 0.9), rgba(9, 9, 10, 0.74));
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.site-search {
  margin: 0 0 1rem;
}

.site-search--hero {
  position: absolute;
  top: max(2.2em, calc(env(safe-area-inset-top) + 2.2em));
  right: max(20px, env(safe-area-inset-right));
  z-index: 26;
  width: min(360px, calc(100vw - 40px));
  margin: 0;
}

.site-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-search-input {
  width: 100%;
  min-width: 0;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.75);
  color: #222;
  font-size: 0.92rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.site-search-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.site-search-button:not(.search-modern-button) {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.75);
  color: #4f3f2b;
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.site-search-button:not(.search-modern-button):hover {
  background: rgba(255, 255, 255, 0.9);
}

.search-modern {
  flex: 1;
  width: 100%;
  min-width: 0;
  padding: 10px 16px 10px 42px;
  border-radius: 10px;
  border: 1px solid rgba(140, 160, 200, 0.45);
  background: linear-gradient(180deg, #1d2634, #111823);
  color: #d6deed;
  font-size: 0.92rem;
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,0.5),
    0 4px 12px rgba(0,0,0,0.35);
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2395a8cc' viewBox='0 0 24 24'%3E%3Cpath d='M21 20l-5.6-5.6a7 7 0 10-1 1L20 21zM10 16a6 6 0 110-12 6 6 0 010 12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px;
}

.search-modern::placeholder {
  color: #9aa9c5;
  font-size: 0.92rem;
}

.search-modern:focus {
  border: 1px solid rgba(170, 190, 230, 0.6);
  box-shadow:
    0 0 0 1px rgba(140,160,200,0.35),
    0 5px 14px rgba(0,0,0,0.4);
}

.search-modern-button {
  flex: 0 0 auto;
  min-width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(140, 160, 200, 0.45);
  background: linear-gradient(180deg, #1d2634, #111823);
  color: #d6deed;
  cursor: pointer;
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,0.5),
    0 4px 12px rgba(0,0,0,0.35);
}

.search-modern-button:hover {
  border-color: rgba(170, 190, 230, 0.6);
}

.search-modern-button:focus-visible {
  outline: 2px solid rgba(170, 190, 230, 0.7);
  outline-offset: 2px;
}

@supports not (backdrop-filter: blur(4px)) {
  .site-search-input {
    background: rgba(240, 240, 240, 0.9);
  }

  .site-search-button:not(.search-modern-button) {
    background: rgba(240, 240, 240, 0.9);
  }

  .site-search-button:not(.search-modern-button):hover {
    background: rgba(250, 250, 250, 0.95);
  }
}

.site-search-input:focus-visible,
.site-search-button:not(.search-modern-button):focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.94);
  outline-offset: 2px;
}

.nav-kicker {
  margin: 0 0 1.5rem;
  color: #c8102e;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  text-align: left;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.35;
  word-break: break-all;
}

#rolling-nav .nav-kicker a {
  display: inline;
  width: auto;
  padding: 0;
  gap: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  white-space: normal;
  text-decoration: none;
}

#rolling-nav .nav-kicker a::before {
  display: none;
  content: none;
}

#rolling-nav .nav-kicker a:hover,
#rolling-nav .nav-kicker a:focus-visible {
  color: #e81e3a;
  text-decoration: underline;
}

#rolling-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#rolling-nav li + li {
  margin-top: 0.4rem;
}

#rolling-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  padding: 0.62rem 0;
  color: rgba(255,255,255,0.97);
  font-size: clamp(1.08rem, 1.36vw, 1.22rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
}

#rolling-nav a::before {
  content: "";
  width: 18px;
  height: 1px;
  flex: 0 0 auto;
  background: rgba(198,163,106,0.72);
  transition: width 0.25s ease, background-color 0.25s ease;
}

#rolling-nav a:hover::before,
#rolling-nav a:focus-visible::before {
  width: 34px;
  background: #fff;
}

main {
  background: linear-gradient(180deg, var(--paper) 0%, #f5f0e5 100%);
  padding: clamp(44px, 7vw, 86px) 0 calc(clamp(44px, 7vw, 86px) + env(safe-area-inset-bottom, 0px));
}

.post {
  width: min(100% - 40px, 1160px);
  margin: 0 auto 34px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(24,20,15,0.06);
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
}

.hero-post {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-top: 0;
}

.hero-title,
.title {
  margin-bottom: 1.3rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  color: #15120f;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.hero-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0,0,0,0.1);
}

#lupa img,
#slideshow img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.is-protected-image {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#slideshow {
  min-height: 420px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease;
  display: grid;
  place-items: stretch;
  background: var(--paper-soft);
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide blockquote {
  margin: 0;
  padding: 72px 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.slide blockquote p {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  text-align: left;
}

.slide cite {
  color: var(--text-soft);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.story {
  max-width: 920px;
}

.inline-quote {
  margin: 1.75rem 0 0;
  padding: 1.2rem 0 0 1.2rem;
  border-left: 2px solid rgba(154,116,64,0.35);
  color: #3b342c;
}

#footer {
  background: #090909;
  padding: 28px 20px calc(38px + env(safe-area-inset-bottom, 0px));
  text-align: center;
}

#legal {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  text-align: center;
}

.search-page {
  min-height: 100dvh;
  background: #f5f5f5;
  color: var(--text);
}

.search-results-wrap {
  max-width: 820px;
  margin: 60px auto;
  padding: 0 20px;
}

.search-page-brand {
  margin-bottom: 20px;
  max-width: 100%;
}

.search-page-brand img {
  display: block;
  width: 140px;
  height: auto;
  max-width: 100%;
}

.search-results-wrap h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.search-intro {
  margin: 0 0 1.5rem;
  color: var(--text-soft);
}

.search-back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
}

.search-empty-state {
  display: none;
  margin-top: 1rem;
  color: var(--text-soft);
  font-style: italic;
}

.search-empty-state.is-visible {
  display: block;
}

.search-page #search {
  margin-top: 30px;
}

.search-page .site-search-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 1rem;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.search-page .site-search-input:focus-visible {
  outline: 2px solid #555;
  outline-offset: 2px;
}

.search-page .site-search-input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.search-page .site-search-button {
  display: none;
}

.search-results-wrap .pagefind-ui__search-input {
  border: 1px solid #ccc;
}

.search-results-wrap .pagefind-ui__result-excerpt {
  color: #333;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .search-results-wrap {
    margin: 30px auto;
  }

  .search-page-brand img {
    width: 110px;
  }

  .site-search-form {
    width: 100%;
  }

  .search-modern {
    min-height: 44px;
  }

  .search-modern-button {
    min-width: 44px;
    height: 44px;
  }
}

@media (max-width: 1040px) {
  #rolling-nav {
    width: min(310px, 36vw);
    padding-top: calc(6em + env(safe-area-inset-top));
    padding-inline: 18px;
  }

  .title-stack {
    right: 3.2em;
    max-width: min(50vw, 620px);
  }

  .site-title {
    font-size: clamp(2.25rem, 4.4vw, 4rem);
  }

  .tagline {
    font-size: clamp(0.92rem, 1.3vw, 1rem);
  }

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

@media (max-width: 760px) {
  #logo {
    min-height: auto;
    padding-top: 0;
  }

  .hero-slide,
  .hero-slide.active {
    position: relative;
    min-height: 78vh;
    min-height: 78dvh;
    min-height: 78svh;
  }

  .hero-slide:not(.active) {
    display: none;
  }

  .hero-slide img {
    min-height: 78vh;
    min-height: 78dvh;
    min-height: 78svh;
  }

  #rolling-nav {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 14px;
    align-items: stretch;
  }

  .nav-inner {
    max-width: none;
    padding: 14px 16px;
    background: rgba(8,8,8,0.9);
  }

  .site-search {
    margin-bottom: 0.7rem;
  }

  .site-search--hero {
    width: min(330px, calc(100vw - 30px));
  }

  .nav-kicker {
    margin-bottom: .9rem;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
  }

  #rolling-nav ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  #rolling-nav li + li {
    margin-top: 0;
  }

  #rolling-nav a {
    padding: .35rem 0;
    font-size: .95rem;
    white-space: normal;
    line-height: 1.25;
  }

  #rolling-nav a::before {
    width: 12px;
  }

  .logo-overlay {
    padding: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.38) 36%, rgba(0,0,0,0.72) 100%);
  }

  .title-stack {
    right: 20px;
    left: 20px;
    bottom: 92px;
    max-width: none;
  }

  .site-title {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.7rem);
    white-space: normal;
    text-wrap: balance;
  }

  .hero-meta {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .hero-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 0.85rem;
  }

  .tagline {
    font-size: .95rem;
    white-space: normal;
  }

  #logo .carousel-controls {
    display: none;
  }

  #slideshow .carousel-controls--inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
  }

  #slideshow .carousel-controls--inner .carousel-toggle {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }

  .post {
    width: min(100% - 24px, 1160px);
    padding: 22px 18px;
  }

  .hero-title,
  .title {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  #lupa img,
  #slideshow,
  #slideshow img {
    min-height: 300px;
  }

  .slide blockquote {
    padding: 62px 24px 28px;
  }

  .story p {
    text-align: left;
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}


@media (max-width: 920px) {
  #logo {
    min-height: auto;
  }

  .hero-slide,
  .hero-slide.active {
    position: relative;
    min-height: 70vh;
    min-height: 70dvh;
    min-height: 70svh;
  }

  .hero-slide:not(.active) {
    display: none;
  }

  .hero-slide img {
    min-height: 70vh;
    min-height: 70dvh;
    min-height: 70svh;
  }

  #rolling-nav {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 14px;
    align-items: stretch;
  }

  .nav-inner {
    max-width: none;
    padding: 14px 16px;
    background: rgba(8,8,8,0.9);
  }

  #rolling-nav ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  #rolling-nav li + li {
    margin-top: 0;
  }

  #rolling-nav a {
    padding: .42rem 0;
    font-size: 1rem;
    white-space: normal;
    line-height: 1.25;
  }

  #rolling-nav a::before {
    width: 12px;
  }

  .title-stack {
    right: 24px;
    left: 24px;
    bottom: 92px;
    max-width: calc(100vw - 48px);
    align-items: flex-start;
  }

  .site-title {
    white-space: normal;
    text-wrap: balance;
    text-align: left;
  }

  .tagline {
    white-space: normal;
    text-align: left;
  }

  #logo .carousel-controls {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-title {
    font-size: clamp(2rem, 8.2vw, 2.7rem);
    line-height: 1.08;
  }

  .tagline {
    font-size: 0.9rem;
  }
}

/* ========================= */
/* SEARCH PAGE CLEAN RESET   */
/* ========================= */

body.search-page {
  background: #f5f5f5 !important;
  background-image: none !important;
}

/* rimuove qualsiasi overlay globale */
body.search-page::before,
body.search-page::after {
  content: none !important;
  display: none !important;
}

/* contenitore */
.search-results-wrap {
  max-width: 820px;
  margin: 60px auto;
  padding: 0 20px;
}

/* logo */
.search-page-brand {
  margin-bottom: 20px;
}

.search-page-brand img {
  width: 150px;
  height: auto;
}

/* link ritorno */
.search-back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #666;
  text-decoration: none;
}

/* risultati */
#search {
  margin-top: 30px;
}



