/* Hesaplı Kasap Rehberi — kasap / et kültürü whitepage */
:root {
  --bg: #f4efe6;
  --paper: #fffdf8;
  --ink: #1c1410;
  --muted: #6b5e52;
  --line: #e4d8c6;
  --red: #b42318;
  --red-dark: #7a140e;
  --gold: #b0893e;
  --max: 1120px;
  --sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --serif: "Georgia", "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
}
a { color: var(--red-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.hk-topbar {
  background: var(--red-dark);
  color: #f8e7c8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
  padding: 8px 16px;
}
.hk-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.hk-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}
.hk-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none !important;
}
.hk-brand img {
  height: 36px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 2px;
}
.hk-brand-text { min-width: 0; }
.hk-brand-text strong {
  display: block;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red-dark);
  line-height: 1.15;
}
.hk-brand-text span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hk-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.hk-nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none !important;
}
.hk-nav a:hover,
.hk-nav a.is-active {
  background: rgba(180, 35, 24, .08);
  color: var(--red);
}

.hk-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.hk-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 56px;
  min-width: 0;
}
.hk-intro { margin-bottom: 22px; max-width: 62ch; }
.hk-intro h1 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(26px, 4.4vw, 36px);
  line-height: 1.2;
  color: var(--red-dark);
  overflow-wrap: anywhere;
}
.hk-intro p { margin: 0; color: var(--muted); }

.hk-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 26px;
  box-shadow: 0 10px 28px rgba(28, 20, 16, .06);
}
.hk-featured-media {
  min-height: 260px;
  background: #ddd2c3 center / cover no-repeat;
}
.hk-featured-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.hk-kicker {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 8px;
}
.hk-featured-body h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.hk-featured-body h2 a { color: inherit; text-decoration: none !important; }
.hk-featured-body h2 a:hover { color: var(--red); }
.hk-excerpt {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
}

.hk-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.hk-cat {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(180, 35, 24, .1);
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none !important;
}

.hk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}
.hk-posts { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.hk-card {
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.hk-card .thumb {
  min-height: 148px;
  background: #ddd2c3 center / cover no-repeat;
}
.hk-card .body { padding: 16px 18px; min-width: 0; }
.hk-card h3 {
  margin: 6px 0 8px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.hk-card h3 a { color: inherit; text-decoration: none !important; }
.hk-card h3 a:hover { color: var(--red); }
.hk-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none !important;
}

.hk-side { display: flex; flex-direction: column; gap: 14px; }
.hk-widget {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.hk-widget h4 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red-dark);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
}
.hk-widget ul { list-style: none; margin: 0; padding: 0; }
.hk-widget li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.hk-widget li:last-child { border-bottom: 0; }
.hk-widget li a { color: var(--ink); font-weight: 600; text-decoration: none !important; }
.hk-widget li a:hover { color: var(--red); }

.hk-search { display: flex; }
.hk-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}
.hk-search button {
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 0 16px;
  min-height: 44px;
  border-radius: 0 8px 8px 0;
  font-weight: 700;
  cursor: pointer;
}

.hk-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.hk-tags a {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--muted);
  text-decoration: none !important;
}
.hk-tags a:hover { border-color: var(--red); color: var(--red); }

.hk-note {
  background: #fff8ea;
  border: 1px solid #ead9a8;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  color: #5c4a28;
  line-height: 1.5;
}

.hk-article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  min-width: 0;
}
.hk-hero {
  height: min(42vw, 300px);
  background: #ddd2c3 center / cover no-repeat;
}
.hk-article-inner { padding: 26px 24px 32px; }
.hk-article-inner h1 {
  margin: 10px 0 16px;
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.2;
  color: var(--red-dark);
  overflow-wrap: anywhere;
}
.hk-content { font-size: 16.5px; line-height: 1.78; color: #2a221c; }
.hk-content p { margin: 0 0 1.1em; }
.hk-content h2 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 1.4em 0 .55em;
  color: var(--red-dark);
}
.hk-content ul, .hk-content ol { margin: 0 0 1.1em; padding-left: 1.3em; }
.hk-content blockquote {
  margin: 1.2em 0;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: #fff8ea;
  color: var(--muted);
  font-style: italic;
}
.hk-back {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none !important;
}
.hk-back:hover { color: var(--red); }

.hk-footer {
  background: #1c1410;
  color: rgba(255, 255, 255, .78);
  padding: 36px 20px 22px;
  font-size: 14px;
}
.hk-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.hk-footer h5 { color: #fff; margin: 0 0 10px; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
.hk-footer p { margin: 0 0 8px; line-height: 1.6; }
.hk-footer a { color: #f3d38a; }
.hk-copy {
  max-width: var(--max);
  margin: 22px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
}

@media (max-width: 960px) {
  .hk-layout,
  .hk-featured,
  .hk-footer-inner { grid-template-columns: 1fr; }
  .hk-featured-media { min-height: 200px; }
  .hk-card { grid-template-columns: 1fr; }
  .hk-card .thumb { min-height: 168px; }
  .hk-burger { display: inline-flex; align-items: center; justify-content: center; }
  .hk-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 4px;
    border-top: 1px solid var(--line);
  }
  .hk-header-inner { flex-wrap: wrap; }
  .hk-nav.is-open { display: flex; }
  .hk-nav a { min-height: 44px; display: flex; align-items: center; }
}

@media (max-width: 520px) {
  .hk-main { padding: 18px 14px 40px; }
  .hk-header-inner { padding: 10px 12px; }
  .hk-brand img { height: 28px; max-width: 128px; }
  .hk-brand-text span { display: none; }
  .hk-article-inner { padding: 18px 16px 24px; }
  .hk-topbar { font-size: 11px; }
}
