/* VisibilityAds.css - Responsive Banner */
.visibility-banner {
  width: 100%;
  height: 70px;
  margin: 0 auto;
  background: linear-gradient(90deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 16px 24px;
  box-sizing: border-box;
  overflow: hidden;
}

.banner-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

.banner-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 200px;
  height: 100%;
}

/* Headline Section */
.headline {
  flex: 1.2;
  min-width: 250px;
  justify-content: flex-start;
}

.headline h1 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin: 0;
  padding: 0;
}

.headline span {
  color: #1e40af;
  font-weight: 700;
}

/* Subheadline Section */
.subheadline {
  flex: 1;
  min-width: 220px;
  justify-content: flex-start;
}

.subheadline p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

/* Dashboard Preview Section */
.dashboard-preview {
  flex: 0.8;
  min-width: 140px;
  justify-content: center;
}

.dashboard-preview-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* CTA Section */
.cta-section {
  flex: 0 0 auto;
  justify-content: center;
}

.cta-btn {
  background: #0f172a;
  color: white;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}

/* Tablet Responsive - 1024px and below */
@media (max-width: 1024px) {
  .visibility-banner {
    height: 100px;
    padding: 14px 20px;
  }

  .banner-content {
    gap: 14px;
  }

  .headline {
    flex: 1;
    min-width: 180px;
  }

  .headline h1 {
    font-size: 1.1rem;
  }

  .subheadline {
    flex: 1;
    min-width: 160px;
  }

  .subheadline p {
    font-size: 0.9rem;
  }

  .dashboard-preview {
    flex: 0.7;
    min-width: 100px;
  }

  .dashboard-preview-img {
    max-width: 140px;
  }
}

/* Small Tablet / Large Mobile - 768px and below */
@media (max-width: 768px) {
  .visibility-banner {
    height: 90px;
    padding: 12px 16px;
  }

  .banner-content {
    gap: 10px;
  }

  .headline {
    flex: 0.95;
    min-width: 120px;
  }

  .headline h1 {
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .subheadline {
    flex: 0.95;
    min-width: 110px;
  }

  .subheadline p {
    font-size: 0.8rem;
  }

  .dashboard-preview {
    flex: 0.6;
    min-width: 80px;
  }

  .dashboard-preview-img {
    max-width: 100px;
  }

  .cta-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
  .visibility-banner {
    height: 85px;
    padding: 10px 12px;
  }

  .banner-content {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .banner-section {
    min-width: auto;
  }

  .headline {
    flex: 0.85;
    min-width: 80px;
  }

  .headline h1 {
    font-size: 0.85rem;
    line-height: 1.1;
  }

  .subheadline {
    flex: 0.9;
    min-width: 90px;
  }

  .subheadline p {
    font-size: 0.75rem;
  }

  .dashboard-preview {
    flex: 0.5;
    min-width: 60px;
  }

  .dashboard-preview-img {
    max-width: 80px;
  }

  .cta-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
    white-space: normal;
    line-height: 1.2;
  }
}