.oxy-results-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.oxy-results-card {
  display: grid;
  grid-template-columns: minmax(280px, 38%) 1fr;
  align-items: stretch;
  overflow: visible;
  min-height: 235px;
}

.oxy-results-image {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  border-radius: 28px 0 0 28px;
  background: #f5f9fd;
  z-index: 1;
}

.oxy-results-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 235px;
  object-fit: cover;
}

.oxy-results-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: -34px;
  padding: 42px 58px 42px 72px;
  border: 1px solid rgba(38, 100, 174, 0.14);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(38, 100, 174, 0.035);
}

.oxy-results-content h3 {
  margin: 0 0 18px;
  font-family: "Champagne", "Raleway", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2664ae;
}

.oxy-results-text {
  max-width: 760px;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #6f8da0;
}

.oxy-results-text p {
  margin: 0 0 12px;
}

.oxy-results-text p:last-child {
  margin-bottom: 0;
}

.oxy-results-text strong,
.oxy-results-text b {
  font-weight: 700;
  color: #6f8da0;
}

/* Tablet */
@media (max-width: 980px) {
  .oxy-results-card {
    grid-template-columns: 34% 1fr;
    min-height: 210px;
  }

  .oxy-results-image,
  .oxy-results-img {
    min-height: 210px;
  }

  .oxy-results-content {
    margin-left: -26px;
    padding: 34px 36px 34px 54px;
    border-radius: 26px;
  }
}

/* Mobil */
@media (max-width: 680px) {
  .oxy-results-list {
    gap: 24px;
  }

  .oxy-results-card {
    display: block;
    min-height: unset;
  }

  .oxy-results-image {
    min-height: unset;
    aspect-ratio: 1.65 / 1;
    border-radius: 28px 28px 0 0;
  }

  .oxy-results-img {
    min-height: unset;
    height: 100%;
  }

  .oxy-results-content {
    margin-left: 0;
    margin-top: -30px;
    padding: 54px 30px 34px;
    border-radius: 34px 34px 28px 28px;
  }

  .oxy-results-content h3 {
    font-size: 30px;
  }

  .oxy-results-text {
    font-size: 17px;
  }
}
