/* Media Coverage Section - Original Press Cards Design */

.media-coverage {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.media-coverage-header {
  text-align: center;
  margin-bottom: 60px;
}

.media-coverage-header h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}

.media-coverage-header h2 span {
  background-color: #E20775;
  color: #fff;
  padding: 0.1em 0.3em;
  margin-left: 0.2em;
  display: inline-block;
  text-transform: uppercase;
}

.media-coverage-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* News Marquee Container */
.news-marquee {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  height: 420px;
  margin: 40px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

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

.news-marquee.grabbing {
  cursor: grabbing;
}

.news-track {
  display: flex;
  gap: 30px;
  position: absolute;
  animation: newsScroll 55s linear infinite;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

@keyframes newsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.news-track:hover {
  animation-play-state: paused;
}

/* Press Cards */
.press-card {
  flex: 0 0 400px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.press-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255, 27, 107, 0.1), rgba(69, 202, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.press-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 27, 107, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.press-card:hover::before {
  opacity: 1;
}

/* Card Header */
.press-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.publication-logo {
  flex: 0 0 auto;
}

.logo-placeholder {
  font-weight: 700;
  font-size: 0.875rem;
  padding: 8px 16px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.logo-placeholder.vitisphere { background: #2F855A; }
.logo-placeholder.bernard-magrez-start-up-win { background: #805AD5; }
.logo-placeholder.french-tech-bordeaux { background: #D53F8C; }
.logo-placeholder.vinseo { background: #3182CE; }

.publication-date {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Card Content */
.press-card-content {
  margin-top: 16px;
}

.press-headline {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 2.8em;
}

.press-quote {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-cta {
  margin-top: auto;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FF1B6B;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.read-more-btn:hover {
  color: #FF4785;
  gap: 12px;
}

.read-more-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.read-more-btn:hover svg {
  transform: translateX(4px);
}

/* Navigation Controls */
.news-navigation {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.news-nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.news-nav-btn:hover {
  background: rgba(255, 27, 107, 0.2);
  border-color: rgba(255, 27, 107, 0.4);
}

.news-nav-btn svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.news-nav-btn.prev svg {
  transform: rotate(180deg);
}

/* Footer */
.media-coverage-footer {
  text-align: center;
  margin-top: 40px;
}

.press-contact {
  display: inline-block;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
}

.press-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

.press-contact a {
  color: #FF1B6B;
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
  transition: color 0.2s ease;
}

.press-contact a:hover {
  color: #FF4785;
}

/* Responsive Design */
@media (max-width: 1250px) {
  .media-coverage-header h2 {
    font-size: 2.5rem;
  }
  
  .news-track {
    gap: 20px;
  }
  
  .press-card {
    flex: 0 0 350px;
  }
}

@media (max-width: 750px) {
  .media-coverage {
    padding: 60px 0;
  }
  
  .media-coverage-header {
    margin-bottom: 40px;
  }
  
  .media-coverage-header h2 {
    font-size: 2rem;
    padding: 0 20px;
  }
  
  .media-coverage-header p {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .news-marquee {
    height: auto;
    min-height: 420px;
    margin: 30px 0;
    padding: 0 15px;
  }
  
  .press-card {
    flex: 0 0 280px;
    padding: 20px;
    margin-bottom: 10px;
  }
  
  .press-card-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .publication-logo {
    margin-bottom: 5px;
  }
  
  .logo-placeholder {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .press-headline {
    font-size: 1.1rem;
    min-height: auto;
    margin-bottom: 10px;
  }
  
  .press-quote {
    font-size: 0.875rem;
    -webkit-line-clamp: 4;
    margin-bottom: 20px;
  }
  
  .news-track {
    gap: 15px;
  }
  
  .news-navigation {
    gap: 12px;
    margin-top: 25px;
  }
  
  .news-nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .news-nav-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .media-coverage-footer {
    margin-top: 30px;
    padding: 0 20px;
  }
  
  .press-contact {
    padding: 12px 20px;
    width: 100%;
  }
  
  .press-contact p {
    font-size: 0.9rem;
  }
}

/* Ajustements pour très petits écrans */
@media (max-width: 360px) {
  .press-card {
    flex: 0 0 260px;
    padding: 15px;
  }
  
  .media-coverage-header h2 {
    font-size: 1.75rem;
  }
  
  .press-headline {
    font-size: 1rem;
  }
  
  .press-quote {
    font-size: 0.8125rem;
  }
}

/* Animation pause on section hover */
.media-coverage:hover .news-track {
  animation-play-state: paused;
}

/* Subtle newspaper texture overlay */
.press-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, transparent 2px, rgba(255,255,255,0.1) 2px, rgba(255,255,255,0.1) 4px, transparent 4px),
    radial-gradient(circle at 70% 50%, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px, transparent 4px);
  background-size: 30px 30px, 20px 20px;
  pointer-events: none;
  opacity: 0.3;
  border-radius: 12px;
}

/* Enhanced hover effects */
.press-card:hover .press-headline {
  color: #e30075;
  transition: color 0.3s ease;
}

.press-card:hover .logo-placeholder {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.press-card:hover .publication-date {
  background: rgba(227, 0, 117, 0.1);
  color: #e30075;
  transition: all 0.3s ease;
} 