/*
Theme Name: PureTech
Theme URI: https://example.com/puretech
Author: PureTech
Author URI: https://example.com
Description: A clean, lightweight WordPress theme scaffold for PureTech.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: puretech
*/

:root {
  --puretech-bg: #f5f9ff;
  --puretech-text: #11213b;
  --puretech-accent: #0077b6;
  --puretech-white: #ffffff;
  --puretech-muted: #5e6f8f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--puretech-text);
  background: var(--puretech-bg);
}

a {
  color: var(--puretech-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header,
.site-footer {
  background: var(--puretech-white);
  border-bottom: 1px solid #d9e3f1;
}

.site-footer {
  border-top: 1px solid #d9e3f1;
  border-bottom: 0;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 1.25rem 0;
}

.hero {
  padding: 4rem 0 2rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

.hero p {
  max-width: 700px;
  color: var(--puretech-muted);
  font-size: 1.05rem;
}

.content {
  padding: 1rem 0 3rem;
}

.post-card {
  background: var(--puretech-white);
  border: 1px solid #d9e3f1;
  border-radius: 0.5rem;
  padding: 1.1rem;
  margin-bottom: 1rem;
}
