:root {
  --c-bg: #f6f7f9;
  --c-card: #ffffff;
  --c-text: #1c2430;
  --c-muted: #5a6675;
  --c-line: #e4e8ee;
  --c-red: #c8102e;
  --c-red-soft: #fdecee;
  --c-purple: #6c3483;
  --c-purple-soft: #f4edf8;
  --c-gold: #d9a62e;
  --c-blue: #1a2a4a;
  --radius: 10px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
}

a { color: #1d4ed8; text-decoration: none; }
a:hover { text-decoration: underline; }

.site-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 14px 40px;
}

.site-header {
  background: var(--c-card);
  border-bottom: 1px solid var(--c-line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-logo {
  font-size: 21px;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: .3px;
}
.site-logo:hover { text-decoration: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: none;
  width: 100%;
  flex-direction: column;
  padding: 6px 0 10px;
}
.site-nav.open { display: flex; }
.site-nav a {
  padding: 9px 4px;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-line);
  font-weight: 500;
}
.site-nav a:hover { color: var(--c-red); text-decoration: none; }

@media (min-width: 760px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    flex-direction: row;
    width: auto;
    padding: 0;
    gap: 4px;
  }
  .site-nav a {
    border-bottom: 0;
    border-left: 1px solid var(--c-line);
    padding: 6px 12px;
    font-size: 15px;
  }
  .site-nav a:first-child { border-left: 0; }
}

.crumbs {
  font-size: 13px;
  color: var(--c-muted);
  margin: 4px 2px 12px;
}
.crumbs span { color: var(--c-text); }

.card {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 18px 16px;
  margin-bottom: 16px;
}

h1 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 8px;
}

h2 {
  font-size: 19px;
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 4px solid var(--c-red);
}

h3 { font-size: 16px; margin-bottom: 8px; }

.day-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.day-hero .hero-solar {
  font-size: 17px;
  color: var(--c-muted);
}
.day-hero .hero-lunar {
  font-size: 18px;
  margin-top: 6px;
  background: var(--c-red-soft);
  border-radius: 8px;
  padding: 10px 12px;
}
.day-hero .hero-gz {
  font-size: 15px;
  color: var(--c-muted);
  margin-top: 8px;
}
.hero-static-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
}

