/* =========================
   ABOUT PAGE BASE
   ========================= */

.about-section {
  padding: 80px 0;
  border-bottom: 1px solid #3a3a3a;
}

.about-section:last-child {
  border-bottom: none;
}

.section-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #666;
  margin-bottom: 18px;
}

.about-section h1,
.about-section h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.about-section p {
  max-width: 850px;
  font-size: 16px;
  line-height: 1.9;
  color: #bdbdbd;
  margin-bottom: 24px;
}


/* =========================
   LABELS GRID (reuse style)
   ========================= */

.labels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.label-card {
  border: 1px solid #1a1a1a;
  padding: 34px 30px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.label-card:hover {
  border-color: #444;
  transform: translateY(-3px);
}

.label-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 22px;
  text-transform: uppercase;
  line-height: 1.3;
}

.label-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #bdbdbd;
  margin-bottom: 30px;
}

.label-card .button {
  width: 220px;
}


/* =========================
   ARTISTS GRID
   ========================= */

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.artist-card {
  text-decoration: none;
  color: #fff;
  border: 1px solid #1a1a1a;
  overflow: hidden;
}

.artist-card img {
  width: 100%;
  display: block;
}

.artist-meta {
  padding: 14px;
}

.artist-meta h3 {
  font-size: 14px;
  letter-spacing: 2px;
}

.artist-meta p {
  font-size: 12px;
  color: #888;
}


/* =========================
   TEAM GRID
   ========================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.team-card {
  border: 1px solid #1a1a1a;
  text-align: center;
  padding-bottom: 20px;
}

.team-card img {
  width: 100%;
}

.team-card h3 {
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 2px;
}

.team-card p {
  font-size: 12px;
  color: #888;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 1000px) {

  .artists-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .about-section {
    padding: 55px 22px;
  }

  .labels-grid {
    grid-template-columns: 1fr;
  }

  .artists-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

}