:root {
  --blue: #1264a3;
  --blue-dark: #0b3658;
  --blue-soft: #eaf4fb;
  --gold: #c89b3c;
  --ink: #18212a;
  --muted: #65727d;
  --line: #e4e9ed;
  --surface: #ffffff;
  --background: #f7f9fa;
  --shadow: 0 20px 60px rgba(15, 43, 64, 0.1);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(228, 233, 237, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  width: min(1180px, calc(100% - 40px));
  min-height: 86px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 180px; max-height: 70px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 23px; }
.nav-links a {
  text-decoration: none;
  color: #46525c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue); }
.nav-links .nav-admin {
  padding: 11px 16px;
  color: white;
  border-radius: 999px;
  background: var(--ink);
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
}

.container { width: min(1120px, calc(100% - 40px)); margin: auto; }
.narrow { width: min(760px, calc(100% - 40px)); margin: auto; }
.page-hero { padding: 86px 0 58px; text-align: center; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 20px; font-size: clamp(38px, 6vw, 72px); line-height: 1.03; letter-spacing: -0.045em; }
h2 { margin-bottom: 16px; font-size: clamp(28px, 4vw, 44px); line-height: 1.1; letter-spacing: -0.03em; }
h3 { margin-bottom: 9px; font-size: 20px; }
.lead { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.7; }
.section { padding: 80px 0; }
.section-soft { background: var(--background); }
.section-heading { max-width: 660px; margin-bottom: 38px; }
.section-heading p { color: var(--muted); line-height: 1.7; }

.home-hero { min-height: calc(100vh - 86px); display: grid; align-items: center; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 68px; align-items: center; padding: 66px 0; }
.hero-copy p:not(.eyebrow) { max-width: 570px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-art { position: relative; }
.hero-art::before {
  content: "";
  position: absolute;
  inset: 9% -8% -8% 15%;
  z-index: -1;
  border-radius: 50%;
  background: var(--blue-soft);
}
.hero-art img { width: 100%; max-height: 650px; object-fit: contain; filter: drop-shadow(0 26px 48px rgba(9, 41, 63, 0.14)); }
.quick-grid, .card-grid, .stat-grid { display: grid; gap: 20px; }
.quick-grid { grid-template-columns: repeat(3, 1fr); }
.quick-card, .card, .panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 35px rgba(15, 43, 64, 0.05);
}
.quick-card span { display: block; margin-bottom: 24px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: 0.13em; }
.quick-card p, .card p { color: var(--muted); line-height: 1.65; }
.text-link { color: var(--blue); font-weight: 800; text-decoration: none; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}
.button:hover { background: var(--blue-dark); }
.button.secondary { color: var(--ink); background: var(--blue-soft); }
.button.dark { background: var(--ink); }
.button.small { min-height: 40px; padding: 0 18px; font-size: 11px; }
.button.danger { background: #a93434; }
.button:disabled { opacity: 0.55; cursor: wait; }

.form-shell { margin-bottom: 80px; padding: clamp(24px, 5vw, 52px); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.form-section { margin: 36px 0 22px; padding-bottom: 10px; border-bottom: 1px solid var(--line); color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; color: #53606a; font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #d8e0e5;
  border-radius: 12px;
  outline: none;
  background: white;
  color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
.field-note { color: var(--muted); font-size: 13px; line-height: 1.5; }
.hidden { display: none !important; }
.status { display: none; margin: 18px 0; padding: 14px 16px; border-radius: 12px; line-height: 1.5; }
.status.show { display: block; }
.status.success { color: #155d37; background: #e8f7ef; }
.status.error { color: #8a2424; background: #fdecec; }
.status.info { color: #164f77; background: var(--blue-soft); }

.card-grid { grid-template-columns: repeat(3, 1fr); }
.event-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.event-cover { aspect-ratio: 16 / 10; display: grid; place-items: center; overflow: hidden; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: white; }
.event-cover img { width: 100%; height: 100%; object-fit: cover; }
.event-cover .date-mark { text-align: center; font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.event-body { padding: 25px; }
.event-meta { margin-bottom: 12px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.empty-state { grid-column: 1 / -1; padding: 50px 24px; border: 1px dashed #cbd6dd; border-radius: var(--radius); text-align: center; color: var(--muted); }

.agenda-hero { padding: 70px 0; color: white; background: linear-gradient(125deg, var(--blue-dark), var(--blue)); }
.agenda-hero .eyebrow { color: #bfe4ff; }
.agenda-hero h1 { margin-bottom: 12px; font-size: clamp(42px, 6vw, 68px); }
.agenda-hero p:last-child { margin: 0; font-size: 18px; opacity: 0.9; }
.agenda-search { display: flex; align-items: center; gap: 18px; margin-bottom: 55px; padding: 18px 22px; border: 1px solid var(--line); border-radius: 16px; }
.agenda-search label { color: var(--blue-dark); font-size: 13px; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.agenda-search input { width: 100%; padding: 13px 16px; border: 0; border-left: 1px solid var(--line); outline: 0; font-size: 16px; }
.agenda-heading { margin-bottom: 35px; }
.agenda-list { display: grid; }
.agenda-month { display: flex; align-items: center; gap: 20px; margin: 24px 0 0; color: var(--blue-dark); font-size: 17px; font-weight: 600; text-transform: capitalize; }
.agenda-month::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.agenda-event { display: grid; grid-template-columns: 72px 1fr minmax(220px, 340px); gap: 28px; align-items: center; padding: 38px 0; border-bottom: 1px solid var(--line); }
.agenda-date { text-align: center; text-transform: uppercase; }
.agenda-date span { display: block; color: var(--muted); font-size: 11px; font-weight: 800; }
.agenda-date strong { display: block; margin-top: 2px; font-size: 28px; }
.agenda-meta { margin-bottom: 12px; color: var(--blue); font-size: 13px; font-weight: 700; text-transform: capitalize; }
.agenda-info h3 { margin-bottom: 12px; font-size: clamp(20px, 3vw, 28px); text-transform: uppercase; }
.agenda-location { margin-bottom: 8px; color: var(--ink); font-weight: 700; }
.agenda-description { margin: 0; color: var(--muted); line-height: 1.6; }
.agenda-image { width: 100%; aspect-ratio: 16 / 9; border-radius: 14px; object-fit: cover; box-shadow: 0 12px 32px rgba(15, 43, 64, 0.14); }

.social-section { color: white; background: var(--blue-dark); }
.social-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.social-wrap .eyebrow { color: #9ed6ff; }
.social-wrap p:last-child { max-width: 520px; color: #cbd9e3; line-height: 1.7; }
.social-links { display: grid; gap: 12px; }
.social-link { display: flex; align-items: center; gap: 17px; padding: 17px 20px; border: 1px solid rgba(255,255,255,0.18); border-radius: 15px; color: white; font-size: 15px; font-weight: 800; text-decoration: none; transition: transform .2s, background .2s; }
.social-link:hover { transform: translateX(5px); background: rgba(255,255,255,0.1); }
.social-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.social-link.facebook .social-icon { font-family: Arial, sans-serif; font-size: 21px; }
.social-link.youtube .social-icon { font-size: 14px; }
.social-link svg {
  display: block;
  width: 24px !important;
  min-width: 24px;
  max-width: 24px;
  height: 24px !important;
  min-height: 24px;
  max-height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.social-link.facebook svg, .social-link.youtube svg { fill: currentColor; stroke: none; }
.social-link.youtube .play { fill: var(--blue-dark); }

.map-card { display: grid; grid-template-columns: 0.7fr 1.3fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.map-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 5vw, 58px); }
.map-copy address { margin: 12px 0 30px; color: var(--muted); font-style: normal; line-height: 1.7; }
.map-frame { min-height: 520px; border: 0; width: 100%; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.offer-card { padding: clamp(28px, 5vw, 46px); border: 1px solid var(--line); border-radius: 26px; }
.bank-logo { height: 46px; margin-bottom: 26px; object-fit: contain; object-position: left; }
.pix-box { display: flex; align-items: center; gap: 26px; }
.pix-box img { width: 150px; border-radius: 12px; }
.account-data { display: grid; gap: 13px; }
.account-data span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; }

.admin-layout { display: grid; grid-template-columns: 230px 1fr; gap: 30px; align-items: start; }
.admin-nav { position: sticky; top: 112px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; }
.admin-nav button { width: 100%; padding: 13px 14px; border: 0; border-radius: 10px; background: transparent; color: var(--muted); text-align: left; font-weight: 700; }
.admin-nav button.active { color: var(--blue-dark); background: var(--blue-soft); }
.admin-view { display: none; }
.admin-view.active { display: block; }
.stat-grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 24px; }
.stat { padding: 22px; border-radius: 18px; background: var(--blue-soft); }
.stat strong { display: block; margin-bottom: 4px; font-size: 30px; }
.stat span { color: var(--muted); font-size: 13px; }
.data-list { display: grid; gap: 12px; }
.data-item { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 18px; border: 1px solid var(--line); border-radius: 14px; }
.data-item p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.invite-box { padding: 18px; border-radius: 14px; background: var(--background); word-break: break-all; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.consent-box { padding: 18px; border-radius: 14px; background: var(--blue-soft); }
.consent-box label { display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; text-transform: none; }
.consent-box input { width: auto; min-height: auto; margin-top: 3px; }
.member-tools { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.member-tools .field { flex: 1; margin-bottom: 0; }
.item-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.birthday-board {
  display: grid;
  gap: 24px;
}
.birthday-months { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.birthday-month {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 12px 35px rgba(15, 43, 64, 0.05);
}
.birthday-month strong { display: block; margin-bottom: 5px; color: var(--blue-dark); font-size: 18px; text-transform: capitalize; }
.birthday-month span { color: var(--muted); font-size: 13px; }
.birthday-month.active { border-color: var(--blue); background: var(--blue-soft); box-shadow: 0 16px 34px rgba(18, 100, 163, 0.14); }
.birthday-month-panel { padding: clamp(28px, 5vw, 48px); border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(180deg, #ffffff, #f7fbff); box-shadow: var(--shadow); }
.birthday-title { margin-bottom: 28px; text-align: center; }
.birthday-title h2 { margin-bottom: 0; color: var(--blue-dark); text-transform: capitalize; }
.birthday-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.birthday-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.birthday-card strong {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 24px;
}
.birthday-card h3 { margin: 0 0 4px; }
.birthday-card p { margin: 0; color: var(--muted); }

.post-service-output {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.media-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.media-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 12px 35px rgba(15, 43, 64, 0.05);
}
.media-card.primary {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}
.media-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.media-card.primary span, .media-card.primary p, .media-card.primary a { color: #d8eaf5; }
.media-card h3 { margin-bottom: 8px; }
.media-card p { color: var(--muted); line-height: 1.55; }
.media-card a { color: var(--blue); font-size: 12px; font-weight: 900; text-decoration: none; text-transform: uppercase; }
.media-workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.workflow-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.workflow-list span {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--background);
  color: var(--muted);
  line-height: 1.5;
}
.post-service-guide {
  margin-bottom: 24px;
  background: var(--blue-soft);
}
.post-service-guide h3 { color: var(--blue-dark); }
.post-service-guide p { margin-bottom: 8px; color: var(--muted); line-height: 1.6; }
.post-service-guide p:last-child { margin-bottom: 0; }
.post-service-title {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white;
}
.post-service-title .eyebrow { color: #bfe4ff; }
.post-service-title h2 { margin-bottom: 8px; }
.post-service-title p { margin: 0; color: #d8eaf5; }
.post-service-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 35px rgba(15, 43, 64, 0.05);
}
.post-service-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(18, 100, 163, 0.25);
  border-radius: 20px;
  background: var(--blue-soft);
}
.post-service-action-card h3 { margin-bottom: 6px; color: var(--blue-dark); }
.post-service-action-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.post-service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.post-service-card-head h3 { margin: 0; }
.post-service-card pre {
  margin: 0;
  padding: 18px;
  border-radius: 14px;
  background: var(--background);
  color: var(--ink);
  white-space: pre-wrap;
  line-height: 1.6;
  font-family: inherit;
  font-size: 14px;
}

.print-page { width: min(900px, calc(100% - 32px)); margin: 30px auto; }
.print-toolbar { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 18px; }
.print-sheet { min-height: 1120px; padding: 46px; border: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
.print-header { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 22px; border-bottom: 2px solid var(--ink); }
.print-header img { width: 170px; }
.print-header h1 { margin: 0; font-size: 26px; letter-spacing: -0.02em; }
.print-section { margin-top: 28px; }
.print-section h2 { margin-bottom: 14px; padding-bottom: 7px; border-bottom: 1px solid var(--line); color: var(--blue); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.print-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; }
.print-field.full { grid-column: 1 / -1; }
.print-field span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.print-field strong { display: block; min-height: 23px; padding-bottom: 4px; border-bottom: 1px solid #9ca8b0; font-size: 13px; font-weight: 600; }
.print-footer { margin-top: 45px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; text-align: center; }
.signature { padding-top: 6px; border-top: 1px solid var(--ink); font-size: 11px; }

.site-footer { padding: 50px 0; border-top: 1px solid var(--line); background: var(--background); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-grid img { width: 150px; }
.footer-grid p { margin: 0; color: var(--muted); font-size: 13px; }

@media (max-width: 920px) {
  .menu-button { display: inline-grid; place-items: center; }
  .nav-links { position: fixed; inset: 86px 0 auto; display: none; padding: 24px 20px 30px; flex-direction: column; align-items: stretch; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .menu-open .nav-links { display: flex; }
  .nav-links a { padding: 10px; text-align: center; }
  .hero-grid, .map-card, .admin-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 25px; text-align: center; }
  .hero-copy p:not(.eyebrow) { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-art img { max-height: 470px; }
  .admin-nav { position: static; display: flex; gap: 6px; overflow-x: auto; }
  .admin-nav button { width: auto; white-space: nowrap; }
  .social-wrap { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 700px) {
  .nav-wrap, .container, .narrow { width: min(100% - 28px, 1120px); }
  .brand img { width: 145px; }
  .home-hero { min-height: auto; }
  .hero-grid { padding: 48px 0 65px; }
  .page-hero { padding: 62px 0 40px; }
  .section { padding: 58px 0; }
  .quick-grid, .card-grid, .form-grid, .offer-grid, .stat-grid { grid-template-columns: 1fr; }
  .media-dashboard, .media-workflow-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-shell { border-radius: 20px; }
  .map-frame { min-height: 390px; }
  .pix-box { align-items: flex-start; flex-direction: column; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .data-item { align-items: flex-start; flex-direction: column; }
  .post-service-action-card { align-items: stretch; flex-direction: column; }
  .member-tools { align-items: stretch; flex-direction: column; }
  .agenda-search { align-items: stretch; flex-direction: column; }
  .agenda-search input { border: 0; border-top: 1px solid var(--line); }
  .agenda-event { grid-template-columns: 55px 1fr; gap: 18px; }
  .agenda-image { grid-column: 1 / -1; }
  .birthday-months { grid-template-columns: repeat(2, 1fr); }
  .birthday-list { grid-template-columns: 1fr; }
}

@media print {
  @page { size: A4; margin: 12mm; }
  body { background: white; }
  .print-toolbar, .site-header, .site-footer { display: none !important; }
  .print-page { width: 100%; margin: 0; }
  .print-sheet { min-height: auto; padding: 0; border: 0; box-shadow: none; }
  body:has(#birthday-board) .site-header,
  body:has(#birthday-board) .site-footer,
  body:has(#birthday-board) .page-hero,
  body:has(#birthday-board) .admin-nav,
  body:has(#birthday-board) .admin-view:not([data-admin-view="aniversariantes"]),
  body:has(#birthday-board) [data-admin-view="aniversariantes"] .section-heading,
  body:has(#birthday-board) .birthday-months,
  body:has(#birthday-board) [data-admin-view="aniversariantes"] .hero-actions {
    display: none !important;
  }
  body:has(#birthday-board) .container,
  body:has(#birthday-board) .section,
  body:has(#birthday-board) .admin-layout {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }
  body:has(#birthday-board) .birthday-board,
  body:has(#birthday-board) .birthday-month-panel {
    padding: 0;
    border: 0;
    box-shadow: none;
    background: white;
  }
  body:has(#birthday-board) .birthday-list { grid-template-columns: repeat(2, 1fr); }
}
