/* ─── ABOUT ─── */
.about {
  padding: 100px 0 80px;
  background: var(--off-white);
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 1745 / 951;
  height: auto;
  background-color: #eef2f7;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 0 12px rgba(201, 146, 58, 0.2);
  z-index: 10;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 20px rgba(201, 146, 58, 0.15);
}

.play-btn::after {
  content: '';
  border-left: 20px solid var(--white);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.about-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.about-heading {
  margin-bottom: 1rem;
}

.about-text {
  font-size: 0.93rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

.about-bullet {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #4a5568;
}

.bullet-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.read-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.read-more:hover {
  border-color: var(--gold);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
}
