:root {
  color-scheme: light;
  --ink: #073b67;
  --muted: #52605d;
  --accent: #007a5e;
  --line: #d8e2df;
  --wash: #f4f7f3;
  --gold: #c5972c;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family: Garamond, "EB Garamond", "Adobe Garamond Pro", Georgia, serif;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(0, 122, 94, 0.1), transparent 34%),
    linear-gradient(315deg, rgba(197, 151, 44, 0.12), transparent 38%),
    var(--wash);
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 48px 32px;
}

.announcement {
  width: min(100%, 920px);
  padding: 8px 0;
}

.logo-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  width: min(100%, 900px);
  margin: 0 0 34px;
}

.logo-strip img {
  display: block;
  height: auto;
  object-fit: contain;
}

.logo-itve {
  width: 108px;
  justify-self: end;
}

.logo-citech {
  width: 142px;
  justify-self: center;
}

.logo-tecnm {
  width: min(100%, 420px);
  max-height: 118px;
  justify-self: end;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conference-names {
  max-width: 780px;
  margin: 0;
}

.conference-names h1 {
  display: grid;
  gap: 14px;
  margin: 0;
  color: var(--ink);
  font-size: 2.65rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.conference-names span {
  display: block;
}

.conference-names strong {
  color: var(--accent);
}

h3 {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.summary {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1.55;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 34px 0 0;
  padding: 0 16px;
  border-left: 4px solid var(--gold);
  background: rgba(197, 151, 44, 0.1);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  .conference-names h1 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .summary {
    font-size: 1.18rem;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 18px;
  }

  .announcement {
    padding: 28px 0;
  }

  .logo-strip {
    gap: 14px;
    margin-bottom: 24px;
  }

  .logo-itve {
    width: 54px;
  }

  .logo-citech {
    width: 72px;
  }

  .logo-tecnm {
    width: min(100%, 190px);
    max-height: 58px;
  }

  .conference-names h1 {
    font-size: 1.55rem;
    line-height: 1.16;
  }

  h3 {
    margin-top: 28px;
    font-size: 1.2rem;
  }

  .summary {
    font-size: 1.06rem;
  }

  .status {
    width: 100%;
  }
}
