/* Art Showcase Section with Ruyi Pattern Background */
.art-showcase-section {
  background: #212121;
  padding: 60px 0 60px 0 !important;
  margin: 0 !important;
  color: white !important;
  display: block !important;
}

.art-showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 10px;
  align-items: start;
}

/* Left Column - Title and Description */
.art-showcase-left {
  text-align: right;
  padding-right: 10px;
}

.art-showcase-title {
  font-size: 2rem;
  font-weight: 900;
  font-family: "Times New Roman", Times, serif;
  color: #ffd700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  -webkit-text-stroke: 0.8px #ffd700;
  letter-spacing: 0.5px;
}

.art-showcase-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
}

/* Right Column - Cards Grid */
.art-showcase-right {
  padding-left: 5px;
  max-width: 1000px;
}

.art-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 15px;
  justify-content: center;
}

/* Art Card */
.art-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.art-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  max-width: 240px;
}

.art-card-link:hover .art-card {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.5);
}

.art-card-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: #1a1a1a;
}

.art-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.art-card:hover .art-card-image img {
  transform: scale(1.1);
}

.art-card-content {
  padding: 15px;
}

.art-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.art-card-description {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #d0d0d0;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .art-showcase-container {
    grid-template-columns: 40% 60%;
    gap: 40px;
  }

  .art-cards-grid {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .art-showcase-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .art-showcase-left {
    text-align: center;
    padding-right: 0;
    border-right: none;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 40px;
  }

  .art-showcase-right {
    padding-left: 0;
  }

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

@media (max-width: 768px) {
  .art-showcase-section {
    padding: 60px 0;
  }

  .art-showcase-container {
    padding: 0 20px;
  }

  .art-showcase-title {
    font-size: 2rem;
  }

  .art-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
