/* Weekly Reach Section Styles */
.weekly-reach-section {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
		  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.weekly-reach-title {
	font-family: 'roc-grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #7A06D3;
  margin-bottom: 15px;
}

.weekly-reach-description {
	font-family: 'roc-grotesk', sans-serif;
  font-size: 1.2rem;
  color: #4a4a4a;
  margin-bottom: 30px;
}

/* Wrapper for Weekly Reach Chart */
.weekly-reach-chart-wrapper {
  overflow-x: auto;
  white-space: nowrap;
}

.weekly-reach-chart-container {
  min-width: 100%; /* Fit perfectly in desktop view */
  height: 400px;
  margin: 0 auto;
  position: relative;
  display: inline-block; /* Ensure proper scrolling on mobile */


}

/* Desktop View */
@media (min-width: 1024px) {
  .weekly-reach-chart-container {
    min-width: 1100px; /* Adjust to fit all bars perfectly */
    overflow-x: hidden; /* Disable horizontal scroll */
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .weekly-reach-chart-container {
    min-width: 2000px; /* Allow horizontal swipe for mobile */
    height: 400px;
  }

  .weekly-reach-title {
    font-size: 2rem;
  }

  .weekly-reach-description {
    font-size: 1rem;
  }
}
