@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Roboto+Condensed:ital,wght@0,300;1,300&display=swap');

:root {
  --blue-top: #4a89cc;
  --blue-bottom: #3f7fc4;
  --text: rgba(255,255,255,.90);
  --muted: rgba(255,255,255,.58);
}

* { box-sizing: border-box; }

html { background: var(--blue-bottom); }

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--blue-top) 0%, var(--blue-bottom) 100%);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
}

.forum-post {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 24px 22px 38px;
}

.site-header { text-align: center; }

.logo {
  display: block;
  width: min(420px, 66vw);
  height: auto;
  margin: 0 auto -2px;
  mix-blend-mode: screen;
}

.forum-label {
  font-size: clamp(1.25rem, 2.8vw, 1.9rem);
  font-weight: 300;
  letter-spacing: .23em;
  margin: 0 0 24px;
}

.divider {
  width: 94%;
  height: 6px;
  margin: 0 auto 25px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 1px 3px rgba(0,0,0,.10);
}

.project-name {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 1.05;
  margin: 0 0 22px;
  color: rgba(255,255,255,.84);
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  line-height: 1.25;
  font-weight: 700;
}

.author {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.author-name {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-style: italic;
  font-weight: 300;
}

.official-dev {
  font-size: clamp(.8rem, 2vw, 1rem);
  font-weight: 400;
  color: var(--muted);
}

.content {
  font-size: clamp(1.05rem, 2.35vw, 1.45rem);
  line-height: 1.48;
  letter-spacing: .015em;
}

.content p {
  margin: 0 0 14px;
}

footer {
  margin-top: 12px;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: .07em;
}

@media (max-width: 520px) {
  .forum-post { padding: 20px 20px 34px; }
  .logo { width: min(380px, 78vw); }
  .forum-label { margin-bottom: 20px; }
  .divider { width: 100%; height: 5px; }
  .project-name { margin-bottom: 20px; }
}
