body .oxy-related-posts {
  width: 100%;
  font-family: "Raleway", sans-serif;
}

body .oxy-related-posts * {
  box-sizing: border-box;
}

body .oxy-related-posts-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
}

body .oxy-related-featured {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  background: #f4f9fd;
  box-shadow: 0 20px 52px rgba(38, 100, 174, 0.08);
  text-decoration: none !important;
  isolation: isolate;
}

body .oxy-related-featured img,
body .oxy-related-placeholder {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

body .oxy-related-featured img {
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
}

body .oxy-related-featured:hover img {
  transform: scale(1.045);
  filter: brightness(0.96);
}

body .oxy-related-placeholder {
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(43, 191, 206, 0.13),
      transparent 34%
    ),
    linear-gradient(135deg, #ffffff, #f2f9fd);
}

body .oxy-related-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 4;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2bbfce;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(38, 100, 174, 0.12);
}

body .oxy-related-featured-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.12) 48%,
    rgba(0, 0, 0, 0.58) 100%
  );
  pointer-events: none;
}

body .oxy-related-featured-title {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 34px;
  z-index: 3;
  color: #ffffff;
  font-family: "Champagne Limousines", sans-serif !important;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

body .oxy-related-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
  justify-content: center;
}

body .oxy-related-list-item {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  text-decoration: none !important;
  color: inherit;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

body .oxy-related-list-item:hover {
  transform: translateX(4px);
}

body .oxy-related-list-image {
  position: relative;
  display: block;
  width: 164px;
  aspect-ratio: 1 / 0.9;
  overflow: hidden;
  border-radius: 18px;
  background: #f4f9fd;
  box-shadow: 0 14px 34px rgba(38, 100, 174, 0.07);
}

body .oxy-related-list-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body .oxy-related-list-item:hover .oxy-related-list-image img {
  transform: scale(1.055);
}

body .oxy-related-list-content {
  display: block;
  min-width: 0;
}

body .oxy-related-date {
  display: block;
  margin-bottom: 14px;
  color: rgba(111, 141, 160, 0.48);
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

body .oxy-related-title {
  display: block;
  margin-bottom: 14px;
  color: #2664ae;
  font-family: "Champagne Limousines", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
  transition: color 0.25s ease;
}

body .oxy-related-list-item:hover .oxy-related-title {
  color: #2bbfce;
}

body .oxy-related-readmore {
  display: inline-flex;
  align-items: center;
  color: #2bbfce;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.25s ease;
}

body .oxy-related-list-item:hover .oxy-related-readmore {
  color: #2664ae;
}

@media (max-width: 1100px) {
  body .oxy-related-posts-grid {
    gap: 34px;
  }

  body .oxy-related-featured {
    min-height: 460px;
  }

  body .oxy-related-list-item {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 22px;
  }

  body .oxy-related-list-image {
    width: 140px;
  }

  body .oxy-related-title {
    font-size: 20px;
  }
}

@media (max-width: 880px) {
  body .oxy-related-posts-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body .oxy-related-featured {
    min-height: 420px;
  }

  body .oxy-related-list {
    gap: 24px;
  }
}

@media (max-width: 620px) {
  body .oxy-related-featured {
    min-height: 360px;
    border-radius: 24px;
  }

  body .oxy-related-featured-title {
    left: 24px;
    right: 24px;
    bottom: 26px;
    font-size: 23px;
  }

  body .oxy-related-badge {
    top: 18px;
    right: 18px;
    min-height: 30px;
    padding: 0 14px;
    font-size: 12px;
  }

  body .oxy-related-list-item {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px;
  }

  body .oxy-related-list-image {
    width: 112px;
    border-radius: 16px;
  }

  body .oxy-related-date {
    margin-bottom: 9px;
    font-size: 11px;
  }

  body .oxy-related-title {
    margin-bottom: 10px;
    font-size: 17px;
  }

  body .oxy-related-readmore {
    font-size: 15px;
  }
}
