/* ======================================================================
   AIMStream — Minimal stylesheet
   Plain layout, system fonts, no animation or heavy visual effects.
   Intended as a starting point for a future WordPress build.
   ====================================================================== */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #222;
  background: #ffffff;
  line-height: 1.6;
  font-size: 17px;
}

.wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.25;
  color: #15294d;
}

h1 { font-size: 2.4rem; margin: 0.3rem 0 0.2rem; }
h2 { font-size: 1.6rem; margin: 0 0 1rem; }
h3 { font-size: 1.2rem; margin: 1.6rem 0 0.6rem; display: flex; align-items: center; gap: 0.5rem; }

p { margin: 0 0 1rem; }
ul { margin: 0 0 1.2rem; padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }

a { color: #1a4fa0; text-decoration: underline; }
a:hover { text-decoration: none; }

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2.5rem 0;
}

/* ----------------------- Header / nav ----------------------- */
.site-header {
  border-bottom: 1px solid #ddd;
  padding: 0.9rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #15294d;
  text-decoration: none;
}

.site-header nav a {
  margin-left: 1.2rem;
  color: #222;
  text-decoration: none;
  font-size: 0.95rem;
}
.site-header nav a:first-child { margin-left: 0; }
.site-header nav a:hover { text-decoration: underline; }

/* ----------------------- Intro / hero ----------------------- */
.intro {
  padding-top: 2.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  color: #5a6478;
  margin-bottom: 0.4rem;
}

.subtitle {
  font-size: 1.2rem;
  color: #1a4fa0;
  margin-bottom: 1rem;
}

.lede {
  max-width: 640px;
  font-size: 1.05rem;
  color: #444;
}

/* Horizontal logo row beneath the CTA button. Each logo is constrained
   to the same width and max-height, so differently-shaped lockups
   (CDG's wide horizontal mark vs. Bitmovin/Tencent's wordmarks) still
   read as a consistent, equal-sized set rather than varying in scale. */
.intro-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid #eee;
}

.logo-img {
  width: 1100px;
  height: auto;
  max-height: 85px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.logo-img-inline {
  height: 1.2em;
  width: auto;
  vertical-align: middle;
  margin-right: 0.1rem;
}
.location-note {
  font-style: italic;
  color: #666;
  font-size: 0.95rem;
  margin-top: 1.2rem;
}
/* ----------------------- Buttons ----------------------- */
.button {
  display: inline-block;
  background: #1a4fa0;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.button:hover { background: #143d80; text-decoration: none; }

/* ----------------------- News list ----------------------- */
.news-list { padding-left: 0; list-style: none; }
.news-list li { margin-bottom: 0.7rem; }
.date { color: #1a4fa0; font-weight: 600; }

/* ----------------------- Footer ----------------------- */
.site-footer {
  border-top: 1px solid #ddd;
  margin-top: 3rem;
  padding: 1.5rem 1.25rem;
  font-size: 0.88rem;
  color: #666;
}

.footer-funding {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.footer-funding .logo-img { flex-shrink: 0; }

/* ----------------------- Responsive ----------------------- */
@media (max-width: 600px) {
  body { font-size: 16px; }
  h1 { font-size: 1.9rem; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .site-header nav a { margin-left: 0; margin-right: 1rem; }
  .footer-funding { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .intro-logos { gap: 1.4rem; }
}
