/* Hero background */
.hero.pages-hero {
  background: url('/assets/images/hero-testimonial.jpg') no-repeat center center/cover;
  height: 60vh;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Magazine-style block */
.magazine-block {
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

.article-img {
  max-height: 400px;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
}

.article-text {
  padding: 1rem 2rem;
}

.article-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.article-author {
  font-style: italic;
  color: #888;
  margin-bottom: 1rem;
}

.article-divider {
  width: 80px;
  border-top: 3px solid var(--bs-primary);
  margin-bottom: 1rem;
}

.article-story {
  font-size: 1.05rem;
  text-align: justify;
}

/* Video placeholder */
.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: start;
}

.video-frame {
  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 1rem;
  width: 100%;
  max-width: 300px;
  text-align: center;
  background: #f9f9f9;
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-frame:hover {
  background: #f1f1f1;
}


/* careers */
#drop-cv form input, #drop-cv form button {
  border-radius: 8px;
}
.card-title {
  font-weight: 600;
}
.card {
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
