/* Publishers Struggle ================================================== */
.publishers-struggle {
  padding: 80px 0;
  background: #fff;
}

.struggle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}

.struggle-left h2 {
  color: #FEA557;

/* H1 */
font-family: Inter;
font-size: 56px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 67.2px */
}

.struggle-left p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 22px;
  max-width: 500px;
}

/* List style with arrow */
.struggle-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.struggle-list li {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  position: relative;
  padding-left: 18px;
}

.struggle-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #864df7; /* purple */
  font-size: 1.2rem;
  line-height: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .struggle-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .struggle-left {
    text-align: center;
  }
}

/* Verticals ================================================= */

.verticals {
    position: relative;
  overflow: hidden;
  padding: 30px 0;
  /* background: linear-gradient(90deg, #f7f1ff 0%, #fff 100%); */
  text-align: center;
  z-index: 1;
}

.verticals::before,
.verticals::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.65;
  z-index: 0;
}

.verticals::before {
  left: -160px;
  top: 30%;
  background: rgba(134, 77, 247, 0.64);
}

.verticals::after {
  right: -140px;
  bottom: 30%;
  background: rgba(254, 165, 87, 0.758);
}

.verticals h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.verticals p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Main Grid */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  justify-content: center;
  margin-bottom: 40px;
}

/* Square Card */
.vertical-card {
  aspect-ratio: 1.5 / 1;   /* ✅ हमेशा square */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 50px 0;
  color: #000;
  font-weight: bold;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.vertical-card h3 {
  font-size: 4rem;
  margin: 0;
}

.vertical-card span {
  font-size: 1.2rem;
  font-weight: 400;
}

/* Colors */
.vertical-card.orange {
  background: #ffbf87;
}
.vertical-card.purple {
  background: #d9ccf3;
}


/* Hover effect */
.vertical-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Responsive Breakpoints */

/* Tablet (max-width: 1024px) → 2 cards per row */
@media (max-width: 1024px) {
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .vertical-card h3 {
    font-size: 3rem;
  }
}

/* Mobile (max-width: 600px) → 1 card per row */
@media (max-width: 600px) {
  .verticals-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vertical-card {
    border-radius: 30px 0;  /* छोटा radius ताकि compact लगे */
  }

  .vertical-card h3 {
    font-size: 2.5rem;
  }
}

/* Button */
.verticals-btn {
  margin-top: 20px;
  
}

.verticals-btn a {
  display: inline-block;
  padding: 12px 28px;
  background: #864df7;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.verticals-btn a:hover {
  background: #6d35d9;
}


/* Publishers Growth ======================================== */
.publishers-growth {
  padding: 40px 0;
  background: #fff;
}

.growth-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}

.growth-left h2 {
color: #864DF7;

/* H1 */
font-family: Inter;
font-size: 56px;
font-style: normal;
font-weight: 700;
line-height: 120%;
}

.growth-left p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 22px;
  max-width: 500px;
}

/* List style with arrow */
.growth-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.growth-list li {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  position: relative;
  padding-left: 18px;
}

.growth-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #fea557; /* purple */
  font-size: 1.2rem;
  line-height: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .growth-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .growth-left {
    text-align: center;
  }
}
