/* ghanyrasyid.com — satu file CSS, tanpa framework. */

*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --text: #1d1d1f;
  --muted: #86868b;
  --rule: #d2d2d7;
  --link: #0066cc;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --text: #f5f5f7;
    --muted: #86868b;
    --rule: #424245;
    --link: #2997ff;
  }
}

html { font-size: 17px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Beranda */

.hero { padding: 18vh 0 72px; }

.hero h1 {
  font-size: clamp(40px, 9vw, 64px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.hero .tagline {
  margin-top: 18px;
  font-size: 21px;
  line-height: 1.4;
  color: var(--muted);
}

.essays h2 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}

.essay-list { list-style: none; }

.essay-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}

.essay-list a {
  color: var(--text);
  font-size: 19px;
  font-weight: 500;
}

.essay-list a:hover { color: var(--link); text-decoration: none; }

.essay-list .date {
  color: var(--muted);
  font-size: 15px;
  white-space: nowrap;
}

footer {
  margin-top: 72px;
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 14px;
}

footer a { color: var(--muted); text-decoration: underline; }

/* Halaman esai */

.top { padding: 28px 0; }

.top a { color: var(--muted); font-size: 15px; font-weight: 500; }
.top a:hover { color: var(--text); text-decoration: none; }

.essay { padding-top: 48px; }

.essay > header { margin-bottom: 44px; }

.essay > header h1 {
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.essay > header .date {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.essay p {
  margin-bottom: 1.4em;
  font-size: 19px;
  line-height: 1.65;
}

.essay h2 {
  margin: 2em 0 0.8em;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.essay blockquote {
  margin-bottom: 1.4em;
  padding-left: 20px;
  border-left: 2px solid var(--rule);
  color: var(--muted);
}

.essay ul,
.essay ol {
  margin-bottom: 1.4em;
  padding-left: 1.2em;
  font-size: 19px;
  line-height: 1.65;
}
