.v3-project-hero {
  background: #ffffff;
  padding: 70px 0 30px;
  color: #0b0216;
}

.v3-project-hero-container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.v3-project-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 2, 22, 0.48);
}

.v3-project-breadcrumb span {
  opacity: 0.5;
}

.v3-project-breadcrumb-link {
  color: rgba(11, 2, 22, 0.6);
  transition: color 0.2s ease;
}

.v3-project-breadcrumb-link:hover {
  color: #0b0216;
}

.v3-project-breadcrumb-current {
  color: #0b0216;
  font-weight: 600;
}

.v3-project-hero-banner {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  width: 100%;
  min-height: clamp(340px, 55vw, 620px);
  height: clamp(340px, 55vw, 620px);
  background-color: #f5f2ff;
}

.v3-project-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.v3-project-hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(7, 2, 18, 0.42);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 2;
}

.v3-project-hero-control--prev {
  left: 16px;
}

.v3-project-hero-control--next {
  right: 16px;
}

.v3-project-hero-control:hover {
  background: rgba(7, 2, 18, 0.6);
  transform: translateY(-50%) scale(1.05);
}

.v3-project-hero-control:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.v3-project-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.6s ease;
}

.v3-project-hero-slide.is-active {
  position: relative;
  opacity: 1;
  z-index: 1;
}

.v3-project-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.v3-project-hero-media--image {
  object-fit: cover;
}

.v3-project-hero-media--video {
  object-fit: contain;
  background: rgba(7, 2, 18, 0.85);
}

.v3-project-hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(237, 29, 136, 0.12), rgba(122, 69, 255, 0.12));
}

.v3-project-hero-indicators {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.v3-project-hero-indicators button {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.v3-project-hero-indicators button.active,
.v3-project-hero-indicators button:hover {
  background: #ffffff;
}

.v3-project-hero-title {
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
}

.v3-project-hero-description {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  max-width: min(640px, 90%);
  color: rgba(11, 2, 22, 0.7);
}

.v3-project-hero-image {
  object-fit: cover;
}

.v3-project-hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: clamp(24px, 5vw, 40px);
  align-items: center;
  text-align: center;
  color: #0b0216;
}


.v3-project-body {
  background: #ffffff;
  padding: 80px 0 60px;
}

.v3-project-body-container {
  width: min(860px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.v3-project-richtext {
  color: rgba(15, 5, 35, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.v3-project-richtext h2,
.v3-project-richtext h3,
.v3-project-richtext h4 {
  color: #0b0216;
  margin: 32px 0 16px;
}

.v3-project-richtext p + p {
  margin-top: 16px;
}

.v3-project-richtext ul,
.v3-project-richtext ol {
  margin: 16px 0 16px 24px;
  padding: 0;
}

.v3-project-richtext a {
  color: #ed1d88;
  text-decoration: underline;
}

.v3-project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.v3-project-gallery-item {
  position: relative;
  padding-top: 68%;
  border-radius: 22px;
  overflow: hidden;
  background: #f4f0ff;
}

.v3-project-gallery-image {
  object-fit: cover;
}

.v3-project-cta {
  background: #f8f5ff;
  padding: 90px 0;
  color: #0b0216;
}

.v3-project-cta-container {
  width: min(920px, 90vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.v3-project-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 540px;
}

.v3-project-cta-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(11, 2, 22, 0.55);
}

.v3-project-cta-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
}

.v3-project-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  background: #0b0216;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v3-project-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(11, 2, 22, 0.25);
}

@media (max-width: 900px) {
  .v3-project-cta-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .v3-project-cta-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .v3-project-hero {
    padding: 100px 0 60px;
  }

  .v3-project-hero-banner {
    border-radius: 24px;
  }

  .v3-project-hero-overlay {
    padding: 28px;
  }

  .v3-project-gallery {
    gap: 16px;
  }

  .v3-project-gallery-item {
    border-radius: 18px;
  }

  .v3-project-cta {
    padding: 70px 0;
  }
}
