/* 
   SPOXTALE POIE - 'Admissions' Landing Page Premium Stylesheet
   Contains entry requirement layouts, step timelines, document checklists, and responsive spacing.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --poie-adm-primary-blue: #00a2e8;
  --poie-adm-dark-navy: #151c2d;
  --poie-adm-light-slate: #60687a;
  --poie-adm-pink: #ec3b83;
  --poie-adm-teal: #1aa495;
  --poie-adm-yellow: #ffd700;
  --poie-adm-font-headings: var(--font-headings);
  --poie-adm-font-body: var(--font-body);
}

.poie-adm-body-wrapper {
  font-family: var(--poie-adm-font-body);
  background-color: #ffffff;
  color: var(--poie-adm-dark-navy);
  font-size: 17px;
  line-height: 1.6;
  margin-top: 0 !important;
  overflow-x: hidden;
}

.poie-adm-container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding-left: 6%;
  padding-right: 6%;
  box-sizing: border-box;
}

/* Hero Section */
.poie-adm-hero-sec {
  padding: 40px 0 20px 0;
  background: #ffffff;
  width: 100%;
}

.poie-adm-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13.5px;
  color: var(--poie-adm-light-slate);
  margin-bottom: 24px;
  font-weight: 500;
}

.poie-adm-breadcrumb a {
  text-decoration: none;
  color: var(--poie-adm-light-slate);
  transition: color 0.2s ease;
}

.poie-adm-breadcrumb a:hover {
  color: var(--poie-adm-dark-navy);
}

.poie-adm-hero-title {
  font-family: var(--poie-adm-font-headings);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--poie-adm-dark-navy);
  text-transform: uppercase;
}

.poie-adm-cyan-text {
  color: var(--poie-adm-primary-blue);
}

.poie-adm-hero-subtitle {
  font-size: 17px;
  color: var(--poie-adm-light-slate);
  max-width: 100%;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 16px;
}

/* Sections */
.poie-adm-section {
  padding: 70px 0;
  width: 100%;
}

.poie-adm-bg-alt {
  background-color: #f8fafc;
}

.poie-adm-section-title {
  font-family: var(--poie-adm-font-headings);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--poie-adm-dark-navy);
  margin-bottom: 32px;
  text-align: center;
}

.poie-adm-section-desc {
  font-size: 17px;
  color: var(--poie-adm-light-slate);
  line-height: 1.7;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px auto;
}

/* Academic Requirements Card Grid */
.poie-adm-entry-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  margin-top: 40px;
  align-items: stretch;
}

.poie-adm-card {
  background: #ffffff;
  border: 1px solid #eef1f6;
  border-radius: 16px;
  padding: 44px;
  box-shadow: 0 10px 30px rgba(21, 28, 45, 0.02);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.poie-adm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(21, 28, 45, 0.06);
}

.poie-adm-card.tint-pink {
  border-top: 6px solid var(--poie-adm-pink);
}

.poie-adm-card.tint-teal {
  border-top: 6px solid var(--poie-adm-teal);
}

.poie-adm-card-title {
  font-family: var(--poie-adm-font-headings);
  font-size: 24px;
  font-weight: 800;
  color: var(--poie-adm-dark-navy);
  margin-bottom: 20px;
  line-height: 1.35;
}

.poie-adm-card-desc {
  font-size: 17px;
  color: var(--poie-adm-light-slate);
  line-height: 1.6;
}

.poie-adm-list {
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.poie-adm-list-item {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 17px;
  color: var(--poie-adm-dark-navy);
  line-height: 1.55;
  font-weight: 500;
}

.poie-adm-list-item i {
  font-size: 1.1rem;
  margin-top: 4px;
}

.poie-adm-list-item i.color-pink {
  color: var(--poie-adm-pink);
}

.poie-adm-list-item i.color-teal {
  color: var(--poie-adm-teal);
}

/* English Requirements Quote Box */
.poie-adm-quote-box {
  background-color: #f8fafc;
  border-left: 4px solid var(--poie-adm-teal);
  padding: 28px;
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
  font-style: italic;
  color: var(--poie-adm-teal);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.6;
}

/* Timeline steps */
.poie-adm-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.poie-adm-step-card {
  background: #ffffff;
  border: 1px solid #eef1f6;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(21, 28, 45, 0.01);
  display: flex;
  gap: 20px;
  align-items: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poie-adm-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(21, 28, 45, 0.05);
}

.poie-adm-step-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* Card 1, 4, 7 (Pink) */
.poie-adm-step-card:nth-child(3n+1) .poie-adm-step-badge {
  background-color: var(--poie-adm-pink);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(236, 59, 131, 0.15);
}

/* Card 2, 5, 8 (Yellow) */
.poie-adm-step-card:nth-child(3n+2) .poie-adm-step-badge {
  background-color: var(--poie-adm-yellow);
  color: var(--poie-adm-dark-navy);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.15);
}

/* Card 3, 6 (Green/Teal) */
.poie-adm-step-card:nth-child(3n) .poie-adm-step-badge {
  background-color: var(--poie-adm-teal);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(26, 164, 149, 0.15);
}

.poie-adm-step-content {
  flex-grow: 1;
}

.poie-adm-step-title {
  font-family: var(--poie-adm-font-headings);
  font-size: 20px;
  font-weight: 800;
  color: var(--poie-adm-dark-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.poie-adm-step-desc {
  font-size: 17px;
  color: var(--poie-adm-light-slate);
  line-height: 1.55;
}

/* Documentation grid */
.poie-adm-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

.poie-adm-doc-card {
  background: #ffffff;
  border: 1px solid #eef1f6;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(21, 28, 45, 0.02);
  display: flex;
  flex-direction: column;
}

.poie-adm-doc-card.accent-teal {
  border-top: 5px solid var(--poie-adm-teal);
}

.poie-adm-doc-card.accent-pink {
  border-top: 5px solid var(--poie-adm-pink);
}

.poie-adm-doc-card.accent-yellow {
  border-top: 5px solid var(--poie-adm-yellow);
}

.poie-adm-doc-title {
  font-family: var(--poie-adm-font-headings);
  font-size: 24px;
  font-weight: 800;
  color: var(--poie-adm-dark-navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
}

.poie-adm-doc-title i {
  font-size: 1.25rem;
}

.poie-adm-doc-title i.color-teal {
  color: var(--poie-adm-teal);
}

.poie-adm-doc-title i.color-pink {
  color: var(--poie-adm-pink);
}

.poie-adm-doc-title i.color-yellow {
  color: #b69600;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .poie-adm-container {
    padding-left: 6%;
    padding-right: 6%;
  }
}

@media (max-width: 992px) {
  .poie-adm-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .poie-adm-hero-title {
    font-size: 28px;
  }

  .poie-adm-section-title {
    font-size: 24px;
  }

  .poie-adm-entry-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .poie-adm-docs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .poie-adm-card {
    padding: 30px;
  }

  .poie-adm-doc-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .poie-adm-body-wrapper {
    margin-top: 0 !important;
  }

  .poie-adm-hero-title {
    font-size: 26px;
  }

  .poie-adm-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .poie-adm-step-card {
    padding: 24px;
  }
}

/* Mobile Alignment Match */
@media (max-width: 991px) {

  .poie-adm-hero-sec,
  .poie-adm-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .poie-adm-container {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}