/* ----------------- */
/* Info */

#info-section p#title {
  text-align: center;
  margin-bottom: 50px;
}

#info-section p {
  display: block;
  margin: auto;
  max-width: 600px;
}

.gallery-double,
.gallery-single {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: var(--spacer-xlg) auto;
}

.gallery-double img {
  width: calc(50% - 10px);
  height: auto;
  object-fit: cover;
}

.gallery-single img {
  width: 100%;
  height: auto;
}

#toggle-about {
  color: rgb(160 160 160);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: block;
  margin: var(--spacer-md) auto;
}

.accordion-wrapper {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.4s ease-in-out 0.2s,
    opacity 0.6s ease-in-out;
}

.accordion-wrapper.is-open {
  opacity: 1;
  transition:
    max-height 0.4s ease-in-out,
    opacity 0.4s ease-in-out;
}

.accordion-wrapper p {
  padding: 10px 0;
}

.info-grid-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: auto;
  gap: var(--spacer-md);
  max-width: 600px;
}

.info-grid-lists li {
  margin-bottom: var(--spacer-md);
}

.info-grid-lists h2 {
  font-size: var(--font-size-md);
  font-weight: normal;
  margin-bottom: var(--spacer-md);
}

span.title {
  font-style: italic;
}

/* Phone */
@media (max-width: 568px) {
  .info-grid-lists {
    display: block;
    max-width: 80%;
    margin: 0;
  }

  .info-grid-lists ul {
    margin-bottom: var(--spacer-lg);
  }

  .info-grid-lists h2 {
    font-weight: bold;
  }

  .gallery-double {
    flex-direction: column;
  }

  .gallery-double img {
    width: 100%;
  }
}
