.cb-contact {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  margin-top: 100px;
  margin-bottom: 100px;

  .map-container,
  .text-container {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    iframe {
      border-radius: 5px;
      border: none;
    }
  }

  .button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-block-start: 3rem;
  }

  .button-row {
    display: flex;
    gap: 1rem;
  }

  .button-half {
    flex: 1;
  }

  .button-full {
    width: 100%;
  }

  .map-container {
    height: 100%;
    justify-content: center;
  }

  .text-container {
    h2 {
      margin-block-end: 1.5rem;
      line-height: 1.2;
    }
  }
}

/* Tablet & Mobile */

@media only screen and (max-width: 1024px) {
  .cb-contact {
    flex-direction: column;
    gap: 2rem;

    .map-container iframe {
      width: 100%;
      height: 300px;
    }

    .button-group {
      margin-block-end: 6rem;
      margin-block-start: 2rem;
    }

    .button-row:first-child {
      flex-direction: row;
      gap: 1rem;
    }

    .button-row:last-child {
      flex-direction: column;
    }

    .button-half {
      flex: 1;
    }

    .button-full {
      width: 100%;
    }
  }
}
