.a-tuboart {
  background-color: #f6f5f5;
}

.images-side-a-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.images-side-a-side div:first-of-type,
.images-side-a-side div:last-of-type {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 260px;
}

.images-side-a-side div:first-of-type {
  background-image: url(../images/a-tuboart/a-tuboart-1.webp);
}

.images-side-a-side div:last-of-type {
  background-image: url(../images/a-tuboart/a-tuboart-2.webp);
}

@media screen and (min-width: 768px) {
  .images-side-a-side div:first-of-type,
  .images-side-a-side div:last-of-type {
    height: 400px;
  }
}

@media screen and (min-width: 1024px) {
  .images-side-a-side {
    grid-template-columns: 1fr 1fr;
  }
  .images-side-a-side div:first-of-type,
  .images-side-a-side div:last-of-type {
    height: 525px;
  }
}

/* SECTION WRAPPER */
.section-wrapper {
  padding: 64px 0;
}

.section-wrapper .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1440px;
}

.section-wrapper.inverted img {
  order: 2;
}

.section-wrapper img {
  border-radius: 10px 75px;
}

.section-wrapper__content h2 {
  color: #424242;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -1.44px;
  margin-bottom: 24px;
}

.section-wrapper__content p {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 24px;
}

.section-wrapper__content-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.section-wrapper__content-cards__card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 24px;
  border-radius: 0 16px 0 0;
  box-shadow: 0 0 22.1px 0 rgba(0, 0, 0, 0.15);
  border-left: 2px solid #3565b1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-wrapper__content-cards__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.section-wrapper__content-cards__card span {
  color: #121212;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

@media screen and (min-width: 650px) {
  .section-wrapper__content-cards {
    width: min-content;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 768px) {
  .section-wrapper__content-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .section-wrapper .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
  }
  .section-wrapper img {
    border-radius: 10px 75px;
  }
  .section-wrapper__content h2 {
    font-size: 2.25rem;
  }
}
