.image-related-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.75rem, 8vw, 7rem) 1.5rem;
  color: rgba(226, 231, 241, 0.86);
  background:
    radial-gradient(circle at 15% 8%, rgba(200, 255, 94, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(255, 58, 92, 0.13), transparent 30rem),
    linear-gradient(180deg, #07090e 0%, #0b0f17 48%, #0d111a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  isolation: isolate;
}
.image-related-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.052),
      transparent 34%,
      rgba(255, 255, 255, 0.018)
    ),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.055), transparent 36rem);
  opacity: 0.68;
  pointer-events: none;
  z-index: -1;
}
.image-related-inner {
  position: relative;
  z-index: 1;
  width: min(72rem, 100%);
  margin: 0 auto;
}
.image-related-header {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.image-related-kicker {
  width: fit-content;
  border: 1px solid rgba(200, 255, 94, 0.45);
  border-radius: 999px;
  background: rgba(200, 255, 94, 0.1);
  color: #d6ff7e;
  padding: 0.36rem 0.72rem;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  box-shadow: 0 12px 30px rgba(200, 255, 94, 0.08);
}
.image-related-header h2 {
  margin: 0;
  max-width: none;
  white-space: nowrap;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: -0.052em;
}
.image-related-header p {
  max-width: none;
  color: rgba(226, 231, 241, 0.76);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 0.85rem;
}
.image-related-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(200, 255, 94, 0.44);
  background: rgba(200, 255, 94, 0.12);
  color: #d6ff7e;
  padding: 0 1.15rem;
  text-decoration: none;
  font-weight: 850;
  font-size: 0.92rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition:
    transform var(--transition, 0.2s ease),
    background var(--transition, 0.2s ease),
    border-color var(--transition, 0.2s ease),
    box-shadow var(--transition, 0.2s ease);
}
.image-related-view-all:hover {
  transform: translateY(-1px);
  background: rgba(200, 255, 94, 0.2);
  border-color: rgba(200, 255, 94, 0.62);
  box-shadow: 0 22px 52px rgba(200, 255, 94, 0.12);
  text-decoration: none;
}
.image-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.15rem);
}
.image-related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.034)),
    rgba(255, 255, 255, 0.035);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  transition:
    transform var(--transition, 0.2s ease),
    border-color var(--transition, 0.2s ease),
    background var(--transition, 0.2s ease),
    box-shadow var(--transition, 0.2s ease);
}
.image-related-card::after {
  content: 'View remake →';
  width: fit-content;
  margin-top: auto;
  padding-top: 0.72rem;
  color: #d6ff7e;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  opacity: 0.86;
}
.image-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 255, 94, 0.34);
  background:
    linear-gradient(180deg, rgba(200, 255, 94, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(200, 255, 94, 0.045);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
  text-decoration: none;
}
.image-related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0.95rem;
  margin-bottom: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.image-related-card strong {
  color: #fff;
  font-size: 0.94rem;
  line-height: 1.34;
  letter-spacing: -0.01em;
}
.image-related-card span {
  color: rgba(226, 231, 241, 0.66);
  font-size: 0.8rem;
  line-height: 1.52;
  margin-top: 0.45rem;
  margin-bottom: 0.1rem;
}
@media (max-width: 960px) {
  .image-related-header {
    align-items: flex-start;
  }
  .image-related-header h2 {
    white-space: normal;
  }
  .image-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .image-related-section {
    padding-inline: 1rem;
  }
  .image-related-grid {
    grid-template-columns: 1fr;
  }
}
