/* =====================
   METODE BELAJAR SEO
===================== */
.learning-section {
  background: radial-gradient(circle at right, rgba(212, 175, 55, .12), transparent 35%), #050505;
  padding: 110px 25px;
}

.learning-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* CONTENT */
.learning-content h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-weight: 900;
  color: white;
  margin-bottom: 25px;
}

.learning-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #bdbdbd;
}

.learning-content strong {
  color: white;
}

/* HIGHLIGHT */
.learning-highlight {
  margin-top: 35px;
  padding: 28px;
  display: flex;
  gap: 18px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(212, 175, 55, .30);
  color: #ddd;
  line-height: 1.7;
}

.learning-highlight span {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d4af37;
  color: #050505;
  font-weight: 900;
}

/* STEPS */
.learning-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.learning-card {
  display: flex;
  gap: 25px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(212, 175, 55, .20);
  transition: .35s;
}

.learning-card:hover {
  transform: translateX(8px);
  border-color: rgba(212, 175, 55, .6);
}

.learning-number {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #d4af37, #fff1a8);
  color: #050505;
  font-weight: 900;
}

.learning-card h3 {
  font-size: 21px;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}

.learning-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .learning-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 520px) {
  .learning-section {
    padding: 80px 20px;
  }
  
  .learning-card {
    flex-direction: column;
  }
}