/* ====== Birraioli — pagina evento ====== */

/* Hero photo grid (1 big left + 3 small right) */
.evento-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 388px;
}
.evento-hero-grid a { display: block; overflow: hidden; border-radius: 14px; }
.evento-hero-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 350ms ease; }
.evento-hero-grid a:hover img { transform: scale(1.05); }
.evento-hero-grid__main { grid-row: 1 / span 2; grid-column: 1; }
.evento-hero-grid__a    { grid-row: 1 / span 2; grid-column: 2; }
.evento-hero-grid__b    { grid-row: 1; grid-column: 3; }
.evento-hero-grid__c    { grid-row: 2; grid-column: 3; }
@media (max-width: 720px) {
  .evento-hero-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 100px 100px; height: auto; }
  .evento-hero-grid__main { grid-column: 1 / span 2; grid-row: 1; }
  .evento-hero-grid__a { grid-row: 2; grid-column: 1; }
  .evento-hero-grid__b { grid-row: 2; grid-column: 2; }
  .evento-hero-grid__c { grid-row: 3; grid-column: 1 / span 2; }
}
.evento-body-sect {
  padding-top: 3px!important;
  padding-bottom: 40px!important;
}
/* Check list (programma, perché scegliere) */
.evento-list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.evento-list-check > li {
  padding-left: 32px;
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  color: #0F1A3D;
}
.evento-list-check > li::before {
  /*content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #33cc00 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12 l5 5 L20 7'/></svg>") center no-repeat;
  background-size: 14px 14px;*/
  content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 19px;
    height: 19px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.evento-list-check > li:first-child::before {
	background-image: url(https://birraioli2.valueservice.cloud/wp-content/uploads/2026/07/prezzo.svg);
}
.evento-list-check > li:nth-child(2)::before {
    background-image: url(https://birraioli2.valueservice.cloud/wp-content/uploads/2026/07/esperienza.svg);
}
.evento-list-check > li:nth-child(3)::before {
    background-image: url(https://birraioli2.valueservice.cloud/wp-content/uploads/2026/07/leader.svg);
}
.evento-list-check > li:nth-child(4)::before {
    background-image: url(https://birraioli2.valueservice.cloud/wp-content/uploads/2026/07/assistenza.svg);
}
.evento-list-check > li:nth-child(5)::before {
    background-image: url(https://birraioli2.valueservice.cloud/wp-content/uploads/2026/07/linea.svg);
}
.evento-list-check > li:nth-child(6)::before {
    background-image: url(https://birraioli2.valueservice.cloud/wp-content/uploads/2026/07/passione.svg);
}


/* Cosa è incluso grid */
.evento-incluso-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.evento-incluso-item {
  font-size: 15px;
  line-height: 1.5;
  color: #0F1A3D;
  display: flex;
  align-items: center;
  gap: 10px;
}
.evento-incluso-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F4F6FB;
  border-radius: 50%;
  font-size: 14px;
  flex: 0 0 28px;
}
@media (max-width: 540px) {
  .evento-incluso-grid { grid-template-columns: 1fr; }
}

/* Tour leader avatars stack */
.evento-tl-stack {
  position: relative;
  width: 220px;
  height: 120px;
  margin: 0 auto;
}
.evento-tl-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  position: absolute;
  box-shadow: 0 4px 12px rgba(15,26,61,0.12);
}
.evento-tl-avatar:nth-child(1) { top: 0;   left: 30px; }
.evento-tl-avatar:nth-child(2) { top: 0;   left: 90px; z-index: 2; }
.evento-tl-avatar:nth-child(3) { top: 0;   left: 150px; }
.evento-tl-avatar:nth-child(4) { top: 50px; left: 60px; z-index: 1; }
.evento-tl-avatar:nth-child(5) { top: 50px; left: 120px; z-index: 1; }

/* SIDEBAR (non sticky) */
.evento-sidebar {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(15,26,61,0.08);
  padding: 18px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.evento-sb-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 18px;
  background: #F4F6FB;
  border-radius: 12px;
  padding: 4px;
}
.evento-sb-tab {
  text-align: center;
  padding: 10px 6px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #676767;
  text-decoration: none !important;
  display: block;
}
.evento-sb-tab.is-active {
  background: #fff;
  color: #33cc00;
  box-shadow: 0 2px 6px rgba(15,26,61,0.08);
}
.evento-sb-title {
  font-size: 20px;
  font-weight: 800;
  color: #0F1A3D;
  margin: 0 0 4px;
  line-height: 1.2;
}
.evento-sb-sub {
  font-size: 13.5px;
  color: #676767;
  margin: 0 0 18px;
}
.evento-sb-field {
  display: flex;
  flex-direction: column;
  background: #F4F6FB;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 10px;
}
.evento-sb-field label {
  font-size: 11.5px;
  color: #676767;
  font-weight: 500;
  margin: 0 0 3px;
  text-transform: none;
  letter-spacing: 0;
}
.evento-sb-field select {
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: #0F1A3D;
  padding: 0;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23676767' stroke-width='2' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>") right 0 center no-repeat;
  padding-right: 18px;
}
.evento-sb-help {
  font-size: 11.5px;
  color: #676767;
  line-height: 1.4;
  margin: -2px 0 12px;
  padding: 0 4px;
}
.evento-sb-toggle {
  display: flex;
  gap: 12px;
  padding: 12px 4px;
  border-top: 1px solid #EEF1F8;
  align-items: flex-start;
  font-size: 13px;
  color: #0F1A3D;
}
.evento-sb-toggle:first-of-type { border-top: 0; }
.evento-sb-toggle p { margin: 2px 0 0; font-size: 11.5px; color: #676767; line-height: 1.4; }
.evento-sb-toggle a { color: #33cc00; }
.evento-sb-switch {
  width: 36px;
  height: 20px;
  appearance: none;
  background: #E1E5EE;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  outline: none;
  margin-left: auto;
  margin-top: 2px;
  flex-shrink: 0;
  transition: background 180ms;
}
.evento-sb-switch:checked { background: #33cc00; }
.evento-sb-switch::before {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 180ms ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.evento-sb-switch:checked::before { left: 18px; }
.evento-sb-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.evento-sb-perperson { font-size: 13px; color: #0F1A3D; font-weight: 500; }
.evento-sb-total { font-size: 26px; font-weight: 800; color: #0F1A3D; }
.evento-sb-cta {
  display: block;
  text-align: center;
  background: #33cc00;
  color: #fff !important;
  padding: 16px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  margin-top: 12px;
  transition: background 150ms;
}
.evento-sb-cta:hover { background: #29a600; }
.evento-sb-foot {
  font-size: 11.5px;
  color: #676767;
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.4;
}
.evento-sb-quote {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15,26,61,0.06);
  padding: 18px;
  margin-top: 18px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.evento-sb-quote__title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0F1A3D;
  display: block;
  text-decoration: none !important;
  margin-bottom: 6px;
}
.evento-sb-quote p { font-size: 12.5px; color: #676767; margin: 0 0 10px; line-height: 1.5; }
.evento-sb-quote__cta { font-size: 13px; font-weight: 600; color: #33cc00; text-decoration: none; }
.evento-sb-faqlink {
  display: block;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(15,26,61,0.05);
  padding: 14px;
  font-weight: 600;
  color: #0F1A3D;
  margin-top: 14px;
  text-decoration: none;
}

/* Tendoni accordion items show subtitle below title */
.evento-tendoni .accordion-title strong { display: block; }
.evento-tendone-sub { display: block; font-size: 12.5px; color: #676767; font-weight: 400; margin-top: 2px; }

/* Google Reviews */
.evento-reviews-box {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(15,26,61,0.06);
}
.evento-reviews-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}
.evento-reviews-title { font-size: 22px; font-weight: 800; color: #0F1A3D; margin: 0 0 4px; }
.evento-reviews-stars { color: #33cc00; font-size: 18px; }
.evento-reviews-gicon {
  text-align: right;
  font-size: 13.5px;
  color: #0F1A3D;
  text-decoration: none;
  font-weight: 700;
}
.evento-reviews-gicon small { font-weight: 500; color: #676767; text-decoration: underline; }
.evento-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 30px;
}
@media (max-width: 720px) { .evento-reviews-grid { grid-template-columns: 1fr; } }
.evento-review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 13.5px; color: #0F1A3D; }
.evento-review-head small { color: #676767; font-size: 11.5px; }
.evento-review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #0F1A3D;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.evento-review-stars { color: #0F1A3D; font-size: 14px; margin-bottom: 6px; letter-spacing: 1px; }
.evento-review-text { font-size: 13.5px; line-height: 1.55; color: #0F1A3D; margin: 0 0 6px; }
.evento-review-more { font-size: 13px; color: #0F1A3D; text-decoration: underline; }

/* FAQ accordion */
.evento-faq-accordion .accordion-title {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #E1E5EE !important;
  border-radius: 0 !important;
  padding: 18px 4px !important;
  font-weight: 700;
  font-size: 15px;
  color: #0F1A3D;
}
