/**
 * Laureate Mission & Vision Section Stylesheet
 *
 * @package Laureate
 * @version 1.0.0
 */

:root {
  --evo-blue: #0a2248;
  --evo-green: #1d960c;
}

.evo-mission-vision-section,
.evo-mission-vision-section * {
  box-sizing: border-box;
}

.evo-mission-vision-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: "Inter", "Poppins", "Segoe UI", Arial, sans-serif;
}

.evo-mv-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Tabs */
.evo-tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.evo-tab-btn {
  background: #f4f8fc;
  color: var(--evo-blue);
  border: 1px solid #e6edf5;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s ease;
}

.evo-tab-btn.active {
  background: var(--evo-blue);
  color: #ffffff;
  border-color: var(--evo-blue);
}

/* Content Area */
.evo-tab-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  animation: fadeIn 0.5s ease;
}

.evo-tab-content.active {
  display: grid;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.evo-tab-img img {
  width: 100%;
  height: 400px; /* Uniform height as requested */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(10,34,72,0.1);
}

.evo-tab-text h2 {
  color: var(--evo-blue);
  font-size: 32px;
  margin-bottom: 20px;
}

.evo-tab-text p {
  color: #42526b;
  line-height: 1.8;
  margin-bottom: 20px;
}

.evo-focus-title {
  color: var(--evo-blue);
  margin-bottom: 15px;
}

.evo-focus-list {
  list-style: none;
  padding: 0;
}

.evo-focus-list li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
  font-size: 15px;
  color: #334155;
}

.evo-focus-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--evo-green);
  font-weight: 700;
}

@media (max-width: 768px) {
  .evo-tab-content {
    grid-template-columns: 1fr;
  }
  .evo-tab-img img {
    height: 250px;
  }
}
