/* ===== ABOUT.CSS ===== */

.about-intro-section { background: #111111; }
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text p {
  font-size: 20px;
  font-style: normal;
  line-height: 1.9;
  margin-bottom: 22px;
  color: rgba(255,255,255,.9);
}
.about-img-wrap { background: #1a1a1a; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }

.vm-section { background: #000; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.vm-card { background: #1a1a1a; overflow: hidden; aspect-ratio: 4/3; }
.vm-card img { width: 100%; height: 100%; object-fit: cover; }

.corevals-section { background: #111111; }
.corevals-img { background: #1a1a1a; overflow: hidden; }
.corevals-img img { width: 100%; max-height: 380px; object-fit: cover; }

.division-section { background: #000; }
.division-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.division-card { position: relative; background: #1a1a1a; overflow: hidden; aspect-ratio: 4/3; }
.division-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.division-card:hover img { transform: scale(1.05); }
.division-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.7);
  padding: 10px 14px;
  font-family: 'Caesar Dressing', cursive;
  font-size: 28px;
  font-style: normal;
  letter-spacing: .06em;
  color: #fff;
}

@media (max-width: 768px) {
  .about-intro   { grid-template-columns: 1fr; gap: 32px; }
  .vm-grid       { grid-template-columns: 1fr; }
  .division-grid { grid-template-columns: 1fr; }
}
.vm-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.vm-card-title {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.vm-card-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1.1rem;  
}

.vm-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  counter-reset: mission-counter;
  font-size: 1.1rem; 
}

.vm-card-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  counter-increment: mission-counter;
}

.vm-card-list li::before {
  content: counter(mission-counter) ".";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 700;
}

.corevals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .corevals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .corevals-grid {
    grid-template-columns: 1fr;
  }
}

.coreval-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: left;
}

.coreval-letter {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.coreval-title {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.coreval-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.6;
}

.social-list {
  display: flex;
  flex-direction: column; /* atau row kalau mau sejajar horizontal semua item */
  gap: 12px;
  list-style: none;
}

.social-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.social-icon {
  font-size: 20px;
  width: 24px; /* biar semua icon punya lebar sama, teks jadi rata */
  text-align: center;
}

.social-list a:hover {
  color: #880000; /* opsional, warna hover */
}

.social-list a span {
  font-family: "Caesar Dressing", cursive;
}