/* ═══════════════════════════════════════════════
   HOME PAGE ENHANCED - MyJeunesse
   Fichier séparé pour ergonomie
   ═══════════════════════════════════════════════ */

/* ─── HERO BANNER ─── */
.hero-banner {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  margin-bottom: 8px;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroImageFloat 20s ease-in-out infinite alternate;
}

@keyframes heroImageFloat {
  0% { transform: scale(1.05) translateY(0); }
  100% { transform: scale(1.12) translateY(-8px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233,30,99,0.85) 0%, rgba(156,39,176,0.7) 50%, rgba(63,81,181,0.6) 100%);
  backdrop-filter: blur(1px);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 24px;
  color: #fff;
}

.hero-greeting {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.greeting-wave {
  font-size: 1.5rem;
  display: inline-block;
  animation: waveHand 2s ease-in-out infinite;
  transform-origin: 70% 70%;
}

@keyframes waveHand {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0deg); }
}

.greeting-text {
  font-size: 0.9375rem;
  font-weight: 500;
  opacity: 0.9;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero-title-accent {
  color: #FFD54F;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-subtitle {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 9999px;
  width: fit-content;
  font-size: 0.8125rem;
  font-weight: 500;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #69F0AE;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(105,240,174,0.5);
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-floating-icons {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 120px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  animation: floatIcon 6s ease-in-out infinite;
}

.float-icon svg {
  width: 18px;
  height: 18px;
}

.float-icon-1 { top: 15%; right: 20%; animation-delay: 0s; animation-duration: 7s; }
.float-icon-2 { top: 45%; right: 8%; animation-delay: -2s; animation-duration: 8s; }
.float-icon-3 { top: 70%; right: 25%; animation-delay: -4s; animation-duration: 6s; }

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(5deg); }
  66% { transform: translateY(8px) rotate(-3deg); }
}

/* ─── STORIES BAR ─── */
.stories-bar {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), #fff);
  position: relative;
  z-index: 5;
}

.stories-bar::-webkit-scrollbar { display: none; }

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: none;
  background: none;
  padding: 0;
}

.story-item:active { transform: scale(0.92); }

.story-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #E91E63, #F48FB1, #9C27B0);
  position: relative;
}

.story-ring-live { animation: storyRingPulse 2s ease-in-out infinite; }

@keyframes storyRingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,30,99,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(233,30,99,0); }
}

