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

:root {
  --text: #362249;
  --heading: #3d1366;
  --muted: #7d6e8a;
  --line: #c4bacb;
  --panel: #ffffff;
  --panel-soft: #f3edf7;
  --panel-hover: #dbd4e1;
  --accent: #703ca6;
}

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

html,
body {
  min-height: 100%;
}

body {
  font-family: "Nunito Sans", "Arial", sans-serif;
  background: #ffffff;
  color: var(--text);
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 32px 40px;
}

.header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-logo {
  width: 28px;
  height: 28px;
  display: block;
}

h1 {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--heading);
}

.subtitle {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  max-width: 760px;
}

.layout {
  display: block;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1rem;
}

.card {
  display: grid;
  gap: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.95rem 1rem 1rem;
  background: var(--panel);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.card:hover {
  border-color: var(--heading);
  background: #fcfbfd;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.card-kicker {
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  color: var(--heading);
  font-size: 0.74rem;
  font-weight: 600;
}

.card h3 {
  font-size: 1.05rem;
  color: var(--heading);
}

.card-copy {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
}

.thumb {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--heading);
  font-size: 0.82rem;
  font-weight: 700;
}

.cta::after {
  content: "→";
}

@media (max-width: 860px) {
  .page {
    padding: 20px 18px 32px;
  }

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