/* Feature Highlights Section - Modern Poster Style */
:root {
  --fh-primary: #0F172A;
  --fh-secondary: #334155;
  --fh-accent: #EF4444; /* Matches existing red/danger theme */
  --fh-bg-soft: #F8FAFC;
  --fh-card-bg: #FFFFFF;
}

.feature-highlights-section {
  background-color: var(--fh-bg-soft);
  position: relative;
  overflow: hidden;
}

.feature-card-poster {
  background: var(--fh-card-bg);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 
              0 2px 4px -1px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card-poster:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
              0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(239, 68, 68, 0.2); /* Red tint on hover */
}

/* Visual Top Half of the Card */
.poster-visual {
  height: 180px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.poster-visual.visual-dark {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.poster-visual.visual-brand {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%); /* Light red/pink */
}

.poster-icon {
  font-size: 3rem;
  color: #475569;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.feature-card-poster:hover .poster-icon {
  transform: scale(1.1) rotate(-5deg);
}

.poster-visual::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card-poster:hover .poster-visual::after {
  opacity: 1;
}

/* Badge */
.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fh-primary);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-badge.badge-new {
  background: var(--fh-accent);
  color: white;
}

/* Content Bottom Half */
.poster-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.poster-title {
  font-family: 'Comfortaa', sans-serif; /* Matching site font */
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--fh-primary);
}

.poster-desc {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.poster-link {
  font-weight: 600;
  color: var(--fh-accent);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.poster-link:hover {
  text-decoration: underline;
}

/* Abstract decorations */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
