/* ===== Base ===== */
* { box-sizing: border-box; }
:root {
  --bg1: #cbe5c6;
  --bg2: #8bd0b4;
  --ink: #111;
  --panel: #d8d8d8;
}
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg1) 100%);
}
.page { padding: 16px; }

/* ===== Card Look ===== */
.card {
  background: var(--panel);
  border: 4px solid #000;
  box-shadow: 8px 8px 0 rgba(0,0,0,.6);
}

/* ===== Layout ===== */
.content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}
.maincol { display: grid; gap: 18px; }
.sidebar { display: grid; gap: 18px; }

/* ===== Hero ===== */
.hero { padding: 0; }
.headline-box {
  margin: 18px;
  border: 4px solid #000;
  background: #efefef;
  display: block;
  padding: 14px 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw + 10px, 56px);
  text-align: center;
}

/* ===== Hero Image ===== */
.hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border: 6px solid #000;
  background: #fff;
  /* removed box-shadow */
}

/* ===== Intro ===== */
.intro {
  padding: 16px;
  font-size: 16px;
  line-height: 1.4;
}

/* ===== Navigation Section ===== */
.browse { padding: 8px; margin: 0; }
.browse h2 {
  margin: 0 0 18px 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .02em;
}
.browse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.browse-item {
  border: 4px solid #000;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  transform: scale(0.9);
  transform-origin: top center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, filter .15s ease;
}
.browse-item .tile {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 6px solid #000;
  background: #fff;
  /* removed box-shadow */
}
.browse-item .label {
  border: 4px solid #000;
  background: #f6f6f6;
  font-weight: 700;
  text-align: center;
  padding: 8px 10px;
  font-size: 15px;
  width: 90%;
  margin: 0 auto;
}
.browse-item:hover,
.browse-item:focus-visible {
  background-color: #fafafa;
  transform: translateY(-2px);
  box-shadow: 10px 12px 0 rgba(0,0,0,.6);
  outline: none;
  filter: brightness(1.02);
}
@media (max-width: 900px) { .browse-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .browse-grid { grid-template-columns: 1fr; } }

/* ===== Reviews Section ===== */
.top-article { padding: 12px; }
.top-article h2 { margin: 0 0 10px 0; font-size: 28px; }
.article-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.article-list li { margin: 0 10px 10px 10px; padding: 0; background: transparent; border: none; }
.review-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: stretch;
  padding: 10px;
  border: 4px solid #000;
  background: #efefef;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, filter .15s ease;
}
.review-card .thumb {
  width: 90px;
  aspect-ratio: 2 / 3;
  height: auto;
  border: 4px solid #000;
  background: repeating-linear-gradient(45deg, #d0d0d0, #d0d0d0 8px, #ececec 8px, #ececec 16px);
}
.review-card .aside-box {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 10px;
  border: 4px solid #000;
  background: #fff;
}
.review-card:hover,
.review-card:focus-visible {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 10px 12px 0 rgba(0,0,0,.6);
  outline: none;
  filter: brightness(1.02);
}

/* ===== Wide variant ===== */
.article-list li.wide { margin: 0 10px 10px 10px; }
.review-card.wide { grid-template-columns: 1fr; }
.review-card.wide .thumb { display: none; }
.review-card.wide .aside-box {
  height: 100px;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}

/* ===== Creditation Section ===== */
.contact {
  padding: 16px;
}
.contact h2 {
  text-align: center;
  margin: 0 0 12px 0;
}
.social {
  display: flex;
  justify-content: center;
  border: 4px solid #000;
  background: #fff;
  box-shadow: 4px 4px 0 rgba(0,0,0,.3);
  width: 90%;
  margin: 0 auto;
  padding: 10px 0;
}
.soc {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .content { grid-template-columns: 1fr; }
}

