@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700;800&display=swap');

:root {
  --bg: #f5f4f1;
  --surface: #ffffff;
  --border: #e0ddd8;
  --text: #1a1a18;
  --muted: #6b6b65;
  --accent: #1a4a8a;
  --accent-light: #2560b0;
  --accent-bg: #e8f0fb;
  --keep: #1a7a3c;
  --keep-bg: #edf7f1;
  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Header ─── */
.site-header {
  background: var(--surface);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-brand {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-brand span { color: var(--accent); }

.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.site-nav a {
  padding: 7px 16px;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
}

.site-nav a:hover { background: var(--bg); color: var(--text); }
.site-nav a.active { background: var(--accent); color: #fff; font-weight: 600; }

/* ─── Container ─── */
.container { max-width: 820px; margin: 0 auto; padding: 36px 20px 80px; }

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, #0f2b4a 0%, #1a4a8a 50%, #2560b0 100%);
  padding: 64px 20px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.hero h1 span { color: #7eb8ff; }

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ─── Signup form card ─── */
.signup-form {
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
  background: var(--surface);
  border-radius: 10px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
}

.form-group input[type="email"],
.form-group input[type="text"] {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 74, 138, 0.12);
}

/* ─── Interest pills ─── */
.interest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.interest-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.interest-pill input[type="checkbox"] { display: none; }

.interest-pill label {
  padding: 7px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}

.interest-pill label:hover {
  border-color: var(--accent);
  background: var(--accent-bg);
}

.interest-pill input:checked + label {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-subscribe {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  margin-top: 12px;
  transition: all 0.15s;
}

.btn-subscribe:hover { background: #153c72; }

/* ─── Featured events ─── */
.featured-section {
  margin-top: 48px;
  text-align: left;
}

.featured-section h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.featured-section .featured-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ─── Category filter pills ─── */
.category-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 24px;
  -webkit-overflow-scrolling: touch;
}

.category-pill {
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  color: var(--muted);
  white-space: nowrap;
  transition: all 0.15s;
}

.category-pill:hover { border-color: var(--accent); color: var(--accent); }
.category-pill.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ─── Page header ─── */
.page-header {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-header .window-label {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 4px;
}

/* ─── View toggle ─── */
.view-toggle {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px;
  flex-shrink: 0;
  margin-top: 4px;
}

.view-btn {
  padding: 6px 16px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  font-family: var(--font);
  transition: all 0.15s;
}

.view-btn.active {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

/* ─── Day groups ─── */
.day-group { margin-bottom: 32px; }

.day-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 14px;
}

/* ─── Event cards (editorial hybrid) ─── */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid #222;
  border-radius: var(--radius);
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}

.event-card:hover {
  background: #f9f9f7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.event-card:hover .event-card-title { color: var(--accent); }

.event-card::after {
  content: '\2192';
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 18px;
  color: #ccc;
  transition: all 0.15s;
}

.event-card:hover::after {
  color: var(--accent);
  right: 14px;
}

.event-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.cat-pill {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  background: #eeece8;
  color: var(--muted);
}

.cat-pill.cat-music { background: #f0eaff; color: #6a3a9a; }
.cat-pill.cat-arts { background: #fdf0e8; color: #d44000; }
.cat-pill.cat-family { background: #edf7f1; color: #1a7a3c; }
.cat-pill.cat-food { background: #fdf6e3; color: #8a6200; }
.cat-pill.cat-community { background: #e8f0fb; color: #1a4a8a; }
.cat-pill.cat-sports { background: #e8f8f0; color: #1a6a5a; }
.cat-pill.cat-outdoors { background: #e8f8e8; color: #2a6a2a; }

.free-pill {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #1a7a3c;
  background: #edf7f1;
  padding: 3px 10px;
  border-radius: 10px;
}

.paid-pill {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--muted);
  background: #f5f5f3;
  padding: 3px 10px;
  border-radius: 10px;
}

.event-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  padding-right: 36px;
  transition: color 0.15s;
}

.event-card-when {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  padding-right: 36px;
}

.event-card-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.55;
  padding-right: 36px;
}

/* ─── Calendar grid ─── */
.cal-loading {
  color: var(--muted);
  text-align: center;
  padding: 40px 0;
}

.cal-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  overflow-x: auto;
}

.cal-day { min-width: 110px; }

.cal-day-header {
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px 6px 0 0;
  text-align: center;
}

.cal-day-header.today {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.cal-dow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.6;
}

.cal-date {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.cal-day-header.today .cal-dow,
.cal-day-header.today .cal-date { opacity: 1; }

.cal-day-events {
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 6px 6px;
  background: var(--surface);
  padding: 6px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cal-empty {
  color: var(--border);
  text-align: center;
  padding: 16px 0;
  font-size: 16px;
}

.cal-event {
  border-left: 3px solid var(--border);
  padding: 5px 7px;
  background: var(--bg);
  border-radius: 0 4px 4px 0;
  transition: background 0.15s;
}

.cal-event:hover { background: var(--accent-bg); }

.cal-event-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.cal-event-title a { color: var(--text); text-decoration: none; }
.cal-event-title a:hover { color: var(--accent); }

.cal-event-time {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}

/* ─── CTA banner ─── */
.cta-banner {
  text-align: center;
  padding: 40px 24px;
  margin-top: 48px;
  background: linear-gradient(135deg, #0f2b4a 0%, #1a4a8a 50%, #2560b0 100%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-banner h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
  position: relative;
  letter-spacing: -0.02em;
}

.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  position: relative;
}

.cta-banner .btn-subscribe {
  width: auto;
  display: inline-block;
  padding: 12px 32px;
  background: #fff;
  color: var(--accent);
  font-size: 15px;
  position: relative;
}

.cta-banner .btn-subscribe:hover {
  background: #f0f6ff;
}

/* ─── Empty state ─── */
.empty-state {
  color: var(--muted);
  padding: 64px 0;
  text-align: center;
  font-size: 16px;
}

/* ─── Preview link ─── */
.preview-link-section {
  text-align: center;
  padding-top: 32px;
  padding-bottom: 0;
}

.preview-link-section p {
  font-size: 15px;
  color: var(--muted);
}

.preview-link-section a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.preview-link-section a:hover {
  text-decoration: underline;
}

/* ─── Value props ─── */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 24px;
  padding-bottom: 16px;
}

.value-prop {
  text-align: center;
}

.value-prop-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.value-prop h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.value-prop p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── Bottom CTA ─── */
.bottom-cta {
  text-align: center;
  padding-top: 32px;
  padding-bottom: 48px;
}

.bottom-cta h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.bottom-cta-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.bottom-cta-form input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
}

.bottom-cta-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 74, 138, 0.12);
}

.bottom-cta-form .btn-subscribe {
  width: auto;
  margin-top: 0;
  padding: 12px 28px;
  flex-shrink: 0;
}

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 32px 24px;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}

.footer-logo span {
  color: var(--accent);
}

.footer-tagline {
  font-size: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ─── FAQ page ─── */
.faq-page { max-width: 640px; }

.faq-heading {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 12px;
}

.faq-item h2 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text);
}

.faq-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.faq-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.faq-item a:hover { text-decoration: underline; }

.faq-cta {
  text-align: center;
  padding: 24px 0 0;
}

.faq-cta p {
  font-size: 14px;
  color: var(--muted);
}

.faq-cta a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.faq-cta a:hover { text-decoration: underline; }

/* ─── Message card ─── */
.message-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 48px 36px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.message-card h1 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.message-card p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ─── Responsive ─── */
@media (max-width: 700px) {
  .cal-week { grid-template-columns: repeat(7, minmax(90px, 1fr)); }
  .page-header { flex-direction: column; gap: 12px; }
}

@media (max-width: 700px) {
  .value-props { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-brand { align-items: center; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 16px 40px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; }
  .signup-form { padding: 22px 18px 20px; }
  .container { padding: 24px 14px 60px; }
  .site-header { padding: 0 14px; }
  .site-nav a { padding: 6px 10px; font-size: 13px; }
  .event-card { padding: 14px 16px; }
  .event-card-title { font-size: 18px; }
  .event-card::after { display: none; }
  .event-card-title, .event-card-when, .event-card-desc { padding-right: 0; }
  .cta-banner { padding: 32px 18px; }
  .bottom-cta-form { flex-direction: column; }
  .bottom-cta h2 { font-size: 20px; }
}

/* ─── Email page ─── */
.email-page {
  max-width: 640px;
  margin: 32px auto 64px;
  padding: 0 16px;
}

/* Email client chrome (From / Subject rows) */
.email-chrome {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px 8px 0 0;
  border-bottom: none;
  padding: 12px 20px;
}

.email-chrome-row {
  display: flex;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  padding: 3px 0;
}

.email-chrome-label {
  font-weight: 600;
  color: var(--muted);
  min-width: 56px;
}

.email-chrome-val {
  color: var(--text);
}

/* Email body container */
.email-body {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Masthead */
.email-masthead {
  background: linear-gradient(135deg, #0f2b4a 0%, #1a4a8a 55%, #2560b0 100%);
  padding: 32px 32px 28px;
  text-align: center;
}

.email-brand {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.email-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  letter-spacing: 0.01em;
}

/* Intro */
.email-intro {
  padding: 22px 32px 4px;
  border-bottom: 1px solid var(--border);
}

.email-intro p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Empty state */
.email-empty {
  padding: 48px 32px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* Day section */
.email-day-section {
  border-bottom: 1px solid var(--border);
}

.email-day-section:last-of-type {
  border-bottom: none;
}

.email-day-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 32px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border-bottom: 1px solid #eeecea;
}

.email-day-count {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

/* Individual event */
.email-event {
  padding: 16px 32px;
  border-bottom: 1px solid #f0eeeb;
}

.email-event:last-child {
  border-bottom: none;
}

.email-event-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

a.email-event-title:hover { color: var(--accent); }

.email-event-title.no-link {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.email-event-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.email-event-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Event tags */
.email-event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.etag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 10px;
}

.etag-free  { background: #edf7f1; color: #1a7a3c; }
.etag-paid  { background: #f5f5f3; color: var(--muted); }
.etag-family { background: #fdf0e8; color: #c05000; }
.etag-cat   { background: var(--accent-bg); color: var(--accent); }

/* Subscribe CTA */
.email-cta {
  background: #f7f6f3;
  border-top: 1px solid var(--border);
  padding: 32px 32px 28px;
  text-align: center;
}

.email-cta-headline {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 4px;
}

.email-cta-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.email-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s;
}

.email-cta-btn:hover { background: #153c72; }

/* Footer */
.email-footer {
  padding: 18px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.email-footer p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.email-footer a {
  color: var(--accent);
  text-decoration: none;
}

/* Email page responsive */
@media (max-width: 600px) {
  .email-page { margin: 0 0 40px; padding: 0; }
  .email-chrome { border-radius: 0; padding: 10px 16px; }
  .email-body { border-radius: 0; border-left: none; border-right: none; }
  .email-masthead { padding: 24px 20px 20px; }
  .email-brand { font-size: 24px; }
  .email-intro { padding: 16px 20px 4px; }
  .email-day-header { padding: 14px 20px 8px; }
  .email-event { padding: 14px 20px; }
  .email-cta { padding: 24px 20px 22px; }
  .email-footer { padding: 16px 20px; }
}
