html {
  --font-size: 16px;
  --font-weight: 400;
  --font-weight-bold: 700;
  --font-family: 'Inter', Helvetica, Arial, sans-serif;
  --color-text: #000;
  --color-primary: #619a54;
  --color-primary-dark: #2d6845;
  --color-primary-light: #a3cb61;
  --color-complementary: #c8484e;
  --color-background: #f3e9d1;
  --color-grey: #8e90a6;
  --color-grey-dark: #28293d;

  --form-control-height: 2.5rem;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  box-sizing: inherit;
  color: inherit;
}
html {
  box-sizing: border-box;
  height: 100%;
  font-size: var(--font-size);
}
body {
  font-family: var(--font-family);
  font-size: inherit;
  font-weight: var(--font-weight);
  color: var(--color-text);
  background: var(--color-background);

  /* 
    This is necessary to ensure font smoothing works nicely on MacOS/FF
    Otherwise, e.g. bold fonts can look terrible there
  */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100%;
  height: 100%;
}
img {
  display: block;
  max-width: 100%;
  border: 0;
}
button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.h1,
.h2,
.h3,
.h4 {
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5em;
}
.site-wrapper {
  display: grid;
  min-height: 100%;
  grid-template-areas:
    'header'
    'main';
  grid-template-rows: auto 1fr;
}
.site-header {
  grid-area: header;
  min-width: 0;
}
.site-main {
  grid-area: main;
  min-width: 0;
}
.sidebar-left {
  display: grid;
  grid-template-columns: 20rem 1fr;
  grid-column-gap: 2rem;
}
.section {
  padding-top: 5rem;
}
.card {
  --card-padding: 1.5rem;
  --card-border-radius: 0.5rem;

  background: white;
  border-radius: var(--card-border-radius);
  padding: var(--card-padding);
}
.button {
  -webkit-appearance: none;
          appearance: none;
  background: var(--color-primary-dark);
  border: 0;
  color: #fff;
  height: var(--form-control-height);
  display: flex;
  padding: 0.25rem 1rem;
  align-items: center;
  width: 100%;

  transition: background 0.1s ease-in-out;
}
.button:hover {
  background: var(--color-primary);
}
.icon {
  display: block;
  fill: currentColor;
  width: auto;
  height: 1em;
}
.header-bar {
  background: #fff;
  color: #000;
  padding: 1.75rem;
}
.header-bar-logo {
  height: 1.5rem;
  width: auto;
}
.landing-page {
  min-height: 100%;
  background-image: url('/assets/img/bg-1-8350f2473745180c89bdfb5246c23e47.jpg');
  background-size: cover;
  background-position: center center;
  padding-top: 3.75rem;
}
.landing-page-logo {
  width: 12rem;
  max-width: 100%;
  height: auto;
}
.landing-page-title {
  fill: #fff;
  width: 31rem;
  max-width: 100%;
  height: auto;
}
.leaflet-container {
  width: 100%;
  height: 100%;
}
.map {
  height: 400px;
}
.hotel-list-item {
  display: flex;
  flex-wrap: nowrap;
}
.hotel-list-item__image-wrapper {
  width: 200px;
  margin-right: 2rem;
  margin-left: calc(-1 * var(--card-padding));
  margin-top: calc(-1 * var(--card-padding));
  margin-bottom: calc(-1 * var(--card-padding));
}
.hotel-list-item__content {
  flex: 1;
}
.hotel-list-item__image {
  width: 100%;
  height: 100%;
  background-image: var(--image-url);
  background-size: cover;
  background-position: center center;
  border-radius: var(--card-border-radius) 0 0 var(--card-border-radius);
}
.hotel-list-item__title {
  font-weight: bold;
  font-size: 1.25em;
}
.hotel-list-item__price-range {
  color: var(--color-grey);
  font-weight: bold;
  font-size: 1.25em;
  letter-spacing: 0.05em;
}
.hotel-list-item-state-image {
  width: auto;
  height: 1.5em;
}
@media all and (max-width: 750px) {
  .hotel-list-item {
    flex-direction: column;
  }

  .hotel-list-item__image-wrapper {
    margin-bottom: 2rem;
    margin-left: calc(-1 * var(--card-padding));
    margin-top: calc(-1 * var(--card-padding));
    margin-right: calc(-1 * var(--card-padding));
    height: 10rem;
    width: auto;
  }

  .hotel-list-item__image {
    width: 100%;
    height: 100%;
    background-image: var(--image-url);
    background-size: cover;
    background-position: center center;
    border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
  }
}
.tag {
 background: var(--color-background);
 color: #000;
 border-radius: 0.25rem;
 padding: 0.5rem; 
}
.text-bold {
  font-weight: bold;
}
.text-nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.font-size-small-1 {
  font-size: 0.875rem;
}
.font-size-small-2 {
  font-size: 0.625rem;
}
.line-height-1 {
  line-height: 1;
}
.margin-top-auto {
  margin-top: auto;
}
.margin-bottom-auto {
  margin-top: auto;
}
.padding-bottom-3 {
  margin-bottom: 1rem;
}
.display-block {
  display: block;
}
