.css-suite-overview {
  background: #dadad8;
  padding: 120px 96px;
}

/* Section header */
.css-suite-section-title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -1%;
  text-align: center;
  color: #0d0a00;
  margin-bottom: 16px;
  font-size: 52px;
}

.css-suite-section-subtitle {
  font-family: Century Gothic, sans-serif;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #0d0a00;
  max-width: 720px;
  margin: 0 auto 64px;
}

/* Main card */
.css-suite-overview-container {
  display: flex;
  justify-content: center;
}

.css-suite-card {
  background: #f2f2f2;
  padding: 64px;
  border-radius: 32px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
  max-width: 960px;
  width: 100%;
}

/* Typography */
.overview-eyebrow {
  font-family: Century Gothic, sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}

.overview-title {
  font-size: 36px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -1%;
  margin-bottom: 24px;
}

.css-feature-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.overview-subtitle {
  font-family: Century Gothic, sans-serif;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 40px;
}

.css-suite-overview-container div.overview-actions ul li {
    line-height:30px;
}
/* Buttons */
.overview-actions {
    display: flex;
    gap: 24px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.btn-demo {
  background: #f26430;
  color: #ffd6c8;
  border: none;
  border-radius: 30px;
  padding: 16px 36px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);

  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 134%;
  letter-spacing: 0%;
  text-align: center;
}

.btn-discovery {
  background: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);

  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 134%;
  letter-spacing: 0%;
  text-align: center;
}

/* Carousels */
.apps-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.apps-carousel {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.carousel-track.reverse {
  animation-direction: reverse;
}

.carousel-track img {
  width: 360px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

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

/* Feature cards */
.css-suite-features {
  max-width: 960px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.css-feature-card {
  background: #f2f2f2;
  padding: 48px;
  border-radius: 32px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
}

/* Analytics */
.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.analytics-stats {
  display: flex;
  gap: 64px;
}

.analytics-chart {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 180px;
}

.chart-bar {
  width: 32px;
  border-radius: 16px;
  background: #e5e5e5;
}

.chart-bar.post {
  background: #f26430;
}

/* Responsive */
@media (max-width: 1024px) {
  .css-suite-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .css-suite-overview {
    padding: 80px 24px;
  }

  .css-feature-card {
    width: calc(100vw - 55px);
  }

  .css-suite-card {
    padding: 40px 24px;
    border-radius: 24px;
  }
}
