/* Alumni Registration Sections - v1.1.0
   Uses WordPress theme's default font (inherits from body) */

.arp-section { padding: 72px 16px; box-sizing: border-box; }
.arp-section *, .arp-section *::before, .arp-section *::after { box-sizing: border-box; }
.arp-container { max-width: 1180px; margin: 0 auto; }

.arp-head { text-align: center; margin-bottom: 56px; }
.arp-eyebrow {
  display: inline-block;
  background: #fff1f2;
  color: #c8102e;
  border: 1px solid #fecdd3;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}
.arp-eyebrow-plain { background: transparent; border: none; padding: 0; margin-bottom: 10px; }
.arp-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #0f172a;
}
.arp-subtitle { font-size: 16px; color: #64748b; margin: 0; }

/* ===== Steps ===== */
.arp-timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.arp-step {
  display: grid;
  grid-template-columns: 88px 1fr 1.1fr;
  align-items: stretch;
  gap: 24px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15,23,42,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.arp-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15,23,42,.09);
}
.arp-step.arp-alt {
  grid-template-columns: 1.1fr 1fr 88px;
}

.arp-step-badge {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e11d48, #c8102e);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(200,16,46,.35);
}
.arp-step.arp-alt .arp-step-badge { grid-column: 3; }

.arp-step-text {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  text-align: left;
  padding: 8px 4px;
}
.arp-step.arp-alt .arp-step-text { grid-column: 2; text-align: right; }

.arp-step-media {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
}
.arp-step.arp-alt .arp-step-media { grid-column: 1; }

.arp-step-small {
  display: inline-block;
  background: #fff1f2;
  color: #c8102e;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.arp-step-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  margin: 0 0 10px;
  color: #0f172a;
  line-height: 1.3;
}
.arp-step-desc {
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 12px;
}
.arp-step-note {
  display: inline-block;
  color: #c8102e;
  font-size: 13px;
  font-weight: 600;
}
.arp-step-media img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15,23,42,.10);
  display: block;
}
.arp-step-media:empty { display: none; }

/* When step has no image, let text span across */
.arp-step.arp-no-media { grid-template-columns: 88px 1fr; }
.arp-step.arp-no-media.arp-alt { grid-template-columns: 1fr 88px; }
.arp-step.arp-no-media .arp-step-media { display: none; }

/* ===== Extras grid ===== */
.arp-extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.arp-extra-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15,23,42,.05);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.arp-extra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15,23,42,.1);
}
.arp-extra-media { aspect-ratio: 16 / 10; overflow: hidden; background: #f8fafc; }
.arp-extra-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.arp-extra-body { padding: 24px; }
.arp-extra-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff1f2, #ffe4e6);
  color: #c8102e;
  font-size: 22px;
  margin-bottom: 14px;
}
.arp-extra-icon::before { font-size: 24px; }
.arp-extra-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #0f172a;
}
.arp-extra-desc {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .arp-extras-grid { grid-template-columns: repeat(2, 1fr); }
  .arp-step,
  .arp-step.arp-alt {
    grid-template-columns: 72px 1fr;
    gap: 16px;
    padding: 20px;
  }
  .arp-step-badge,
  .arp-step.arp-alt .arp-step-badge {
    grid-column: 1;
    grid-row: 1;
    width: 60px; height: 60px;
    font-size: 18px;
    align-self: start;
  }
  .arp-step-text,
  .arp-step.arp-alt .arp-step-text {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 0;
  }
  .arp-step-media,
  .arp-step.arp-alt .arp-step-media {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .arp-step-media img { max-height: 220px; }
}
@media (max-width: 560px) {
  .arp-extras-grid { grid-template-columns: 1fr; }
  .arp-section { padding: 48px 14px; }
}
