.place-actions {
  align-items: center;
  gap: 2px;
}

.lodging-button {
  margin-right: 4px;
  padding: 5px 7px;
  border: 1px solid #cfdcd3;
  border-radius: 6px;
  background: #f8faf8;
  color: #698074;
  font-size: 12px;
  white-space: nowrap;
}

.lodging-button:hover {
  border-color: #77a38d;
  color: var(--green);
}

.lodging-button.selected {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.place.is-lodging {
  border-color: #8eb09d;
  box-shadow: inset 3px 0 var(--green);
}

.hotel-label {
  display: block;
  margin-bottom: 12px;
  color: #748579;
  font-size: 13px;
}

.hotel-display {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #d9e2db;
  border-radius: 7px;
  background: #f8faf8;
  color: #33473c;
}

.hotel-display strong {
  font-size: 16px;
}

.hotel-display em {
  color: #8a968f;
  font-size: 14px;
  font-style: normal;
}

.hotel-symbol {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 6px;
  background: #e3eee7;
  color: var(--green);
  font-size: 15px;
}

.hotel-box p {
  margin: 9px 0 0;
  color: #89968e;
  font-size: 12px;
}

@media (max-width: 900px) {
  .place {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .place-actions {
    width: 100%;
    justify-content: flex-end;
    padding-left: 42px;
  }
}
