/* ==========================================================================
   MTS CIGARS CO. - ABOUT US PAGE STYLES
   ========================================================================== */

.about-hero-section {
  background: radial-gradient(circle, #221c16 0%, #0c0a08 100%);
}

.story-timeline-card {
  border-left: 3px solid var(--mts-gold);
  padding-left: 1.5rem;
}

/* Founders Card & Image Showcase */
.founders-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: #ffffff;
}

.founders-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
  border-color: var(--mts-gold) !important;
}

.founders-img {
  max-height: 540px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.founders-card:hover .founders-img {
  transform: scale(1.02);
}

.founders-overlay {
  background: linear-gradient(
    180deg,
    rgba(12, 10, 8, 0) 0%,
    rgba(12, 10, 8, 0.75) 60%,
    rgba(12, 10, 8, 0.95) 100%
  );
  pointer-events: none;
}
