@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@500;700&family=Space+Grotesk:wght@400;600&display=swap');

:root {
  color-scheme: light;
  --bg: #ece9ef;
  --bg-accent: #d9c8f1;
  --ink: #210b3f;
  --muted: #c4b2dd;
  --card: #cfc7db;
  --card-border: #b087e9;
  --accent: #a372e9;
  --shadow: 0 12px 24px rgba(27, 23, 28, 0.05);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background: radial-gradient(circle at top, var(--bg-accent), var(--bg) 55%);
  color: var(--ink);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration:dashed 1px --ink;
}

.site {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.masthead {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}

.masthead__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0;
}

.masthead__subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  grid-auto-flow: dense;
}

.post-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.post-card--wide {
  grid-row: span 2;
}

@media (max-width: 700px) {
  .post-card--wide {
    grid-row: span 1;
  }
}

.post-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(191, 191, 191, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 45px rgba(28, 26, 23, 0.2);
}

.post-card:hover::after {
  opacity: 1;
}

.post-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

hr {
  color: rgba(201, 107, 60, 0.16);
}

.post-card__title {
  font-family: 'Fraunces', serif;
  margin: 0;
  font-size: 1.5rem;
}

.post-card__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
}

.post-card__excerpt {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.post-card__meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.post-header {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.post-header__back {
  font-size: 0.95rem;
  color: var(--ink);
}

.post-header__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 12px;
  font-family: 'Fraunces', serif;
}

.card__content p {
  line-height: 1.6;
}

.card__content p:last-child {
  margin-bottom: 0;
}

.card__content img {
  max-width: 100%;
  max-height: 50vh;
  height: auto;
  display: block;
}

blockquote {
  margin: 0;
  padding: 12px 16px;
  border-left: 3px solid var(--accent);
  background: #d6cbe6;
  border-radius: 12px;
}

footer {
  margin-top: 48px;
  font-size: 0.9rem;
  text-align: center;
}
