/* 
   SPOXTALE POIE - 'Student Life' Sub-Folder Premium Stylesheet
   Contains styles for Student Support Services, Accommodation, Transport, and Visa layouts.
*/

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

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

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

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

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

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

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

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

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

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

.poie-sl-hero-subtitle {
  font-size: 17px;
  color: var(--poie-sl-light-slate);
  max-width: 1000px;
  line-height: 1.6;
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Content Sections */
.poie-sl-section {
  padding: 0 0 70px 0;
  width: 100%;
  background-color: #ffffff;
}

.poie-sl-intro-block {
  margin-bottom: 40px;
}

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

.poie-sl-desc {
  font-size: 17px;
  color: var(--poie-sl-light-slate);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 1100px;
}

/* Support Service Block Styling */
.poie-sl-service-block {
  margin-bottom: 48px;
}

.poie-sl-service-title {
  font-family: var(--poie-sl-font-headings);
  font-size: 28px;
  font-weight: 800;
  color: var(--poie-sl-dark-navy);
  margin-bottom: 16px;
  text-align: left;
  text-transform: none;
}

/* Inner Cards layout */
.poie-sl-card-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 24px;
  margin-bottom: 24px;
  width: 100%;
}

.poie-sl-card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
  width: 100%;
}

.poie-sl-section-card {
  background: #ffffff;
  border: 1px solid #eef1f6;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 25px rgba(21, 28, 45, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.poie-sl-section-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(21, 28, 45, 0.05);
}

.poie-sl-section-card.tint-pink {
  border-left: 6px solid var(--poie-sl-pink);
}

.poie-sl-section-card.tint-teal {
  border-left: 6px solid var(--poie-sl-teal);
}

.poie-sl-section-card.tint-yellow {
  border-left: 6px solid var(--poie-sl-yellow);
}

.poie-sl-section-card.max-w-900 {
  max-width: 900px;
  width: 100%;
}

/* Pillar style cards like Key Pillars of Our Centre */
.poie-sl-pillar-card {
  background-color: #ffffff;
  border: 1px solid #eef1f6;
  border-radius: 16px;
  padding: 48px 32px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(21, 28, 45, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

.poie-sl-pillar-card.max-w-900 {
  max-width: 900px;
  width: 100%;
}

.poie-sl-pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(21, 28, 45, 0.08);
}

.poie-sl-pillar-card.tint-pink::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background-color: var(--poie-sl-pink);
}

.poie-sl-pillar-card.tint-yellow::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background-color: var(--poie-sl-yellow);
}

.poie-sl-pillar-card.tint-teal::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background-color: var(--poie-sl-teal);
}

.poie-sl-icon-box {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.95rem;
}

.poie-sl-box-pink {
  background-color: rgba(236, 59, 131, 0.1);
  color: var(--poie-sl-pink);
}

.poie-sl-box-yellow {
  background-color: rgba(238, 185, 2, 0.12);
  color: #b69600;
}

.poie-sl-box-teal {
  background-color: rgba(26, 164, 149, 0.1);
  color: var(--poie-sl-teal);
}

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

.poie-sl-pillar-card-desc {
  font-size: 17px;
  color: var(--poie-sl-light-slate);
  line-height: 1.6;
  margin-bottom: 24px;
}

.poie-sl-examples-heading {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--poie-sl-dark-navy);
  margin-bottom: 12px;
  width: 100%;
  text-align: left;
}

.poie-sl-pillar-card .poie-sl-list {
  align-items: flex-start;
  margin: 10px 0 0 0;
  width: 100%;
}

.poie-sl-pillar-card .poie-sl-list-item {
  text-align: left;
}

/* Symmetric 2-column card grid */
.poie-sl-card-symmetric-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 24px;
  margin-bottom: 24px;
  width: 100%;
}

/* Inside card note styling */
.poie-sl-card-note {
  margin-top: auto;
  /* Push note block to the bottom of equal height cards */
  padding: 16px;
  border-radius: 8px;
  font-size: 14.5px;
  line-height: 1.5;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.poie-sl-card-note.accent-pink {
  border-left: 4px solid var(--poie-sl-pink);
  background-color: #fff5f8;
}

.poie-sl-card-note.accent-teal {
  border-left: 4px solid var(--poie-sl-teal);
  background-color: #f0faf9;
}

.poie-sl-card-note.accent-yellow {
  border-left: 4px solid var(--poie-sl-yellow);
  background-color: #fffdf0;
}


.poie-sl-card-subheading {
  font-size: 17px;
  font-weight: 700;
  color: var(--poie-sl-dark-navy);
  margin-top: 0;
  margin-bottom: 16px;
}

/* Lists styling */
.poie-sl-list {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.poie-sl-list-item i {
  font-size: 1.1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

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

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

.poie-sl-list-item i.color-yellow {
  color: #b69600;
}

/* Highlight note boxes */
.poie-sl-note-box {
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.6;
}

.poie-sl-note-box.accent-pink {
  border-left: 4px solid var(--poie-sl-pink);
  background: #fff5f8;
}

.poie-sl-note-box.accent-teal {
  border-left: 4px solid var(--poie-sl-teal);
  background: #f0faf9;
}

.poie-sl-note-box.accent-yellow {
  border-left: 4px solid var(--poie-sl-yellow);
  background: #fffdf0;
}

.poie-sl-note-text {
  margin: 0;
  font-weight: 500;
  color: var(--poie-sl-dark-navy);
}

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

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

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

  .poie-sl-intro-title {
    font-size: 24px;
  }

  .poie-sl-service-title {
    font-size: 24px;
  }

  .poie-sl-card-grid-2,
  .poie-sl-card-symmetric-grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .poie-sl-card-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .poie-sl-section-card {
    padding: 28px;
  }
}

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

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

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

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

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

/* Hide section divider lines */
.poie-sl-body-wrapper hr {
  display: none !important;
}