.places {
  margin-bottom: 50px;
}
.places ul.place-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-inline-start: 0;
  max-width: 1400px;
  margin: 0 auto;
}
.places ul.place-list li.place {
  border-radius: 30px;
  overflow: hidden;
}
.places ul.place-list li.place .title-row {
  padding: 12px 55px;
  background-color: #e1f0dc;
  position: relative;
  cursor: pointer;
}
.places ul.place-list li.place .title-row h2 {
  font-weight: 400;
  font-family: "SofiaSans", s-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  position: relative;
  padding-left: 20px;
  padding-right: 40px;
  font-size: min(max(20px, 2.6vw), 30px);
  color: #105016;
  margin: 0;
}
.places ul.place-list li.place .title-row h2::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  top: 0;
  width: 3px;
  background-color: #469d2c;
}
.places ul.place-list li.place .content {
  margin-top: 10px;
  display: none;
  padding: 0 20px 20px 20px;
}
.places ul.place-list li.place .content ul {
  padding: 0;
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.places ul.place-list li.place .content ul li h3 {
  font-size: min(max(18px, 2.2vw), 22px);
  font-weight: 600;
  margin: 0;
  color: #464646;
}
.places ul.place-list li.place .content ul li .city-title {
  margin-left: 20px;
  margin-right: 20px;
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.places ul.place-list li.place .content ul li .city-title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #469d2c;
  bottom: 0;
  left: 0;
}
.places ul.place-list li.place .content ul li .city-title i.circled-arrow {
  height: 24px;
  width: 24px;
  right: 0;
}
.places ul.place-list li.place .content ul li .city-title i.circled-arrow::before {
  -webkit-mask-size: 14px;
          mask-size: 14px;
}
.places ul.place-list li.place .circled-arrow {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
  background-color: #469d2c;
  height: 32px;
  width: 32px;
  border-radius: 50%;
}
.places ul.place-list li.place .circled-arrow.rotated {
  transform: translateY(-50%) rotate(180deg);
}
.places ul.place-list li.place .circled-arrow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("/wp-content/themes/sane/assets/images/icons/arrow-down.svg");
          mask-image: url("/wp-content/themes/sane/assets/images/icons/arrow-down.svg");
  -webkit-mask-size: 20px;
          mask-size: 20px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #ffffff;
  transition: transform 0.3s ease-in-out;
}
.places ul.place-list li.place .table {
  display: none;
  overflow-x: auto;
  padding: 15px 0;
}
.places ul.place-list li.place .table table {
  width: 100%;
  border-collapse: collapse;
}
.places ul.place-list li.place .table table th,
.places ul.place-list li.place .table table td {
  padding: 15px;
  font-size: min(max(12px, 1.6vw), 16px);
  color: #464646;
  text-align: left;
}
.places ul.place-list li.place .table table th {
  background-color: #469d2c;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.places ul.place-list li.place .table table td {
  border: 1px solid #469d2c;
}
.places ul.place-list li.place .table table td a {
  color: #469d2c;
  text-decoration: underline;
}
.places ul.place-list li.place .table table td a:hover {
  opacity: 0.8;
}