@keyframes shimmer {
  0% {
    background-position: -1200px 0;
  }
  100% {
    background-position: 1200px 0;
  }
}
.art-gallery-hero {
  display: flex;
  flex-direction: column;
  	gap: 1rem;
	margin:0 10px;
}

.hero-card.shimmer {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 2rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: #f3f3f3;
  overflow: hidden;
}
.hero-card.shimmer .shimmer-img,
.hero-card.shimmer .line {
  position: relative;
  overflow: hidden;
  background: #e6e6e6;
}

.hero-card.shimmer .shimmer-img {
  width: 100%;
  height: 100px;
  border-radius: 10px;
}

.hero-card.shimmer .shimmer-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.hero-card.shimmer .line {
  height: 18px;
  width: 100%;
  border-radius: 6px;
}

.hero-card.shimmer .line.short {
  width: 65%;
}
.hero-card.shimmer .shimmer-img::after,
.hero-card.shimmer .line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  background-size: 1200px 100%;
  animation: shimmer 1.6s infinite linear;
}
@media (max-width: 768px) {
  .hero-card.shimmer {
    grid-template-columns: 1fr;
  }

  .hero-card.shimmer .shimmer-img {
    height: 220px;
  }
}

.art-gallery-hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.art-gallery-hero:empty {
  display: none;
}

.hero-card {
	position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;   /* strict 50 / 50 */
  gap: 1rem;
  width: 100%;
  padding: 1rem 0;
  align-items: start;
}
.hero-card-wrapper{
	position: relative;   
	background:transparent;
}
.hero-card-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}
/*
.hero-card:nth-child(even) {
  direction: rtl;
}

.hero-card:nth-child(even) > * {
  direction: ltr;
}
*/
/* === ART CANVAS === */
.hero-image {
  width: 100%;
  margin: 0 0 0.6rem;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  background: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius:5px;
  /* wall separation */
  box-shadow:
    0 1px 2px rgba(0,0,0,0.18),
    0 6px 14px rgba(0,0,0,0.16),
    0 16px 32px rgba(0,0,0,0.10);
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,0,0,0.06);
  pointer-events: none;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.035),
      rgba(0,0,0,0.02)
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.12),
      rgba(0,0,0,0)
    );
  pointer-events: none;
}


.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;                /* zoom / crop allowed */
  display: block;
  background: #fff;
}

/* === TEXT SIDE === */
.hero-content {
  max-width: 640px;
}

.hero-content-title {
  /*font-size: 1.1rem;*/
  font-size: clamp(14px, 1.5vw, 18px) !important;
  font-weight: 600 !important;
  margin: 0 0 0.1rem !important;
  color: #222 !important;
	letter-spacing: 0.01em !important;

  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
	
 display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.hero-content-artist-name{
	font-size:10px;
	color:#555;
}
.hero-content-description {
  font-size: clamp(10px, 1.5vw, 15px) !important;
  line-height: 1.65 !important;
  color: #2f2f2f !important;
	margin:0 !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;

  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
}


.hero-link {
  font-size: 0.85rem;
  text-decoration: underline;
  color: #333;
}

.hero-link:hover {
  text-decoration: none;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .hero-card {
    gap: 1rem;
  }
	.hero-card {
        grid-template-columns: 1.3fr 1fr;
    }
  .hero-content h2 {
    font-size: 1rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }
}


/* App-like links */
.art-gallery-special-link {
    color: #2f7d6a !important;                 /* calm, modern blue */
	font-size:12px;
    text-decoration: none !important;
    font-weight: 600 !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Subtle feedback, not flashy */
.art-gallery-special-link:active {
    opacity: 0.7 !important;
}

/* Optional hover (desktop only) */
@media (hover: hover) {
    .art-gallery-special-link:hover {
        text-decoration: underline;
        text-underline-offset: 3px;
    }
}
.hero-content-bottom-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;            /* graceful spacing between buttons */
    margin-bottom: 10px;     /* optional breathing room */
}
.hero-content-bottom-buttons span {
	font-size: clamp(12px, 1.2vw, 18px);
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 999px; /* soft pill look */
	background: rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease, color 0.2s ease;
}

.hero-content-bottom-buttons span:hover {
    background: rgba(0, 0, 0, 0.1);
}
.hero-content-bottom-buttons span:active {
    background: rgba(0, 0, 0, 0.15);
}