.story-ring-viewed { background: linear-gradient(135deg, #ccc, #ddd); }

.story-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E91E63;
}

.story-avatar svg { width: 26px; height: 26px; }

.story-avatar-live { background: linear-gradient(135deg, #E91E63, #C2185B); color: #fff; }
.story-avatar-info { color: #2196F3; }
.story-avatar-prayer { color: #FF9800; }
.story-avatar-bible { color: #4CAF50; }
.story-avatar-verse { color: #9C27B0; }

.story-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
}

.story-item-live .story-label { color: #E91E63; font-weight: 600; }

/* ─── FEATURED SECTION ─── */
.featured-section {
  padding: 8px 16px 16px;
  animation: fadeSlideUp 0.6s ease-out 0.2s both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.featured-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 4px;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FFD54F, #FF8F00);
  color: #fff;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.featured-badge svg { width: 14px; height: 14px; }

.featured-date { font-size: 0.75rem; color: #999; font-weight: 500; }

.featured-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:active { transform: scale(0.98); }

.featured-image-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-image { transform: scale(1.05); }

.featured-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}

.featured-countdown {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 12px;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 36px;
}

.countdown-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.countdown-label {
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.countdown-sep {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

.featured-content { padding: 16px; }

.featured-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
  line-height: 1.3;
}

.featured-desc {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 14px;
}

.featured-actions { display: flex; gap: 10px; }

.featured-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  flex: 1;
  justify-content: center;
}

.featured-btn svg { width: 16px; height: 16px; }

.featured-btn-primary {
  background: linear-gradient(135deg, #E91E63, #C2185B);
  color: #fff;
  box-shadow: 0 4px 12px rgba(233,30,99,0.3);
}

.featured-btn-primary:active { transform: scale(0.96); box-shadow: 0 2px 8px rgba(233,30,99,0.2); }

.featured-btn-secondary { background: #f8f9fc; color: #555; border: 1px solid #e8eaf0; }
.featured-btn-secondary:active { background: #e8eaf0; }

/* ─── VERSE SECTION ─── */
.verse-section {
  padding: 0 16px 12px;
  animation: fadeSlideUp 0.6s ease-out 0.3s both;
}

.verse-card {
  background: linear-gradient(135deg, #f8f4ff 0%, #fff0f5 100%);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(156,39,176,0.1);
  position: relative;
  overflow: hidden;
}

.verse-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(233,30,99,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.verse-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #E91E63, #9C27B0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.verse-icon svg { width: 20px; height: 20px; }

.verse-content { flex: 1; }

.verse-text {
  font-size: 0.8125rem;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 4px;
}

.verse-ref {
  font-size: 0.75rem;
  color: #E91E63;
  font-weight: 600;
}

.verse-refresh {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(233,30,99,0.08);
  color: #E91E63;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.verse-refresh:hover { background: rgba(233,30,99,0.15); transform: rotate(180deg); }
.verse-refresh svg { width: 16px; height: 16px; }

/* ─── FILTERS ─── */
.filters-section {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, #fff 80%, transparent);
  padding-top: 4px;
  animation: fadeSlideUp 0.5s ease-out 0.35s both;
}

.news-filters {
  display: flex;
  gap: 8px;
  padding: 8px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.news-filters::-webkit-scrollbar { display: none; }

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1.5px solid #e8eaf0;
  background: #fff;
  color: #555;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.filter-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E91E63, #C2185B);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.filter-chip.active {
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(233,30,99,0.25);
  transform: translateY(-1px);
}

.filter-chip.active::before { opacity: 1; }
.filter-chip svg { width: 14px; height: 14px; position: relative; z-index: 1; }
.filter-chip { position: relative; z-index: 1; }
.filter-chip:active { transform: scale(0.95); }

/* ─── NEWS FEED ─── */
.news-feed-section { padding-top: 8px; }

.news-feed {
  padding: 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ─── NEWS CARD (ENHANCED) ─── */
.news-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeSlideUp 0.6s ease-out both;
  opacity: 0;
}

.news-card:nth-child(1) { animation-delay: 0.4s; }
.news-card:nth-child(2) { animation-delay: 0.55s; }
.news-card:nth-child(3) { animation-delay: 0.7s; }
.news-card:nth-child(4) { animation-delay: 0.85s; }

.news-card.visible { opacity: 1; }
.news-card:active { transform: scale(0.985); }

.news-card-visual {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-img { transform: scale(1.05); }

.news-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-card:hover .news-card-img-overlay { opacity: 1; }

/* ─── Card Badges ─── */
.news-card-pinned {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #FFD54F, #FF8F00);
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(255,143,0,0.3);
}

.news-card-pinned svg { width: 12px; height: 12px; }

.news-card-urgent {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #f44336, #d32f2f);
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(244,67,54,0.3);
  animation: urgentPulse 2s ease-in-out infinite;
}

@keyframes urgentPulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(244,67,54,0.3); }
  50% { box-shadow: 0 2px 16px rgba(244,67,54,0.5); }
}

.news-card-urgent svg { width: 12px; height: 12px; }

/* ─── Actions Overlay ─── */
.news-card-actions-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.news-card:hover .news-card-actions-overlay,
.news-card:active .news-card-actions-overlay {
  opacity: 1;
  transform: translateY(0);
}

.news-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.news-action-btn:active { transform: scale(0.92); background: rgba(0,0,0,0.7); }
.news-action-btn svg { width: 14px; height: 14px; }

.heart-svg .heart-path { transition: all 0.3s ease; }
.heart-svg.liked .heart-path { fill: #f44336; stroke: #f44336; }

/* ─── Card Header ─── */
.news-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 0;
}

.news-card-tags { display: flex; gap: 6px; align-items: center; }

.news-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.news-card-tag svg { width: 12px; height: 12px; }

.tag-annonces { background: rgba(76,175,80,0.1); color: #4CAF50; }
.tag-news     { background: rgba(33,150,243,0.1); color: #2196F3; }
.tag-inspiring{ background: rgba(156,39,176,0.1); color: #9C27B0; }
.tag-meeting  { background: rgba(233,30,99,0.08); color: #E91E63; }
.tag-easter   { background: rgba(76,175,80,0.1); color: #4CAF50; }
.tag-support  { background: rgba(255,152,0,0.1); color: #FF9800; }
.tag-family   { background: rgba(156,39,176,0.08); color: #9C27B0; }

.news-card-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #999;
}

.news-card-date svg { width: 12px; height: 12px; }

/* ─── Card Body ─── */
.news-card-body { padding: 10px 16px 14px; }

.news-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
  line-height: 1.4;
}

.news-card-excerpt {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.55;
}

/* ─── Expand Section ─── */
.news-card-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.news-card-expand.expanded { max-height: 1000px; }

.news-card-fulltext {
  padding-top: 12px;
  border-top: 1px solid #e8eaf0;
  margin-top: 12px;
}

.news-card-fulltext p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.news-quote {
  background: linear-gradient(135deg, rgba(233,30,99,0.05), rgba(156,39,176,0.05));
  border-left: 3px solid #E91E63;
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  margin: 12px 0;
}

/* ─── Meeting Options ─── */
.news-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0;
}

.news-option-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fc;
  padding: 12px;
  border-radius: 12px;
}

.news-option-icon { font-size: 1.5rem; }

.news-option-info { display: flex; flex-direction: column; }
.news-option-info strong { font-size: 0.8125rem; color: #1a1a2e; }
.news-option-info span { font-size: 0.75rem; color: #999; }

/* ─── Price Cards ─── */
.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0;
}

.price-card {
  background: #f8f9fc;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.price-card:active { transform: scale(0.97); }
.price-card-girls { border-color: rgba(233,30,99,0.15); background: linear-gradient(135deg, rgba(233,30,99,0.04), rgba(233,30,99,0.08)); }
.price-card-boys  { border-color: rgba(33,150,243,0.15); background: linear-gradient(135deg, rgba(33,150,243,0.04), rgba(33,150,243,0.08)); }
.price-card-icon { font-size: 2rem; margin-bottom: 6px; }
.price-card-title { font-size: 0.75rem; font-weight: 600; color: #555; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 4px; }
.price-card-amount { font-size: 1.5rem; font-weight: 800; color: #E91E63; line-height: 1; }
.price-card-boys .price-card-amount { color: #2196F3; }
.price-card-detail { font-size: 0.6875rem; color: #999; margin-top: 4px; }

/* ─── Deadline Alert ─── */
.deadline-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(244,67,54,0.08), rgba(255,152,0,0.08));
  border: 1px solid rgba(244,67,54,0.15);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 12px 0;
}

.deadline-alert svg { width: 24px; height: 24px; color: #f44336; flex-shrink: 0; }
.deadline-alert div { display: flex; flex-direction: column; }
.deadline-alert strong { font-size: 0.8125rem; color: #f44336; }
.deadline-alert span { font-size: 0.75rem; color: #999; }

/* ─── Contact Box ─── */
.contact-box { background: #f8f9fc; border-radius: 12px; padding: 14px; margin-top: 12px; }
.contact-label { font-size: 0.75rem; color: #999; font-weight: 500; margin-bottom: 8px; display: block; }
.contact-person { display: flex; align-items: center; gap: 10px; }
.contact-avatar { font-size: 1.5rem; }
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #E91E63;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  margin-top: 4px;
}
.contact-phone svg { width: 16px; height: 16px; }

/* ─── Donation Highlight ─── */
.donation-highlight {
  text-align: center;
  background: linear-gradient(135deg, rgba(233,30,99,0.06), rgba(255,152,0,0.06));
  border-radius: 14px;
  padding: 20px;
  margin: 14px 0;
  border: 1px solid rgba(233,30,99,0.1);
}

.donation-amount {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #E91E63, #FF8F00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.donation-label { font-size: 0.875rem; color: #555; margin-top: 4px; }

/* ─── Event Highlight ─── */
.event-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(156,39,176,0.06), rgba(233,30,99,0.06));
  border-radius: 14px;
  padding: 16px;
  margin: 14px 0;
}

.event-icon { font-size: 2rem; }
.event-info { display: flex; flex-direction: column; }
.event-info strong { font-size: 0.9375rem; color: #1a1a2e; }
.event-info span { font-size: 0.8125rem; color: #999; }

.blessing-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(255,215,0,0.08), rgba(233,30,99,0.06));
  border-radius: 12px;
  padding: 14px;
  margin-top: 12px;
  font-size: 0.8125rem;
  color: #555;
}

/* ─── Read More Button ─── */
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #E91E63;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0 0;
  margin-top: 4px;
  transition: all 0.2s ease;
}

.news-read-more:hover { opacity: 0.8; }

.read-more-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.news-read-more.expanded .read-more-icon { transform: rotate(180deg); }

/* ─── Feed End ─── */
.feed-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  position: relative;
}

.feed-end-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E91E63, #F48FB1);
  border-radius: 9999px;
  margin-bottom: 16px;
}

.feed-end-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(233,30,99,0.08), rgba(156,39,176,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E91E63;
  margin-bottom: 10px;
}

.feed-end-icon svg { width: 20px; height: 20px; }

.feed-end-text { font-size: 0.9375rem; font-weight: 600; color: #1a1a2e; }
.feed-end-sub  { font-size: 0.75rem; color: #999; margin-top: 4px; }
.bottom-spacer { height: 20px; }

/* ─── Like Animation ─── */
@keyframes likeBurst {
  0% { transform: scale(1); }
  25% { transform: scale(1.3); }
  50% { transform: scale(0.95); }
  100% { transform: scale(1); }
}
.like-anim { animation: likeBurst 0.4s ease; }

/* ─── Particle Effect ─── */
@keyframes particleFloat {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-100px) scale(0); }
}

/* ─── RESPONSIVE ─── */
@media (min-width: 768px) {
  .hero-banner { height: 300px; border-radius: 0 0 32px 32px; }
  .hero-title { font-size: 2.75rem; }
  .hero-content { padding: 32px 40px; }
  .featured-image-wrapper { height: 220px; }
  .news-card-visual { height: 220px; }
  .news-feed { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .featured-section, .verse-section { max-width: 800px; margin: 0 auto; width: 100%; }
  .news-feed-section { max-width: 800px; margin: 0 auto; }
}

@media (min-width: 1024px) {
  .hero-banner { height: 340px; }
  .hero-title { font-size: 3rem; }
}

/* ─── RÉDUCTION DE MOUVEMENT ─── */
@media (prefers-reduced-motion: reduce) {
  .hero-image, .greeting-wave, .hero-badge-dot, .float-icon,
  .story-ring-live, .news-card-urgent, .verse-refresh { animation: none !important; }
  .news-card { animation: none !important; opacity: 1 !important; }
  .featured-section, .verse-section, .filters-section { animation: none !important; }
}
