.ai-video-entry {
  padding: 32px 0;
  background: #f6f7f3;
}

.ai-video-entry-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(30px, 5vw, 64px);
  color: #f7faf7;
  background:
    linear-gradient(105deg, rgba(6, 25, 38, .98), rgba(9, 42, 56, .94)),
    radial-gradient(circle at 86% 20%, rgba(88, 177, 163, .2), transparent 40%);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(18, 41, 37, .12);
}

.ai-video-entry-card h2 {
  max-width: 720px;
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
}

.ai-video-entry-card p {
  max-width: 680px;
  margin: 0;
  color: #c6d6dc;
  font-size: 17px;
  line-height: 1.75;
}

.ai-video-kicker {
  color: #69d1c1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
}

.ai-video-entry-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: #fff;
  background: #718c42;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.ai-video-entry-button:hover {
  color: #fff;
  background: #607b34;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .ai-video-entry-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .ai-video-entry-button {
    width: 100%;
  }
}
