/* wonderful-freshness portal — landing page styles */

:root {
  --bg:      #fafafa;
  --text:    #1c2128;
  --muted:   #6b7280;
  --border:  #e5e7eb;
  --primary: #3b82f6;
}

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

html { font-size: 18px; background: var(--bg); color: var(--text); }

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 4rem;
  line-height: 1.6;
}

.portal-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.portal-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
}

.blog-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.blog-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

.blog-card-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.blog-card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.site-footer {
  margin-top: 4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--primary); }

@media (max-width: 600px) {
  html { font-size: 16px; }
  body { padding: 2rem 1rem 3rem; }
}
