/**
 * Site-Specific Overrides for EduGrowth Strategy
 *
 * The shared theme (vendor/integralthemes/theme/theme.css) provides all base styles.
 * Only add site-specific customizations here if needed.
 */

/* Add any site-specific overrides below */

/* ============================================
   OUTCOMES BLOCK (for short list items)
   ============================================ */

.outcomes-block {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.outcomes-block h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.outcomes-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.outcomes-block ul li {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  display: block;
  text-align: center;
}

.outcomes-block ul li::before {
  content: '✓';
  display: block;
  width: 40px;
  height: 40px;
  background: #600b68;
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  margin: 0 auto var(--spacing-sm) auto;
}

/* Override service-list defaults for outcomes-block */
.outcomes-block .service-list li {
  padding: 0;
  padding-left: 0;
}

.outcomes-block .service-list li::before {
  position: static;
  left: auto;
}

/* ============================================
   OUTCOMES FULL (full-width with checkmarks)
   ============================================ */

.outcomes-full {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.outcomes-full h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.outcomes-full ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.outcomes-full ul li {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  display: block;
  text-align: center;
}

.outcomes-full ul li::before {
  content: '✓';
  display: block;
  width: 40px;
  height: 40px;
  background: #600b68;
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  margin: 0 auto var(--spacing-sm) auto;
}

/* Override service-list defaults for outcomes-full */
.outcomes-full .service-list li {
  padding: 0;
  padding-left: 0;
}

.outcomes-full .service-list li::before {
  position: static;
  left: auto;
}

/* ============================================
   OUTCOMES GRID (brick masonry layout)
   ============================================ */

.outcomes-grid {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.outcomes-grid h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.outcomes-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--spacing-md);
}

.outcomes-grid ul li {
  background: var(--bg-primary);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

/* First row: 3 items spanning 2 columns each */
.outcomes-grid ul li:nth-child(1) {
  grid-column: 1 / span 2;
}

.outcomes-grid ul li:nth-child(2) {
  grid-column: 3 / span 2;
}

.outcomes-grid ul li:nth-child(3) {
  grid-column: 5 / span 2;
}

/* Second row: 2 items staggered between gaps */
.outcomes-grid ul li:nth-child(4) {
  grid-column: 2 / span 2;
}

.outcomes-grid ul li:nth-child(5) {
  grid-column: 4 / span 2;
}

@media (max-width: 768px) {
  .outcomes-grid ul {
    grid-template-columns: 1fr;
  }
  
  .outcomes-grid ul li {
    grid-column: 1 !important;
  }
}

.outcomes-grid ul li:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.outcomes-grid ul li::before {
  content: '✓';
  display: block;
  width: 40px;
  height: 40px;
  background: #600b68;
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  margin-bottom: var(--spacing-sm);
  flex-shrink: 0;
}

/* Override service-list bullets with checkmarks in outcomes-grid */
.outcomes-grid .service-list li {
  padding: 0;
  padding-left: 0;
}

.outcomes-grid .service-list li::before {
  content: '✓';
  display: block;
  width: 40px;
  height: 40px;
  background: #600b68;
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  margin-bottom: var(--spacing-sm);
  flex-shrink: 0;
  position: static;
  left: auto;
}

/* ============================================
   TRUST STRIP OVERRIDES
   ============================================ */

.trust-strip {
  gap: var(--spacing-md);
  line-height: 1.4;
}

.trust-strip span {
  line-height: 1.4;
}

/* ============================================
/* ============================================
/* ============================================
   PHOTO BACKGROUND SECTION
   ============================================ */

.photo-background-section {
  background-image: url('../assets/IE Plum Pink Arrows.png');
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  padding: var(--spacing-xl) 0;
  position: relative;
}

/* Don't override container - let it use default padding */
.photo-background-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.photo-background-section .content {
  max-width: 600px;
}

.photo-background-section h2,
.photo-background-section p {
  color: white;
  text-align: left;
}

.photo-background-section h2 {
  margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
  .photo-background-section .content {
    max-width: 100%;
  }
}

   HERO ADJUSTMENTS
   ============================================ */

/* Style hero H2 as H3 */
.hero h2 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

/* Reduce hero subtitle size */
.hero-subtitle {
  font-size: 1rem !important;
}

/* Increase outcomes-grid card padding */
.outcomes-grid ul li {
  padding: var(--spacing-md) !important;
  gap: var(--spacing-sm);
}
