:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f3ed;
  color: #18211c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

a {
  color: #0f5132;
  font-weight: 650;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  border-bottom: 1px solid #d9d3c7;
  padding-bottom: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #7b5d11;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.1;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.2;
}

h3 {
  margin: 32px 0 10px;
  font-size: 1.15rem;
}

p,
li {
  color: #465249;
  font-size: 1rem;
  line-height: 1.65;
}

.lead {
  max-width: 680px;
  margin: 16px 0 0;
  font-size: 1.08rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.tile {
  border: 1px solid #d9d3c7;
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.tile-sunnah {
  border-top: 4px solid #0f5132;
}

.tile-stoic {
  border-top: 4px solid #c2410c;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.content {
  margin-top: 34px;
}

.meta {
  margin-top: 8px;
  color: #667067;
  font-size: 0.92rem;
}

.notice {
  border-left: 4px solid #0f5132;
  background: #fff;
  margin: 28px 0;
  padding: 14px 18px;
}

.footer {
  border-top: 1px solid #d9d3c7;
  margin-top: 48px;
  padding-top: 22px;
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 24px, 920px);
    padding: 36px 0;
  }

  h1 {
    font-size: 2rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

