section {
  padding: 10svh 0;
}

section:last-child {
  border-bottom: none;
}

.videos-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.video-project-section {
  margin-bottom: 3rem;
  border-bottom: 1px solid #333;
  padding-bottom: 2rem;
}

.video-project-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.video-project-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.1rem;
  font-weight: 600;
  padding-bottom: 5rem;
}

.video-project-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.video-project-title a:hover {
  color: #aaa;
}

.video-project-subtitle {
  color: #aaa;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 0.95rem;
}

.grandchildren-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 0;
  align-items: start;
}

.grandchild-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease;
  width: 100%;
  min-width: 0;
  padding-bottom: 5rem;
}

.grandchild-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.grandchild-item:hover {
  transform: translateY(-2px);
}

.grandchild-image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  min-height: 0;
}

.grandchild-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.grandchild-item:hover .grandchild-image {
  transform: scale(1.02);
}

.grandchild-placeholder {
  width: 100%;
  height: 100%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.5rem;
  border-radius: 6px;
}

.grandchild-title {
  font-size: 1rem;
  margin-top: 0.25rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  width: 100%;
  text-align: center;
}

.grandchildren-more-link {
  text-align: center;
  padding-top: 3rem;
}

@media (max-width: 900px) {
  .grandchildren-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .grandchild-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
  }

  .video-project-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .grandchildren-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .grandchild-title {
    font-size: 0.9rem;
  }

  .video-project-title {
    font-size: 1rem;
  }
}