/* ────────────────────────────────────────
   Benefit cards (What Our Internship Offers)
──────────────────────────────────────── */
.int-benefit-card {
  border-left: 5px solid;
  border-radius: 0 12px 12px 0;
  padding: 22px 20px;
  height: 100%;
  transition: transform .3s, box-shadow .3s;
}

.int-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
}

.int-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.int-benefit-icon i {
  color: #fff;
  font-size: 19px;
}

.int-benefit-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}

.int-benefit-desc {
  font-size: 13.5px;
  line-height: 1.75;
  margin: 0;
  opacity: .85;
}

/* ────────────────────────────────────────
   Track cards (Internship Tracks Available)
──────────────────────────────────────── */
.int-track-card {
  padding: 28px 8px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

/* Category row */
.int-track-cat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--default-color);
  opacity: .7;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.int-track-cat i {
  font-size: 15px;
}

.int-track-badge {
  background: #fb8600;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
  opacity: 1;
}

/* Big coloured title */
.int-track-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.25;
}

/* Meta lines */
.int-track-meta {
  font-size: 14px;
  margin: 0 0 8px;
  color: var(--default-color);
}

/* Apply button — solid coloured pill */
.int-apply-btn {
  display: inline-block;
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid;
  transition: opacity .25s, transform .2s;
}

.int-apply-btn:hover {
  opacity: .85;
  color: #fff;
  transform: translateY(-2px);
}

/* ────────────────────────────────────────
   Who Can Apply — coloured cards
──────────────────────────────────────── */
.int-who-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 5px solid;
  border-radius: 0 12px 12px 0;
  padding: 18px 18px;
  height: 100%;
  transition: transform .3s, box-shadow .3s;
}

.int-who-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .10);
}

.int-who-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.int-who-icon i {
  color: #fff;
  font-size: 20px;
}

.int-who-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  color: var(--default-color);
}

/* ────────────────────────────────────────
   Pill buttons (used in Who Can Apply)
──────────────────────────────────────── */
.int-cta-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Solid orange pill */
.int-cta-fill {
  display: inline-block;
  background: #fb8600;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #fb8600;
  transition: background .25s, transform .2s;
}

.int-cta-fill:hover {
  background: #e07800;
  border-color: #e07800;
  color: #fff;
  transform: translateY(-2px);
}

/* Outline orange pill */
.int-cta-outline {
  display: inline-block;
  background: transparent;
  color: #fb8600;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #fb8600;
  transition: background .25s, color .25s, transform .2s;
}

.int-cta-outline:hover {
  background: #fb8600;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 576px) {
  .int-track-title {
    font-size: 18px;
  }

  .int-cta-fill,
  .int-cta-outline {
    padding: 12px 28px;
    font-size: 14px;
  }
}