/* =========== Workshop Gallery =========== */

:root{
  --ws-red: #E7503F;     /* header color from your mock */
  --ink:    #0a0a0a;
}

.ws-container{
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* HEADER */
.ws-hero{
  background: var(--ws-red);
  color: #fff;
  border-bottom: 1px solid #000;
}

.ws-title{
  margin: 0;
  padding: 2.2rem 0 .75rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.ws-key{
  display: inline-flex;
  line-height: 0;
}
.ws-key img{
  width: 18px;           /* small “keyhole” like in your other pages */
  height: auto;
  display: block;
}

.ws-sub{
  margin: 0 0 1.2rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

/* GRID */
.ws-grid-wrap{
  background: #fff;
}

.ws-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px; /* tight gutters like screenshot */
  padding: 16px 0 28px;
}

.ws-item{
  margin: 0;
  background: #f3f3f3;
  overflow: hidden;
  border-radius: 0;       /* keep square corners like your mock */
}

/* Keep rows visually even; images fill the tile */
.ws-item img{
  width: 100%;
  aspect-ratio: 4 / 3;    /* gives a consistent tile height */
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1200px){
  .ws-grid{ grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px){
  .ws-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px){
  .ws-container{ padding: 0 1.25rem; }
  .ws-grid{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 420px){
  .ws-grid{ grid-template-columns: 1fr; }
}
