/* ===== CSR SECTION ===== */
.csr-section {
  padding: 96px 0;
}

.csr-main-title {
  font-size: 2.25rem;
  color: #181c20;
  line-height: 125%;
}

.csr-main-desc {
  font-size: 1rem;
  color: #3e4a3c;
  line-height: 150%;
}

/* ===== DIVIDER ROW ===== */
.csr-divider-row {
  display: flex;
  align-items: stretch;
  gap: 32px;
  margin-bottom: 32px;
}

.csr-col {
  flex: 1;
}

/* ===== COL TITLES ===== */
.csr-col-title {
  font-size: 1.25rem;
  color: #181c20;
  line-height: 125%;
}

.csr-col-text {
  font-size: 1rem;
  color: #3e4a3c;
  line-height: 150%;
}

/* ===== BENEFICIARIES LIST ===== */
.target-beneficiary {
  flex: auto;
  width: 30%;
  background: #f9f9f9;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e5e5;
}

.csr-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}

.csr-list li {
  font-size: 0.875rem;
  color: #3e4a3c;
  margin-bottom: 8px;
  line-height: 100%;
}

/* ===== PROJECT COMPONENTS GRID ===== */
.project-component {
  flex: auto;
  width: 65%;
}
.csr-components-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 10px;
}

.csr-component-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #ebf3ee;
  border-radius: 16px;
  padding: 19px 20px;
  font-size: 0.875rem;
  color: #333333;
  line-height: 1.4;
  border: 1px solid #e5e5e5;
}

.csr-component-icon {
  color: #1a7c3e;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ===== GEOGRAPHY ===== */
.csr-geography-label {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 125%;
  color: #181c20;
  text-transform: uppercase;
  width: 100%;
}

.csr-geography-value {
  font-size: 0.875rem;
  color: #3e4a3c;
  font-weight: 400;
  line-height: 20px;
}

/* ===== TIMELINE ===== */
.timeline-container {
  flex: auto;
  width: 65%;
}

.csr-timeline {
  display: flex;
  gap: 12px;
}

.csr-timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #f9fafb;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e5e5;
}

.csr-timeline-item:hover {
  background-color: #ebf3ee;
}

.csr-timeline-active .timeline-term,
.csr-timeline-active .timeline-desc {
  color: #ffffff;
}

.timeline-term {
  font-size: 0.875rem;
  color: #181c20;
  line-height: 100%;
}

.timeline-desc {
  font-size: 0.75rem;
  color: #3e4a3c;
  line-height: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .csr-divider-row {
    flex-direction: column;
  }

  .csr-vertical-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  .csr-col {
    padding: 20px 0;
  }

  .csr-col:last-child {
    padding-left: 0;
  }

  .csr-components-grid {
    grid-template-columns: 1fr;
  }

  .csr-timeline {
    flex-direction: column;
  }

  .csr-main-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .csr-section {
    padding: 56px 0;
  }
  .csr-main-title {
    font-size: 1.3rem;
  }

  .csr-component-item {
    font-size: 0.82rem;
  }

  .timeline-term {
    font-size: 0.82rem;
  }

  .csr-col {
    width: 100%;
  }

  .csr-col.target-beneficiary {
    padding: 20px;
  }
}
