/* ── Curriculum Download Banner ───────────────────────────────────────────── */
.curriculum-download-section {
  padding: 20px 70px;
  margin-bottom: 50px;
}

.curriculum-download-container {
  background: linear-gradient(90deg, #e32b32 0%, #ae066f 100%);
  border-radius: 100px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(174, 6, 111, 0.2);
  max-width: 1190px;
  margin: 0 auto;
}

.curriculum-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 10px;
}

.curriculum-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.curriculum-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.curriculum-text h3 {
  font-family: "Switzer", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
  letter-spacing: -0.5px;
}

.curriculum-text p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.curriculum-download-container .btn-download {
  background: #f9fafb;
  color: #ae066f;
  border: none;
  padding: 12px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.curriculum-download-container .btn-download:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.curriculum-download-container .btn-download i {
  font-size: 1rem;
}

@media (max-width: 992px) {
  .curriculum-download-section {
    padding: 0 20px;
    margin-bottom: 30px;
  }
  .curriculum-download-container {
    flex-direction: row;
    text-align: left;
    padding: 13px 15px;
    border-radius: 100px;
    gap: 15px;
    height: 80px;
    overflow: hidden;
  }
  .curriculum-content {
    flex-direction: row;
    gap: 12px;
  }
  .curriculum-icon {
    width: 30px;
    height: 30px;
  }
  .curriculum-text h3 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .curriculum-text p {
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .curriculum-download-container .btn-download {
    padding: 10px 18px;
    font-size: 0.8rem;
    width: auto;
  }
}

@media (max-width: 576px) {
  .curriculum-download-container {
    padding: 12px 20px;
    height: 70px;
  }
  .curriculum-icon {
    display: flex;
    align-items: center;
  }
  .curriculum-text p {
    display: none;
  }
  .curriculum-text h3 {
    font-size: 0.9rem;
  }
}
