/*
* Next Chapter Recovery - Page Specific Fixes
* Version: 1.0
*/

/* Employment Integration Page Fixes */
.two-column-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}

.two-column-layout .column {
  flex: 1;
  min-width: 300px;
}

.two-column-layout .column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.program-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.highlight-icon {
  flex: 0 0 50px;
  height: 50px;
  background-color: var(--color-primary-light, #ffebdc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.highlight-icon i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.highlight-content {
  flex: 1;
}

.highlight-content h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.highlight-content p {
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .two-column-layout {
    flex-direction: column;
  }
  
  .two-column-layout .column {
    width: 100%;
  }
  
  .two-column-layout .column:first-child {
    margin-bottom: 2rem;
  }
}

/* Fix for program features section */
.program-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-card {
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-light, #ffebdc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon i {
  color: var(--color-primary);
  font-size: 1.75rem;
}

.feature-title {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.feature-description {
  margin-bottom: 0;
}