/* =========================
   SALARY EXPECTATIONS
   ========================= */

.salary-section {
  background: #ffffff;
  padding: 80px 0;
}

.salary-wrap {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 60px 0;
}

/* TITLE */
.salary-title {
  text-align: center;
  color: #2c3e50;
  font-size: 32px;
  margin-bottom: 20px;
}

/* GRID */
.salary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* CARD */
.salary-card {
  background-image: linear-gradient(180deg, #0B73D00F 0%, #0B73D005 100%);
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-top: 6px solid #317ffe;
  transition: all 0.4s ease;
}

.salary-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(49,127,254,0.25);
}

/* TEXT */
.salary-level {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.salary-amount {
  font-size: 36px;
  font-weight: 700;
  color: #317ffe;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .salary-card {
    padding: 40px 28px;
  }

  .salary-amount {
    font-size: 30px;
  }
}
