/* ===========================================
   ARTIST BLOCK COMPONENT
   Photo + bio + gallery sentence + links.
   Used by T14 artwork pages and T26 exhibition pages.
   Lifted from default.css (so T26 pages, which load
   component CSS via detect_and_link_component_css,
   pick up the same styling without depending on
   default.css being globally loaded).
   =========================================== */

.artist-block {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 32px 20px;
  margin: 32px 0;
}

.artist-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.artist-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 0 0 auto;
}

.artist-info {
  flex: 1 1 auto;
}

.artist-info strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
  color: #111;
}

.artist-info p {
  font-size: 14px;
  color: #555;
  margin: 0 0 4px 0;
  line-height: 1.5;
}

.artist-gallery-sentence {
  font-style: italic;
}

.artist-links {
  margin-top: 6px !important;
}

.artist-link {
  font-size: 12px;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 1px;
}

.artist-link:hover {
  opacity: 0.7;
}

@media (max-width: 600px) {
  .artist-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
