:root {
  --ink: #171814;
  --muted: #6b6d64;
  --paper: #f4f2eb;
  --card: #fffefa;
  --line: #d9d8cf;
  --lime: #dfff00;
  --lime-deep: #c4e300;
  --purple: #7967ff;
  --blue: #3678ff;
  --orange: #ff7a45;
  --pink: #f25f9c;
  --green: #1ea672;
  --radius: 22px;
  --shadow: 0 20px 55px rgba(31, 33, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 5%, rgba(223, 255, 0, 0.22), transparent 24rem),
    var(--paper);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

button,
select {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(244, 242, 235, 0.86);
  border-bottom: 1px solid rgba(23, 24, 20, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner,
.hero,
.news-section,
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-mark {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-size: 15px;
  letter-spacing: -0.08em;
  transform: rotate(-8deg);
}

.brand-dot {
  color: var(--purple);
}

.header-actions,
.update-status {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 24px;
}

.update-status {
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.update-status strong {
  color: var(--ink);
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  background: #25b578;
  border-radius: 50%;
}

.status-dot::after {
  position: absolute;
  inset: -4px;
  content: "";
  border: 1px solid #25b578;
  border-radius: inherit;
  animation: status-pulse 2.3s infinite;
}

@keyframes status-pulse {
  0%, 100% { opacity: 0; transform: scale(0.55); }
  40% { opacity: 0.65; transform: scale(1); }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  font-weight: 750;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
.category-tab:focus-visible,
.news-card:focus-visible {
  outline: 3px solid rgba(121, 103, 255, 0.35);
  outline-offset: 3px;
}

.button-dark {
  color: white;
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--lime);
}

.button-dark:hover {
  box-shadow: 6px 6px 0 var(--lime);
}

.button-compact {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 9px;
  font-size: 13px;
}

.hero {
  min-height: 488px;
  padding: 92px 0 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.eyebrow,
.section-kicker,
.subscribe-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 22px 0 26px;
  font-size: clamp(58px, 8vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero h1 em {
  position: relative;
  z-index: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.hero h1 em::after {
  position: absolute;
  z-index: -1;
  left: -0.01em;
  bottom: 0.02em;
  width: 103%;
  height: 0.25em;
  content: "";
  background: var(--lime);
  transform: rotate(-2deg);
}

.hero-description {
  margin: 0;
  color: #51534b;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: -0.025em;
}

.hero-meta {
  width: 210px;
  padding-top: 18px;
  display: grid;
  flex: 0 0 auto;
  gap: 8px;
  border-top: 1px solid var(--ink);
  font-size: 13px;
}

.hero-meta-label {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

#current-date {
  font-weight: 800;
}

.news-section {
  padding-bottom: 120px;
}

.section-heading {
  padding: 34px 0 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 2px solid var(--ink);
}

.section-kicker {
  margin-bottom: 6px;
  color: var(--purple);
}

.section-heading h2 {
  margin: 0;
  font-size: 31px;
  letter-spacing: -0.055em;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 18px;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tab {
  min-width: max-content;
  height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5f6159;
  background: transparent;
  border: 1px solid #c8c7bf;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 750;
  transition: 0.18s ease;
}

.category-tab:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}

.category-tab[aria-selected="true"] {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.category-icon {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--ink);
  background: var(--tab-color, var(--lime));
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.category-count {
  opacity: 0.58;
  font-size: 10px;
}

.filter-bar {
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(46, 45, 37, 0.03);
}

.search-box {
  min-width: 260px;
  max-width: 500px;
  display: flex;
  flex: 1;
  align-items: center;
  gap: 10px;
}

.search-box svg,
.date-control svg,
.sort-control svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.search-box svg {
  color: #777970;
}

.search-box input {
  width: 100%;
  height: 36px;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
}

.search-box input::placeholder {
  color: #9a9b94;
}

.search-box kbd {
  padding: 3px 7px;
  color: #8a8b84;
  background: #eeece4;
  border: 1px solid #deddd5;
  border-radius: 5px;
  font-family: inherit;
  font-size: 10px;
}

.filter-controls {
  display: flex;
  gap: 8px;
}

.date-control,
.sort-control {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  color: #5d5f57;
  background: var(--paper);
  border: 1px solid #dddbd3;
  border-radius: 10px;
}

.date-control {
  padding: 0 10px;
  gap: 6px;
}

.date-control svg {
  width: 17px;
}

.date-control input,
.sort-control select {
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 12px;
  font-weight: 700;
}

.date-control input {
  width: 114px;
}

.date-clear {
  width: 21px;
  height: 21px;
  padding: 0;
  color: #74766e;
  background: #deddd5;
  border: 0;
  border-radius: 50%;
  line-height: 1;
}

.sort-control {
  min-width: 103px;
}

.sort-control select {
  width: 100%;
  height: 42px;
  padding: 0 30px 0 13px;
  appearance: none;
}

.sort-control svg {
  position: absolute;
  right: 8px;
  width: 17px;
  pointer-events: none;
}

.content-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 38px;
}

.results-header {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.results-header p,
.results-header span {
  margin: 0;
  font-size: 12px;
}

.results-header p {
  font-weight: 800;
}

.results-header span {
  color: #85877f;
}

.news-feed {
  display: grid;
  gap: 13px;
}

.news-card-skeleton {
  pointer-events: none;
}

.news-card-skeleton span,
.news-card-skeleton strong,
.news-card-skeleton p {
  display: block;
  background: linear-gradient(90deg, #eceae2 25%, #f8f6ef 50%, #eceae2 75%);
  background-size: 200% 100%;
  border-radius: 6px;
  animation: skeleton-shimmer 1.35s infinite linear;
}

.news-card-skeleton span {
  width: 54px;
  height: 23px;
}

.news-card-skeleton strong {
  width: 74%;
  height: 28px;
  margin-top: 25px;
}

.news-card-skeleton p {
  width: 100%;
  height: 13px;
  margin: 17px 0 0;
}

.news-card-skeleton p:last-child {
  width: 63%;
  margin-top: 8px;
}

@keyframes skeleton-shimmer {
  to { background-position: -200% 0; }
}

.feed-notice {
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff5f1;
  border: 1px solid #efc6b9;
  border-radius: 16px;
}

.feed-notice > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  color: #8d3521;
  background: #ffd7cc;
  border-radius: 50%;
  font-weight: 900;
}

.feed-notice p {
  margin: 0;
  flex: 1;
  color: #713d31;
  font-size: 13px;
}

.feed-notice .button {
  min-height: 36px;
}

.feed-actions {
  padding-top: 24px;
  text-align: center;
}

.load-more {
  min-width: 150px;
}

.ad-card {
  position: relative;
  min-height: 176px;
  padding: 18px;
  display: grid;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(rgba(23, 24, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 24, 20, 0.035) 1px, transparent 1px),
    rgba(255, 254, 250, 0.68);
  background-size: 20px 20px;
  border: 1px dashed #c5c4bb;
  border-radius: var(--radius);
}

.ad-label {
  position: absolute;
  top: 14px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8c8e85;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ad-label::before {
  width: 5px;
  height: 5px;
  content: "";
  background: #b7b9b0;
  border-radius: 50%;
}

.ad-placeholder {
  display: grid;
  place-items: center;
  gap: 7px;
  color: #a1a299;
  text-align: center;
}

.ad-placeholder strong {
  color: #76786f;
  font-size: 14px;
  letter-spacing: -0.025em;
}

.ad-placeholder span {
  font-size: 10px;
}

.ad-google-mark {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 2px;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.ad-google-mark i {
  width: 7px;
  height: 7px;
  background: #4285f4;
  border-radius: 50%;
  box-shadow: 9px 0 #ea4335, 18px 0 #fbbc05, 27px 0 #34a853;
}

.adsbygoogle {
  width: 100%;
  min-height: 110px;
}

.ad-card.is-live .ad-placeholder {
  display: none;
}

.ad-card-bottom {
  min-height: 205px;
  margin-top: 42px;
}

.news-card {
  position: relative;
  min-height: 252px;
  padding: 25px 27px 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 0 transparent;
  transition: transform 0.22s ease, border 0.22s ease, box-shadow 0.22s ease;
}

.news-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  background: var(--category-color, var(--lime));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.news-card:hover {
  z-index: 1;
  border-color: #aead9f;
  box-shadow: 0 16px 38px rgba(36, 37, 28, 0.09);
  transform: translateY(-4px);
}

.news-card:hover::before {
  opacity: 1;
}

.card-meta,
.card-footer,
.source-info {
  display: flex;
  align-items: center;
}

.card-meta {
  justify-content: space-between;
  gap: 15px;
}

.category-label {
  padding: 5px 9px;
  color: #34352f;
  background: color-mix(in srgb, var(--category-color, var(--lime)) 17%, white);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 850;
}

.source-info {
  gap: 8px;
  color: #7a7c74;
  font-size: 11px;
}

.source-info i {
  width: 3px;
  height: 3px;
  background: #b0b1aa;
  border-radius: 50%;
}

.news-card h3 {
  margin: 19px 0 10px;
  font-size: clamp(20px, 2.3vw, 25px);
  line-height: 1.34;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.news-card h3 mark {
  padding: 0 2px;
  color: inherit;
  background: rgba(223, 255, 0, 0.65);
  border-radius: 2px;
}

.card-summary {
  margin: 0 0 24px;
  display: -webkit-box;
  overflow: hidden;
  color: #5e6058;
  font-size: 14px;
  line-height: 1.74;
  letter-spacing: -0.022em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-footer {
  margin-top: auto;
  justify-content: space-between;
  color: #777970;
  font-size: 11px;
}

.ai-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.ai-label::before {
  content: "✦";
  color: var(--purple);
  font-size: 12px;
}

.read-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

.read-arrow {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  background: var(--paper);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}

.news-card:hover .read-arrow {
  background: var(--lime);
  transform: translate(2px, -2px);
}

.subscribe-card {
  position: sticky;
  top: 102px;
  padding: 24px;
  color: white;
  background: var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.subscribe-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.subscribe-number {
  color: #85877e;
  font-family: Georgia, serif;
  font-size: 13px;
}

.beta-badge {
  padding: 5px 8px;
  color: var(--lime);
  border: 1px solid rgba(223, 255, 0, 0.5);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.mail-symbol {
  width: 68px;
  height: 68px;
  margin: 33px 0 28px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.mail-symbol svg {
  width: 39px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.subscribe-kicker {
  color: var(--lime);
}

.subscribe-card h2 {
  margin: 10px 0 14px;
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.subscribe-description {
  margin: 0 0 25px;
  color: #acaea6;
  font-size: 13px;
  line-height: 1.7;
}

.subscribe-form fieldset {
  padding: 0;
  margin: 0 0 18px;
  border: 0;
}

.subscribe-form legend {
  margin-bottom: 9px;
  color: #bcbeb5;
  font-size: 10px;
  font-weight: 700;
}

.interest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.interest-option {
  position: relative;
}

.interest-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.interest-option span {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  color: #b7b9b0;
  border: 1px solid #484a44;
  border-radius: 99px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  transition: 0.15s;
}

.interest-option input:checked + span {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.interest-option input:focus-visible + span {
  outline: 3px solid rgba(223, 255, 0, 0.35);
  outline-offset: 2px;
}

.email-field input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: white;
  background: #252720;
  border: 1px solid #45473f;
  border-radius: 9px;
  outline: none;
  font-size: 12px;
}

.email-field input::placeholder {
  color: #72746d;
}

.email-field input:focus {
  border-color: var(--lime);
}

.email-field input[aria-invalid="true"] {
  border-color: #ff7a7a;
}

.form-message {
  min-height: 16px;
  margin: 6px 0 2px;
  color: #ff9393;
  font-size: 10px;
}

.button-lime {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.button-lime:hover {
  background: var(--lime-deep);
  box-shadow: 0 8px 20px rgba(223, 255, 0, 0.15);
}

.subscribe-submit {
  width: 100%;
  justify-content: space-between;
}

.subscribe-note {
  margin: 14px 0 0;
  color: #777970;
  font-size: 9px;
  line-height: 1.5;
}

.empty-state {
  padding: 70px 20px;
  text-align: center;
  background: rgba(255, 254, 250, 0.6);
  border: 1px dashed #c8c7bf;
  border-radius: var(--radius);
}

.empty-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: #e5e3db;
  border-radius: 50%;
  font-size: 26px;
}

.empty-state h3 {
  margin: 0 0 7px;
  font-size: 20px;
}

.empty-state p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.button-outline {
  min-height: 40px;
  background: transparent;
  border-color: #aaa99f;
  font-size: 12px;
}

.site-footer {
  padding: 55px 0;
  color: white;
  background: #11120f;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.brand-footer {
  margin-bottom: 15px;
}

.footer-inner p {
  margin: 0;
  color: #8c8e86;
  font-size: 11px;
}

.copyright {
  text-align: right;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  width: min(355px, calc(100% - 48px));
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  background: var(--ink);
  border: 1px solid #3b3d36;
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.25s, transform 0.25s;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-weight: 900;
}

.toast div {
  display: grid;
  gap: 3px;
}

.toast strong {
  font-size: 12px;
}

.toast div span {
  color: #aeb0a7;
  font-size: 10px;
}

@media (max-width: 920px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .subscribe-card {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: 120px 1fr 1.3fr;
    align-items: center;
    gap: 24px;
  }

  .subscribe-topline {
    position: absolute;
    top: 22px;
    left: 24px;
    right: 24px;
  }

  .mail-symbol {
    margin: 35px auto 0;
  }

  .subscribe-description {
    margin-bottom: 0;
  }

  .subscribe-note {
    grid-column: 3;
  }
}

@media (max-width: 700px) {
  .header-inner,
  .hero,
  .news-section,
  .footer-inner {
    width: min(100% - 30px, 1180px);
  }

  .header-inner {
    min-height: 66px;
  }

  .update-status {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 62px;
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(55px, 17vw, 78px);
  }

  .hero-meta {
    width: 100%;
    grid-template-columns: 1fr auto;
  }

  .hero-meta-label {
    grid-column: 1 / -1;
    margin-bottom: 7px;
  }

  .section-heading > p {
    display: none;
  }

  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 3px 2px 10px;
    border-bottom: 1px solid var(--line);
  }

  .filter-controls,
  .date-control,
  .sort-control {
    flex: 1;
  }

  .date-control input {
    width: 100%;
  }

  .content-grid {
    margin-top: 35px;
    gap: 24px;
  }

  .results-header span {
    display: none;
  }

  .news-card {
    min-height: 270px;
    padding: 22px 20px 20px;
    border-radius: 17px;
  }

  .ad-card {
    min-height: 150px;
    border-radius: 17px;
  }

  .ad-card-bottom {
    min-height: 165px;
    margin-top: 24px;
  }

  .news-card h3 {
    font-size: 21px;
  }

  .card-summary {
    -webkit-line-clamp: 3;
  }

  .subscribe-card {
    padding: 24px;
    display: block;
  }

  .subscribe-topline {
    position: static;
  }

  .mail-symbol {
    margin: 28px 0 25px;
  }

  .subscribe-description {
    margin-bottom: 25px;
  }

  .subscribe-note {
    grid-column: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .copyright {
    text-align: left;
  }

  .toast {
    right: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
