.marketing-grid {
  margin-top: 20px;
  width: 100%;
  display: flex;
  overflow-x: hidden;
  padding-bottom: 20px;
  position: relative;
  flex: none;
  height: auto;
}

.marketing-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marketing-scroll-horizontal 40s linear infinite;
}

.marketing-track:hover,
.marketing-track:focus-within {
  animation-play-state: paused;
}

@keyframes marketing-scroll-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marketing-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(10px);
  min-width: 240px;
  flex-shrink: 0;
}

.marketing-card:hover {
  background: rgba(30, 41, 59, 0.8);
  transform: translateY(-3px);
  border-color: rgba(255, 206, 0, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.marketing-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 206, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffce00;
  font-size: 22px;
  margin-bottom: 4px;
}

.marketing-title {
  font-family: "GmarketSansBold", sans-serif;
  font-size: 15px;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.5px;
}

.marketing-desc {
  font-family: "GmarketSansLight", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  word-break: keep-all;
}

@media (max-width: 991.98px) {
  .marketing-grid--hide-mobile {
    display: none !important;
  }
}
