/* Artist Profiles Card - Front-end styles */

.apc-card {
  width: 100%;
  max-width: 960px;
  margin: 20px auto;
  padding: 28px 24px 36px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(160deg, #ff4da0 0%, #a14eff 45%, #4f5bff 100%);
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.apc-header {
  text-align: center;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: clamp(32px, 6vw, 64px);
  margin: 6px 0 28px 0;
}

.apc-card-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media(min-width: 800px) {
  .apc-card-inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 28px;
  }
}

.apc-photo {
  background: rgba(255,255,255,.08);
  border-radius: 18px;
  overflow: hidden;
}

.apc-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.apc-about h3 {
  font-size: clamp(22px, 3vw, 40px);
  margin: 8px 0 6px;
  font-weight: 800;
}

.apc-about p {
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.5;
  margin: 8px 0 0 0;
}

.apc-socials {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.apc-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

@media(min-width: 600px) {
  .apc-actions {
    grid-template-columns: 1fr 1fr;
  }
}

.apc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 16px;
  background: #ff6a3d;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  transition: transform .08s ease, box-shadow .2s ease;
  box-shadow: 0 6px 0 rgba(0,0,0,.25);
}

.apc-btn:hover { transform: translateY(-1px); }
.apc-btn:active { transform: translateY(1px); }

.apc-btn-outline {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.apc-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  fill: currentColor;
}

.apc-error {
  color:#b00020;
  background:#ffe8ec;
  padding:12px 14px;
  border-left:4px solid #b00020;
  border-radius:6px;
}
