.gallery_page {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.gallery_page_header {
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid #3d3d3d;
  background: linear-gradient(135deg, #fffaf0 0%, #f6eee3 100%);
  box-shadow: 4px 4px 0 #3d3d3d;
}

.gallery_page_kicker {
  margin-bottom: 10px;
  color: #6b5a43;
  font-size: var(--font-size-xs);
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery_page_header h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  color: #111;
}

.gallery_page_header p,
.gallery_card_body p,
.gallery_page_empty {
  line-height: 1.8;
  font-size: var(--font-size-s);
}

.gallery_page_grid {
  display: grid;
  gap: 24px;
}

.gallery_card {
  overflow: hidden;
  border: 1px solid #3d3d3d;
  background: #fff;
  box-shadow: 4px 4px 0 #3d3d3d;
}

.gallery_card_image img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery_card_body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.gallery_card_body h2 {
  font-size: var(--font-size-l);
  font-weight: bold;
  color: #111;
}

.gallery_card_link {
  color: #6b4c2b;
  font-weight: bold;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .gallery_page {
    width: min(680px, calc(100% - 24px));
  }

  .gallery_page_header,
  .gallery_card {
    box-shadow: 3px 3px 0 #3d3d3d;
  }

  .gallery_page_header,
  .gallery_card_body {
    padding: 18px 16px;
  }
}
