/* LAND_STYLES.CSS */
*,
::before,
::after {
  box-sizing: border-box;
}

/* body {
  margin: unset;
  background-color: #709b90;
  font-family: Helvetica, Arial, sans-serif;
} */

/* .stack > * + * {
  margin-block-start: 1.5em;
} */

:root {
  --gap-size: 1.5rem;
}
.flex-container {
  display: flex;

  /* flex-flow: column wrap; */
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;

  /* place-content: center; */
  /* place-content: start; */
  /* align-items: flex-start; */
  /* align-items: center; */
  width: 90%;
  /* height: 90vh; */
  /* max-width: 60rem; */
  border: 5px solid #3014cb;
  padding: 2em;
  background-color: #d8d6f0;
}

.column-main {
  flex: 1;
}

.column-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-size);
}

.column-sidebar > .tile {
  flex: 1;
}

/* .container {
  max-inline-size: 1080px;
  margin-inline: auto;
} */

.tile {
  padding: 1.5em;
  background-color: #fff;
}

.flex {
  display: flex;
  gap: var(--gap-size);
}

.centered {
  text-align: center;
}

.cta-button {
  display: block;
  background-color: #cc6b5a;
  color: white;
  padding: 0.5em 1em;
  text-decoration: none;
}

.image-style {
width: 90%;
border: 2px solid #000;
/* object-fit: cover;
border-top-left-radius: 10px;
border-top-right-radius: 10px; */
}
