/* Rich Promo Closeouts — minimal static styles */
:root {
  --blue: #0070C0;
  --light-blue: #ddeaf2;
  --text: #1a1a1a;
  --muted: #555;
  --border: #c5d8e8;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--blue);
  margin-bottom: 1.75rem;
}

.logo {
  display: block;
  max-width: 160px;
  height: auto;
  margin: 0 auto 1rem;
}

h1 {
  margin: 0 0 0.5rem;
  color: var(--blue);
  font-size: 1.75rem;
  font-weight: 700;
}

.blurb {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 auto 0.75rem;
  max-width: 36em;
}

.contact {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
}

.contact a {
  color: var(--blue);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

h2 {
  font-size: 1.15rem;
  color: var(--blue);
  margin: 0 0 0.75rem;
}

.closeout-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--light-blue);
}

.closeout-list li {
  border-bottom: 1px solid var(--border);
}

.closeout-list li:last-child {
  border-bottom: none;
}

.closeout-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: var(--text);
  text-decoration: none;
  background: #fff;
  transition: background 0.15s ease;
}

.closeout-list a:hover,
.closeout-list a:focus {
  background: var(--light-blue);
  outline: none;
}

.closeout-list .label {
  font-weight: 600;
}

.closeout-list .action {
  flex-shrink: 0;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 600;
}

footer {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 480px) {
  .logo {
    max-width: 120px;
  }

  h1 {
    font-size: 1.45rem;
  }

  .closeout-list a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}
