/*=================
  IMAGE COPY
=================*/

.image-copy {
  padding: var(--space-7) 0px;
  background-color: var(--color-n-white);
  color: var(--color-n-black);
}

.image-copy .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: var(--space-6);
}
.image-copy .container.switchSides .image {
  grid-column: 2;
}
.image-copy .container.switchSides .content {
  grid-column: 1;
}

.image-copy .image {
  grid-column: 1;
  grid-row: 1;
}
.image-copy .image img {
  height: 400px;
  object-fit: cover;
}

.image-copy .content {
  grid-column: 2;
  grid-row: 1;
}
.image-copy .content strong {
  display: block;
  color: var(--color-p);
}
.image-copy .content h2 {
  margin-bottom: var(--space-3);
}
.image-copy .content .copy {
  margin-bottom: var(--space-5);
}
.image-copy .content .copy p:last-of-type {
  margin-bottom: 0px;
}

@media only screen and (max-width: 992px) {
  .image-copy {
    padding: var(--space-6) 0px;
  }
  .image-copy .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .image-copy .image {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
  .image-copy .image img {
    height: 310px;
  }
  .image-copy .content {
    grid-column: 1 !important;
    grid-row: 1 !important;
    max-width: 750px;
  }
  .image-copy .content .copy {
    margin-bottom: var(--space-4);
  }
}

@media only screen and (max-width: 578px) {
  .image-copy .image img {
    height: 250px;
  }
}