.day-hero-aside {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.badge-good { background: var(--c-red); color: #fff; }
.badge-bad { background: var(--c-purple); color: #fff; }
.badge-line { border: 1px solid var(--c-line); color: var(--c-text); }

.hours-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.hours-title.good { color: var(--c-red); }
.hours-title.bad { color: var(--c-purple); }
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px dashed var(--c-line);
  font-size: 15px;
}
.hour-range { font-weight: 700; min-width: 118px; display: inline-block; }
.hour-shen { color: var(--c-muted); }
.hour-luc { display: inline-block; font-size: 13px; font-weight: 600; padding: 1px 9px; border-radius: 999px; white-space: nowrap; }
.hour-luc.luc-good { background: var(--c-red-soft); color: var(--c-red); }
.hour-luc.luc-bad { background: var(--c-purple-soft); color: var(--c-purple); }
.hours-list li.now { background: var(--c-red-soft); border-bottom-color: transparent; border-radius: 8px; padding: 7px 8px; }

.now-hour {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: baseline;
  background: var(--c-blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 14px;
}
.now-hour-label { font-size: 12px; text-transform: uppercase; letter-spacing: .6px; opacity: .75; }
.now-hour-gz { font-size: 17px; }
.now-hour-range { font-weight: 700; }
.now-hour-luck.good, .now-hour-luc.good { color: #f2c14e; font-weight: 600; }
.now-hour-luck.bad, .now-hour-luc.bad { color: #f0a5b8; font-weight: 600; }

.xiu-note { background: var(--c-bg); border-left: 3px solid var(--c-gold); border-radius: 6px; padding: 10px 14px; margin-top: 12px; font-size: 15px; }

.luc-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.luc-table th { text-align: left; font-size: 13px; color: var(--c-muted); padding: 8px 10px; border-bottom: 2px solid var(--c-line); }
.luc-table td { padding: 10px; border-bottom: 1px dashed var(--c-line); vertical-align: top; }
.luc-table tr:last-child td { border-bottom: 0; }
.luc-ranges { white-space: nowrap; }
.luc-gz { color: var(--c-muted); font-size: 14px; }
.luc-info { color: var(--c-text); }

@media (max-width: 699px) {
  .luc-table, .luc-table tbody, .luc-table tr, .luc-table td { display: block; width: 100%; }
  .luc-table thead { display: none; }
  .luc-table tr { border: 1px solid var(--c-line); border-radius: 8px; padding: 10px 12px; margin-bottom: 10px; }
  .luc-table td { border-bottom: 0; padding: 3px 0; }
  .luc-ranges { white-space: normal; }
  .luc-ranges br { display: none; }
  .luc-ranges .luc-gz { margin-left: 6px; }
}

@media (min-width: 700px) {
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .day-hero { grid-template-columns: 1fr auto; align-items: start; }
}

.verdict-main { font-size: 17px; }
.text-good { color: var(--c-red); }
.text-bad { color: var(--c-purple); }

.kv-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.kv-list dt {
  font-weight: 600;
  color: var(--c-muted);
  font-size: 14px;
  padding-top: 8px;
}
.kv-list dd {
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--c-line);
  font-size: 15px;
}

@media (min-width: 700px) {
  .kv-list { grid-template-columns: 220px 1fr; }
  .kv-list dt { padding: 8px 0; }
  .kv-list dd { padding: 8px 0; border-bottom: 1px dashed var(--c-line); }
  .kv-list dt:nth-last-of-type(1), .kv-list dd:last-of-type { border-bottom: 0; }
}

.yiji { display: grid; grid-template-columns: 1fr; gap: 16px; }
.yiji-title.good { color: var(--c-red); }
.yiji-title.bad { color: var(--c-purple); }
.chip-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  line-height: 1.5;
}
.chip-good { background: var(--c-red-soft); color: #8c0d20; }
.chip-bad { background: var(--c-purple-soft); color: #4a235a; }

.shen-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.7;
}

@media (min-width: 700px) { .yiji { grid-template-columns: 1fr 1fr; } }

.month-grid {
  border: 1px solid var(--c-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.month-grid-head, .month-grid-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.month-grid-head {
  border-bottom: 1px solid var(--c-line);
}
.month-grid-head span {
  text-align: center;
  font-size: 13px;
  color: var(--c-muted);
  padding: 6px 0;
  font-weight: 600;
}
.month-grid-head span:last-child { color: var(--c-red); }

.cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 2px;
  min-height: 52px;
  border-top: 1px solid var(--c-line);
  border-left: 1px solid var(--c-line);
  color: var(--c-text);
  background: #fff;
}
.month-grid-body .cell:nth-child(-n+7) { border-top: 0; }
.month-grid-body .cell:nth-child(7n+1) { border-left: 0; }
.cell-empty, .cell-fill { background: transparent; }
.cell:hover { background: var(--c-bg); text-decoration: none; }
.cell-empty:hover, .cell-fill:hover { background: transparent; }
.cell-d { font-size: 16px; font-weight: 600; }
.cell-l {
  font-size: 11px;
  color: var(--c-muted);
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}
.cell-sunday .cell-d, .cell-le .cell-d, .cell-le .cell-l { color: var(--c-red); }
.cell-today {
  background: var(--c-red);
  color: #fff;
}
.cell-today .cell-d, .cell-today .cell-l { color: #fff; }
.cell-today:hover { background: #a50d25; }
.cell-today .cell-soc::before, .cell-today .cell-vang::before { background: #fff; }
.cell-soc::before, .cell-vang::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-red);
  margin-right: 3px;
  vertical-align: 1px;
}
.cell-vang::before { background: var(--c-gold); }

.week-strip { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-top: 4px; }
.week-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 8px 2px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: #fff;
}
.week-cell:hover { background: var(--c-bg); text-decoration: none; }
.week-wd { font-size: 11px; color: var(--c-muted); }
.week-d { font-size: 16px; font-weight: 700; line-height: 1.3; }
.week-l {
  font-size: 11px;
  color: var(--c-muted);
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}
.week-soc { color: var(--c-red); font-weight: 600; }
.week-cur { background: var(--c-blue); border-color: var(--c-blue); }
.week-cur .week-d { color: #fff; }
.week-cur .week-wd { color: rgba(255, 255, 255, .75); }
.week-cur .week-l { color: #f2c14e; }
.week-cur .week-soc { color: #f2c14e; }

.month-note {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 10px;
}
.links-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.event-list { list-style: none; }
.event-list li { padding: 8px 0; border-bottom: 1px dashed var(--c-line); font-weight: 500; }
.event-list li:last-child { border-bottom: 0; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; }
.dot-red { background: var(--c-red); }

.day-prevnext {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.day-prevnext .mini {
  flex: 1;
  text-align: center;
  margin-bottom: 0;
  font-weight: 600;
  padding: 12px;
}
.day-prevnext .mini:hover { text-decoration: none; background: var(--c-bg); }

.faq h3 { margin-top: 14px; }
.faq p { font-size: 15px; color: #2a3546; }

.khan-box {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 10px 0 4px;
}
.khan-box p { font-size: 15px; margin: 8px 0; color: #2a3546; }
.btn-copy {
  display: inline-block;
  margin: 6px 0 10px;
  padding: 8px 18px;
  background: var(--c-red);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.btn-copy:hover { background: #8c0d20; }
.btn-copy.copied { background: #1e7a3c; }

.related-links ul { list-style: none; }
.related-links li { padding: 7px 0; border-bottom: 1px dashed var(--c-line); }
.related-links li:last-child { border-bottom: 0; }

.site-footer {
  background: var(--c-blue);
  color: #e8edf5;
  margin-top: 20px;
}
.site-footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 14px 22px;
}
.footer-site-name { font-size: 18px; font-weight: 700; color: #fff; }
.footer-domain { font-weight: 400; color: #b9c4d6; }
.footer-desc, .footer-source {
  font-size: 13px;
  color: #b9c4d6;
  margin-top: 8px;
  line-height: 1.7;
}
.footer-quick {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.footer-quick a { color: #e8edf5; font-size: 14px; }
.footer-quick a:hover { color: #fff; }
.footer-bottom {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.footer-copy { font-size: 13px; color: #b9c4d6; }
.footer-legal { margin-top: 6px; }
.footer-legal a {
  color: var(--c-gold);
  font-size: 13px;
  margin-right: 18px;
}
.footer-legal a:last-child { margin-right: 0; }

.month-hero .hero-sub,
.year-hero .hero-sub {
  font-size: 16px;
  margin-bottom: 10px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.section-intro {
  font-size: 15px;
  margin-bottom: 12px;
}

.goodday-list {
  margin-bottom: 16px;
}
.goodday-list .chip { background: var(--c-red-soft); color: #8c0d20; }
.goodday-list .chip:hover { background: var(--c-red); color: #fff; text-decoration: none; }

.chip-current {
  background: var(--c-red);
  color: #fff;
}

.mtable {
  border: 1px solid var(--c-line);
  border-radius: 8px;
  overflow: hidden;
}
.mrow {
  display: grid;
  grid-template-columns: 92px 1fr 120px 120px 200px;
  gap: 4px 10px;
  align-items: center;
  padding: 9px 12px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-text);
  font-size: 15px;
}
.mrow:last-child { border-bottom: 0; }
.mrow:hover { background: var(--c-bg); text-decoration: none; }
.mrow.mrow-head {
  background: var(--c-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.mrow.mrow-head:hover { background: var(--c-blue); }
.mrow.is-today { background: var(--c-red-soft); }
.mrow.is-today:hover { background: #fbdcdf; }
.m-d { font-weight: 700; white-space: nowrap; }
.m-w { display: inline-block; margin-left: 4px; font-weight: 400; color: var(--c-muted); font-size: 13px; }
.m-sun, .mrow .m-sun { color: var(--c-red); }
.m-l small, .m-sv {
  font-style: normal;
  font-size: 12px;
  color: var(--c-red);
}
.m-g { color: var(--c-muted); font-size: 14px; }
.m-x { font-size: 14px; color: var(--c-muted); }
.m-x strong { color: var(--c-text); }

.mini-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.mini-badge-good { background: var(--c-red); color: #fff; }
.mini-badge-bad { background: var(--c-purple-soft); color: #4a235a; }
.mini-badge-mid { background: var(--c-bg); color: var(--c-muted); border: 1px solid var(--c-line); }
.sc-who {
  font-size: 13px;
  color: var(--c-muted);
  margin-right: 4px;
}

.ttable {
  border: 1px solid var(--c-line);
  border-radius: 8px;
  overflow: hidden;
}
.trow {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4px 12px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--c-line);
  font-size: 15px;
  align-items: baseline;
}
.trow:last-child { border-bottom: 0; }
.trow.trow-head {
  background: var(--c-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.trow.trow-3 { grid-template-columns: 220px 130px 1fr; }

.jq-list { list-style: none; }
.jq-list li { padding: 8px 0; border-bottom: 1px dashed var(--c-line); }
.jq-list li:last-child { border-bottom: 0; }

.is-disabled { visibility: hidden; }

@media (max-width: 699px) {
  .mrow {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "d b"
      "l l"
      "g x";
    row-gap: 6px;
  }
  .mrow.mrow-head { display: none; }
  .m-d { grid-area: d; }
  .m-b { grid-area: b; justify-self: end; }
  .m-l { grid-area: l; }
  .m-g { grid-area: g; }
  .m-x { grid-area: x; justify-self: end; text-align: right; }

  .trow {
    grid-template-columns: 1fr;
    row-gap: 2px;
  }
  .trow.trow-3 { grid-template-columns: 1fr; }
  .trow.trow-head { display: none; }
  .ttable, .mtable {
    background: var(--c-bg);
    border: 0;
    border-radius: 0;
  }
  .trow, .mrow {
    margin: 0 0 10px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 8px;
  }
  .mrow { border-radius: 8px; }
}

.tool-hero .hero-sub {
  font-size: 16px;
  margin-bottom: 10px;
}

.tool-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: flex-end;
  margin-bottom: 14px;
}
.tool-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 600;
}
.tool-form select {
  padding: 8px 10px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
  color: var(--c-text);
  min-width: 110px;
}
.tool-form button {
  padding: 10px 20px;
  background: var(--c-red);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.tool-form button:hover { background: #8c0d20; }

.result-box {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 14px 16px;
}
.result-main { font-size: 17px; font-weight: 500; }
.result-main strong { color: var(--c-red); font-weight: 700; }
.result-error { color: #8c0d20; font-weight: 500; }
.result-sub { margin-top: 6px; color: var(--c-muted); font-size: 14px; }
.result-link { margin-top: 8px; font-size: 14px; }
.result-note { margin-top: 10px; font-size: 13px; color: var(--c-muted); }

.rule-list { padding-left: 20px; }
.rule-list li { margin: 7px 0; font-size: 15px; }
.source-note { margin-top: 10px; font-size: 13px; color: var(--c-muted); }
.sub-h { margin-top: 14px; font-size: 16px; }

.trow.trow-4 { grid-template-columns: 130px 170px 1fr 100px; }

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
  margin-top: 10px;
}
.purpose-item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 14px;
  color: var(--c-text);
  background: #fff;
}
.purpose-item:hover {
  background: var(--c-bg);
  text-decoration: none;
  border-color: var(--c-red);
}
.purpose-item .p-name { font-weight: 700; font-size: 16px; }
.purpose-item .p-line {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--c-muted);
  line-height: 1.55;
}
.purpose-item .p-go {
  margin-top: 10px;
  color: var(--c-red);
  font-weight: 600;
  font-size: 14px;
}

.gtable {
  border: 1px solid var(--c-line);
  border-radius: 8px;
  overflow: hidden;
}
.grow {
  display: grid;
  grid-template-columns: 160px 1fr 200px 130px;
  gap: 4px 10px;
  align-items: center;
  padding: 9px 12px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-text);
  font-size: 15px;
}
.grow:last-child { border-bottom: 0; }
.grow:hover { background: var(--c-bg); text-decoration: none; }
.grow.grow-head {
  background: var(--c-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.grow.grow-head:hover { background: var(--c-blue); }
.g-d { font-weight: 700; white-space: nowrap; }
.g-w {
  display: inline-block;
  margin-left: 4px;
  font-weight: 400;
  color: var(--c-muted);
  font-size: 13px;
}
.g-l { color: var(--c-muted); font-size: 14px; }
.g-label {
  display: inline-block;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--c-red-soft);
  color: #8c0d20;
  margin: 2px 4px 2px 0;
  white-space: nowrap;
}
.g-b { text-align: right; }
.g-z {
  display: inline-block;
  margin-left: 4px;
  font-size: 13px;
  color: var(--c-muted);
  white-space: nowrap;
}

.ket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.ket-person {
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
}
.ket-person h3 { font-size: 15px; margin-bottom: 8px; }
.verdict-banner {
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.6;
}
.verdict-good { background: var(--c-red-soft); color: #8c0d20; }
.verdict-bad { background: var(--c-purple-soft); color: #4a235a; }
.verdict-mid { background: var(--c-bg); color: var(--c-text); border: 1px solid var(--c-line); }

@media (max-width: 699px) {
  .gtable {
    background: var(--c-bg);
    border: 0;
    border-radius: 0;
  }
  .grow {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "d b"
      "l l"
      "v v";
    row-gap: 6px;
    margin: 0 0 10px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 8px;
  }
  .grow.grow-head { display: none; }
  .g-d { grid-area: d; }
  .g-l { grid-area: l; }
  .g-v { grid-area: v; }
  .g-b { grid-area: b; justify-self: end; text-align: right; }
  .ket-grid { grid-template-columns: 1fr; }
}
