/* ==========================================================================
   GLOBAL & MOBILE-FIRST STYLES
   ========================================================================== */
.disco-section {
  background-color: #ffffff;
  padding: 60px;
  font-family: 'Plus Jakarta Sans', sans-serif;
/*     border-bottom: 1px solid rgba(2, 73, 146, 0.15); /* Top border from design */
 */
}

.disco-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1300px; 
}

/* --- Header Typography --- */
.disco-header {
  margin-bottom: 40px;
  text-align: center;
}

.disco-pre-heading {
  color: #F70C7D;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.disco-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #F70C7D;
  margin-right: 12px;
  margin-left: 8px;
}

.disco-heading {
  color: #024992;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.disco-highlight {
  color: #01AEFA;
}

/* --- Cards Grid --- */
.disco-grid {
  display: grid;
  grid-template-columns: 1fr; /* Stacked on mobile */
  gap: 24px;
  margin-bottom: 48px;
}

.disco-card {
  background-color: #F5F9FF; 
  border-radius: 4px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* --- Image Icon Wrapper --- */
.disco-icon-box {
  background-color: #024992;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0; 
}

/* Forces uploaded images to be exactly 18x18px */
.disco-icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

/* --- Card Typography --- */
.disco-card-title {
  color: #024992;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.disco-card-desc {
  color: #4A5565;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

.disco-card-desc p {
  margin: 0 0 8px 0;
}
.disco-card-desc p:last-child {
  margin: 0;
}

/* --- CTA Buttons (Matched to Hero Section) --- */
.disco-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.disco-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;         /* Synced with hero */
  padding: 0 30px;      /* Synced with hero */
  border-radius: 3px;
  font-size: 15px;      /* Synced with hero */
  text-decoration: none;
  transition: all 0.3s ease; /* Synced with hero */
  box-sizing: border-box;
  word-wrap: break-word;
}

.disco-btn-primary {
  background-color: #F70C7D;
  color: #ffffff;
  font-weight: 700;
}
.disco-btn-primary:hover {
  background-color: #d6096a;
  color: white !important;
}

.disco-btn-secondary {
  background-color: transparent;
  color: #031E3E;
  border: 2px solid #031E3E; /* Matched Hero's 2px border thickness */
  font-weight: 600;
}
.disco-btn-secondary:hover {
  background-color: white;
  color: #024992;
}

/* ==========================================================================
   TABLET & DESKTOP LAYOUTS
   ========================================================================== */

/* Tablet (>= 768px) */
@media (min-width: 768px) {
  .disco-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .disco-cta-group {
    flex-direction: row;
  }

  .disco-btn {
    width: auto; /* Hugs text on wider screens */
  }
}

/* Desktop (>= 1024px) */
@media (min-width: 1024px) {
  .disco-section {
    padding: 120px 117px; /* 120px top/bottom (box), 117px left/right (inline) */
  }

  .disco-header {
    margin-bottom: 60px;
  }

  .disco-grid {
    grid-template-columns: repeat(3, 1fr); 
    gap: 32px;
    margin-bottom: 60px;
  }

  .disco-card {
    padding: 32px;
  }
}