.press-release {
  width: 100%;
  background-color: #f8f9fa;
  padding: 50px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  overflow: hidden;
}

.press-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 15px;
}

.press-header h3 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.press-header p {
  font-size: 16px;
  color: #7f8c8d;
  margin: 0;
}

.press-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.press-slider {
  display: flex;
  animation: slide 90s linear infinite;
  width: fit-content;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

.press-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  min-width: 140px;
  min-height: 60px;
}

.press-item img {
  max-height: 35px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(100%) brightness(100%) opacity(70%);
  transition: all 0.3s ease;
}

.press-item:hover img {
  filter: grayscale(0%) brightness(100%) opacity(100%);
  mix-blend-mode: multiply;
}

/* Belirli logolar için özel ayarlar */
.press-item[data-logo="benzinga"] img {
  max-width: 130px;
}

.press-item[data-logo="fox"] img {
  max-height: 60px;
}

.press-item[data-logo="bloomberg"] img {
  max-height: 60px;
}

.press-item[data-logo="apnews"] img {
  max-height: 60px;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .logo-group {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .press-header h3 {
    font-size: 24px;
  }

  .press-header p {
    font-size: 14px;
  }

  .logo-group {
    gap: 20px;
  }

  .press-item img {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .press-header h3 {
    font-size: 20px;
  }

  .logo-group {
    gap: 15px;
  }

  .press-item img {
    height: 25px;
  }
}

/* Optional: Pause animation on hover */
.press-slider:hover {
  animation-play-state: paused;
}