/* ========================================
   INTERVENTIONS STYLES
   ======================================== */

.intervention-section-full {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(27, 60, 83, 0.95) 0%, rgba(42, 74, 95, 0.95) 100%);
}

.intervention-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.intervention-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  min-height: 400px;
}

.intervention-text {
  color: white;
}

.intervention-title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.intervention-description {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: justify;
}

.intervention-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  width: 100%;
  max-width: 600px;
}

.intervention-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  opacity: 0.8;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intervention-img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Responsive interventions */
@media (max-width: 1024px) {
  .intervention-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .intervention-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .intervention-section-full {
    padding: 1.5rem 0;
  }
  .intervention-container {
    padding: 0 1rem;
  }
  .intervention-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .intervention-image {
    height: 300px;
  }
  .intervention-title {
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
  }
  .intervention-description {
    font-size: var(--font-size-base);
    margin-bottom: 1.5rem;
  }
}
