/*
Theme Name: CWV Fast Theme
Version: 1.0
*/




* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, Arial;
  overflow-x: hidden;
  background: #fff;
  color: #111;
}

/* MOBILE FIRST */
.container {
  width: 100%;
  padding: 12px;
}

/* Typography */
h1 {
  font-size: 22px;
  line-height: 1.3;
}

h2 {
  font-size: 18px;
  line-height: 1.3;
}

p {
  font-size: 15px;
  line-height: 1.6;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Articles */
article {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
article img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* LINKS */
a {
  color: #0073aa;
  text-decoration: none;
  word-break: break-word;
}

/* DESKTOP UPGRADE */
@media (min-width: 768px) {
  .container {
    max-width: 900px;
    margin: auto;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }
}