/* ==========================
   MY ART — Gallery page
   Location: /the-art/my-art/style.css
========================== */

.art-page{
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.art-header h1{
  text-align: center;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.art-header .subtitle{
  text-align: center;
  font-style: italic;
  opacity: 0.75;
  margin: 0 0 1.75rem;
}

/* soft divider (matches your other pages) */
.soft-divider{
  margin: 2.25rem 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.15),
    transparent
  );
}

/* gallery grid */
.gallery{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 22px;
}

/* card */
.card{
  display: block;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);

  text-decoration: none;
  color: inherit;
}

.card img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.card .meta{
  padding: 14px 16px 16px;
}

.card .title{
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.card .desc{
  opacity: 0.7;
  font-style: italic;
  font-size: 0.9rem;
}

/* nav pills */
.nav-buttons{
  margin-top: 2.25rem;
  justify-content: center;
}

/* mobile comfort */
@media (max-width: 600px){
  .art-page{ padding: 3rem 1rem; }
  .card img{ height: 220px; }
}