/* =========================
   Articles Page
========================= */
.articles-wrapper {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  margin-bottom: 3rem;
  margin-top: 2rem;
  padding: 2rem;
}

.articles-page-title {
  color: #fff;
  font-family: var(--hu-display-font);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.articles-grid {
  display: grid;
  gap: 2.5rem 1.2rem;
  grid-template-columns: repeat(3, 1fr);
}

.art-card {
  color: inherit;
  cursor: pointer;
  display: block;
}

.art-card:hover {
  color: inherit;
}

.art-thumb {
  aspect-ratio: 1 / 1;
  background: #2a2a2a;
  margin-bottom: 0.6rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.art-thumb img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.art-thumb-placeholder {
  align-items: center;
  background: linear-gradient(135deg, #222 0%, #2e2e2e 100%);
  color: #444;
  display: flex;
  font-size: 2rem;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.art-card:hover .art-thumb {
  outline: 2px solid var(--hu-accent);
}

.badge-type {
  background: rgba(0, 0, 0, 0.72);
  bottom: 0;
  color: var(--hu-accent);
  font-family: var(--hu-display-font);
  font-size: 0.68rem;
  font-weight: 700;
  left: 0;
  letter-spacing: 0.5px;
  padding: 3px 7px;
  position: absolute;
  text-transform: uppercase;
}

.art-artist {
  color: #fff;
  font-family: var(--hu-display-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2px;
}

.art-card:hover .art-artist {
  color: var(--hu-accent);
}

.art-album {
  color: #aaa;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.art-date {
  color: var(--hu-accent);
  font-family: var(--hu-display-font);
  font-size: 0.7rem;
  font-weight: 700;
}

.art-location {
  color: #aaa;
  font-family: var(--hu-display-font);
  font-size: 0.72rem;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.content-empty {
  color: #aaa;
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 1200px) {
  .articles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .articles-wrapper {
    padding: 1rem;
  }

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