:root {
  --base-font-size: 1rem;
  /* Inspired by ~/repos/pitcher/src/theme.css (light theme) */
  --color-ink: #232f3e; /* keep AWS deep navy for the chrome */
  --color-text-secondary: #656871; /* gray-600 */
  --color-text-muted: #8c8c94; /* gray-500 */
  --color-border: #dedee3; /* gray-300 */
  --color-bg-surface: #f9f9fb; /* gray-100 */
  --color-accent: #008077; /* teal-600 */
  --color-accent-2: #fa6f00; /* amber-500 */
  --color-accent-3: #006ce0; /* blue-600 */
  --color-link: var(--color-accent-3);
  --color-link-hover: var(--color-accent);
  --tile-shadow: 0 1px 2px rgba(35, 47, 62, 0.06), 0 10px 28px rgba(35, 47, 62, 0.07);
  --tile-shadow-hover: 0 2px 4px rgba(35, 47, 62, 0.08), 0 18px 36px rgba(35, 47, 62, 0.12);
}

@font-face {
  font-family: "Amazon Ember";
  src: url("/_assets/fonts/amazonember_bd.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Amazon Ember";
  src: url("/_assets/fonts/amazonember_bdit.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Amazon Ember";
  src: url("/_assets/fonts/amazonember_rg.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Amazon Ember";
  src: url("/_assets/fonts/amazonember_rgit.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
}
* {
  margin: 0;
  padding: 0;
  font-family: "Amazon Ember", "Noto Sans", Arial, sans-serif;
  line-height: 1em;
  box-sizing: border-box;
}

h1 {
  font-size: 2.6rem;
  line-height: 1.15;
}

h2 {
  margin: 4rem 0 2rem;
  font-size: 1.6rem;
  font-weight: normal;
}

h3 {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.3;
}

ul,
ol,
p,
li {
  color: var(--color-ink);
  font-size: var(--base-font-size);
  margin: 0 0 0.8rem;
  line-height: calc(var(--base-font-size) * 1.5);
}
ul:empty,
ol:empty,
p:empty,
li:empty {
  display: none;
}

ul,
ol {
  padding: 0 0 0 1.4rem;
}

li {
  padding-left: 0.5rem;
  margin: 0.2rem 0;
}

p:first-child,
ul:first-child,
li:first-child {
  margin-top: 0;
}

p:last-child,
ul:last-child,
li:last-child {
  margin-bottom: 0;
}

a,
a:link,
a:visited {
  color: var(--color-link);
  text-decoration: underline;
}

a:hover,
a:focus {
  color: var(--color-link-hover);
}

strong {
  font-weight: bold;
}

.wrapper {
  margin: 2rem auto;
  max-width: 60rem;
  padding: 1.5rem;
}

header,
footer {
  background: var(--color-ink);
  overflow: hidden;
}
header .logos,
footer .logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
header .logos img,
footer .logos img {
  height: 2.2rem;
  width: auto;
  display: block;
}
header .logos .logo-ts,
footer .logos .logo-ts {
  height: 2.57rem;
}
header .logos .logo-sep,
footer .logos .logo-sep {
  display: inline-block;
  width: 1px;
  height: 1.8rem;
  background: rgba(255, 255, 255, 0.35);
}
header .eyebrow,
footer .eyebrow {
  color: var(--color-accent-2);
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 2.5rem 0 0.6rem;
}
header h1,
footer h1 {
  color: #fff;
  margin: 0;
  padding: 0;
}
header .subtitle,
footer .subtitle {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 1rem;
  line-height: 1.4;
}
header a,
header a:link,
header a:visited,
header a:hover,
header a:active,
header a:focus,
footer a,
footer a:link,
footer a:visited,
footer a:hover,
footer a:active,
footer a:focus {
  color: #fff;
  text-decoration: underline;
}
header a:hover,
header a:active,
header a:focus,
footer a:hover,
footer a:active,
footer a:focus {
  color: #ddd;
}

main,
footer p {
  margin: 3rem auto;
  max-width: 80rem;
}

.summary p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Tiles */
.tiles {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 3rem 0;
}

.tile {
  --tile-accent: var(--color-accent);
  --tile-tint: rgba(0, 128, 119, 0.12);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1.75rem 2rem;
  border: 2px solid var(--tile-accent);
  border-radius: 14px;
  background: #fff;
  color: var(--color-ink);
  box-shadow: var(--tile-shadow);
}
@media (max-width: 540px) {
  .tile {
    gap: 1rem;
    padding: 1.25rem 1.25rem;
  }
}

.tile-green {
  --tile-accent: #2bb534; /* green-500 */
  --tile-accent-dark: #00802f; /* green-600 */
  --tile-tint: rgba(43, 181, 52, 0.12);
}

.tile-purple {
  --tile-accent: #ad5cff; /* purple-500 */
  --tile-accent-dark: #962eff; /* purple-600 */
  --tile-tint: rgba(173, 92, 255, 0.12);
}

.tile-teal {
  --tile-accent: #00ada2; /* teal-500 */
  --tile-accent-dark: #008077; /* teal-600 */
  --tile-tint: rgba(0, 173, 162, 0.12);
}

.tile-amber {
  --tile-accent: #ff9900; /* amber-400 */
  --tile-accent-dark: #fa6f00; /* amber-500 */
  --tile-tint: rgba(255, 153, 0, 0.14);
}

.tile-feedback {
  --tile-accent: #fa6f00; /* amber-500 */
  --tile-accent-dark: #d55e00; /* amber-600 */
  --tile-tint: rgba(255, 153, 0, 0.18);
  background: #fff4e4; /* cream */
}

.tile-feedback .tile-icon {
  background: #fff; /* invert on cream bg for contrast */
}

.tile .tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 14px;
  background: var(--tile-tint);
  color: var(--tile-accent);
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .tile .tile-icon {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 2.1rem;
    border-radius: 10px;
  }
}

.tile-content {
  flex: 1;
  min-width: 0;
}

.tile-content h3 {
  margin: 0 0 0.4rem;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tile-body {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.tile-body a,
.tile-body a:link,
.tile-body a:visited {
  color: var(--tile-accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

.tile-body a:hover,
.tile-body a:focus {
  color: var(--tile-accent-dark, var(--tile-accent));
}

/* Speakers */
.presenters {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 720px) {
  .presenters {
    grid-template-columns: 1fr;
  }
}
.presenters li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.presenters img {
  display: block;
  height: 140px;
  width: 140px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  background: #f0f0f0;
}
.presenters .name {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}
.presenters .role {
  margin: 0 0 0.6rem;
  color: #555;
  font-size: 0.95rem;
}
.presenters .links {
  margin: 0;
}

footer p {
  padding: 0.6rem;
  font-size: 0.8rem;
  text-align: center;
  font-weight: normal;
  color: #fff;
}

/*# sourceMappingURL=main.css.map */
