:root {
  color-scheme: light;
  --bg: #f6f7f4;
  --surface: #ffffff;
  --surface-muted: #eef1ec;
  --text: #181818;
  --text-muted: #575d62;
  --line: #dce2da;
  --accent: #b51f2a;
  --accent-strong: #891620;
  --gold: #c59b43;
  --green: #2d7254;
  --ink: #202225;
  --shadow: 0 18px 45px rgba(24, 24, 24, 0.09);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0, var(--bg) 260px),
    var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

p {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

li + li {
  margin-top: 0.35rem;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--text);
  color: #fff;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
}

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

.container {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(220, 226, 218, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.header-titlebar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0.85rem 1rem;
}

.header-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(220, 226, 218, 0.72);
  background: rgba(248, 249, 246, 0.9);
  padding: 0.5rem 1rem;
}

.site-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9faf7;
  padding: 0.28rem;
  box-shadow: 0 8px 24px rgba(24, 24, 24, 0.06);
}

.tab-nav a {
  border-radius: 6px;
  padding: 0.56rem 0.92rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.tab-nav a:hover,
.tab-nav a:focus-visible {
  background: #fff;
  color: var(--text);
}

.tab-nav a.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 18px rgba(181, 31, 42, 0.22);
}

.hero {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: #fff;
}

.hero-compact {
  display: flex;
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.eyebrow {
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
}

h1 {
  margin: 0;
  font-size: clamp(1.18rem, 1.7vw, 1.72rem);
  line-height: 1.24;
  letter-spacing: 0;
}

.hero-lead {
  max-width: none;
  text-align: right;
  color: var(--text-muted);
  font-size: 0.95rem;
  white-space: nowrap;
}

.mobile-break {
  display: none;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.7rem 1rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
}

.button-brand {
  border-color: rgba(181, 31, 42, 0.25);
  background: #fff6f6;
  color: var(--accent-strong);
}

section {
  padding: 64px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.35rem;
}

.section-heading h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--text-muted);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
  line-height: 1.12;
}

.section-head > p {
  max-width: 560px;
  color: var(--text-muted);
  text-align: right;
}

.banner-section > .container > .section-head > p {
  max-width: none;
  white-space: nowrap;
}

.section-head--tight {
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.section-head--left > p {
  text-align: left;
}

.banner-section {
  padding-top: 34px;
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 70%, var(--bg) 100%);
}

.banner-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.banner-heading h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.18;
}

.banner-heading p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.brand-banner {
  display: grid;
  aspect-ratio: 1920 / 520;
  min-height: 0;
  align-content: end;
  border: 1px solid rgba(24, 24, 24, 0.12);
  border-radius: 8px;
  overflow: hidden;
  padding: 1rem;
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  color: #fff;
  box-shadow: 0 18px 45px rgba(24, 24, 24, 0.11);
  isolation: isolate;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.brand-banner:hover,
.brand-banner:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(24, 24, 24, 0.16);
}

.brand-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58));
}

.brand-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.banner-has-art::before {
  display: none;
}

.banner-has-art .brand-banner__content {
  display: none;
}

.brand-banner__content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(11, 11, 13, 0.58);
  padding: 0.78rem 0.9rem;
  backdrop-filter: blur(10px);
}

.banner-placeholder {
  align-content: stretch;
  border-color: rgba(24, 24, 24, 0.16);
  padding: clamp(1rem, 2.2vw, 2rem);
}

.banner-placeholder::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.12) 54%, rgba(0, 0, 0, 0.52)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 12px);
}

.banner-placeholder::after {
  opacity: 0.68;
  background:
    linear-gradient(90deg, transparent 0 57%, rgba(255, 255, 255, 0.11) 57% 58%, transparent 58%),
    linear-gradient(90deg, transparent 0 68%, rgba(255, 255, 255, 0.08) 68% 69%, transparent 69%);
}

.banner-placeholder .brand-banner__content {
  height: 100%;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  backdrop-filter: none;
}

.banner-rank {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.42rem 0.68rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.banner-copy {
  flex: 1 1 auto;
  min-width: 0;
  padding-left: clamp(0.2rem, 1.6vw, 1.3rem);
}

.brand-banner__content b {
  display: block;
  font-size: 1.35rem;
  line-height: 1.05;
}

.banner-placeholder .brand-banner__content b {
  font-size: clamp(2.2rem, 6.5vw, 5.2rem);
  letter-spacing: 0;
}

.brand-banner__content small {
  display: block;
  margin-top: 0.24rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.banner-placeholder .brand-banner__content small {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.9rem, 1.35vw, 1.08rem);
}

.brand-banner__content i {
  flex: 0 0 auto;
  border-radius: 6px;
  background: #fff;
  color: #151515;
  padding: 0.5rem 0.72rem;
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 900;
}

.banner-placeholder .brand-banner__content i {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.banner-better {
  background-image:
    url("assets/banners/better-banner.gif"),
    linear-gradient(125deg, #15171b 0%, #2c1b24 44%, #a51e2a 100%);
}

.banner-trump {
  background-image:
    url("assets/banners/trump-banner.gif"),
    linear-gradient(125deg, #191a17 0%, #3a3321 48%, #9b7a2d 100%);
}

.banner-noble {
  background-image:
    url("assets/banners/noble-banner.gif"),
    linear-gradient(140deg, #283940, #2d7254);
}

.banner-igloo {
  background-image:
    url("assets/banners/igloo-banner.gif"),
    linear-gradient(140deg, #24333d, #6a8fa3);
}

.banner-kingdom {
  background-image:
    url("assets/banners/kingdom-banner.gif"),
    linear-gradient(140deg, #301f26, #b51f2a 58%, #c59b43);
}

.guide-section,
.compare-section,
.faq-section {
  background: var(--surface);
}

.compare-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tip-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
  align-items: stretch;
}

.tip-feature {
  display: grid;
  align-content: end;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(21, 21, 21, 0.95), rgba(33, 35, 38, 0.88)),
    url("assets/banners/bottom-cta.webp") center / cover;
  color: #fff;
  padding: 1.35rem;
}

.tip-feature .eyebrow {
  color: #f0c664;
}

.tip-feature h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.18;
}

.tip-feature p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.tip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.tip-grid article {
  background: #fbfcfa;
  padding: 1.15rem;
}

.tip-grid span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.tip-grid h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.tip-grid p,
.brand-detail p,
.updated {
  color: var(--text-muted);
}

.brand-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(24, 24, 24, 0.06);
}

.brand-detail {
  display: grid;
  grid-template-columns: minmax(245px, 0.9fr) minmax(255px, 0.8fr) minmax(280px, 1fr) auto;
  gap: 1.15rem;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: linear-gradient(90deg, #fff 0, #fff 72%, #fbfcfa 100%);
  padding: 1.05rem 1.1rem;
  box-shadow: none;
  transition: background-color 160ms ease;
}

.brand-detail:last-child {
  border-bottom: 0;
}

.brand-detail:hover {
  transform: none;
  border-color: var(--line);
  background: linear-gradient(90deg, #fff 0, #fff7f7 100%);
  box-shadow: none;
}

.brand-main {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
}

.brand-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(181, 31, 42, 0.18);
  border-radius: 50%;
  background: #fff6f6;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.brand-kicker {
  margin-bottom: 0.16rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-detail h3 {
  margin-bottom: 0.16rem;
  font-size: 1.32rem;
  line-height: 1.1;
}

.brand-domain {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
  align-items: center;
}

.brand-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f8f4;
  padding: 0.28rem 0.52rem;
  color: #34373a;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand-note {
  font-size: 0.92rem;
  line-height: 1.55;
}

.brand-action {
  display: grid;
  justify-items: end;
  gap: 0.55rem;
  min-width: 112px;
}

.brand-detail .button {
  min-height: 38px;
  margin-top: 0;
  padding: 0.55rem 0.78rem;
  font-size: 0.88rem;
}

.updated {
  margin-top: 0;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

caption {
  padding: 1rem;
  color: var(--text-muted);
  text-align: left;
  font-weight: 800;
}

th,
td {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0.85rem;
  text-align: left;
  vertical-align: middle;
}

thead th {
  background: #f4f6f2;
  color: var(--text);
  font-size: 0.92rem;
}

tbody th {
  color: var(--accent-strong);
  font-weight: 900;
}

tbody tr:nth-child(even) {
  background: #fafbf8;
}

tbody td {
  color: var(--text-muted);
  font-weight: 800;
  white-space: nowrap;
}

tbody td::before {
  content: "";
  display: inline-block;
  width: 0.52rem;
  height: 0.52rem;
  margin-right: 0.42rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 114, 84, 0.12);
  vertical-align: 0.05rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  align-content: start;
  min-height: 180px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(24, 24, 24, 0.035);
}

.process-list span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: var(--text);
  color: #fff;
  font-weight: 900;
}

.process-list h3 {
  margin: 0.8rem 0 0.35rem;
  font-size: 1.08rem;
}

.process-list p {
  color: var(--text-muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
}

.check-panel {
  display: grid;
  gap: 0.9rem;
}

.notice-text {
  border: 1px solid rgba(181, 31, 42, 0.18);
  border-radius: 8px;
  background: #fff7f7;
  color: var(--accent-strong);
  padding: 0.95rem 1rem;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.55;
}

.check-list li {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 0.85rem 0.95rem 0.85rem 2.55rem;
  position: relative;
  box-shadow: 0 8px 22px rgba(24, 24, 24, 0.03);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0.95rem;
  top: 0.86rem;
  color: var(--green);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 0;
  overflow: hidden;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem 1.05rem;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #f4f6f2;
  color: var(--accent);
  font-size: 1.05rem;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
  background: var(--accent);
  color: #fff;
}

details p {
  border-top: 1px solid var(--line);
  margin-top: 0;
  padding: 0.95rem 1.05rem 1.05rem;
  color: var(--text-muted);
  background: #fbfcfa;
}

.cta-section {
  background:
    linear-gradient(120deg, rgba(32, 34, 37, 0.94), rgba(32, 34, 37, 0.8)),
    url("assets/banners/bottom-cta.webp") center / cover;
  color: #fff;
}

.cta-inner {
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cta-inner > div {
  max-width: 760px;
}

.cta-inner .eyebrow {
  color: #f0c664;
}

.cta-inner h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.14;
}

.cta-inner p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  background: var(--surface);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-inner a {
  font-weight: 800;
  color: var(--text);
}

@media (max-width: 920px) {
  .hero-compact {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .hero-lead {
    max-width: 100%;
    text-align: left;
    white-space: normal;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .section-head > p {
    max-width: 100%;
    text-align: left;
    white-space: normal;
  }

  .banner-section > .container > .section-head > p {
    max-width: 100%;
    white-space: normal;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .tip-layout,
  .tip-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tip-feature {
    min-height: 260px;
  }

  .brand-detail {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem;
  }

  .brand-action {
    justify-items: start;
  }

  .updated {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .header-titlebar {
    min-height: 58px;
    padding: 0.72rem 1rem;
  }

  .header-tabs {
    padding: 0.45rem 1rem;
  }

  .site-title {
    font-size: 1rem;
    white-space: normal;
  }

  .tab-nav {
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.18rem;
    padding: 0.22rem;
    scrollbar-width: none;
  }

  .tab-nav::-webkit-scrollbar {
    display: none;
  }

  .tab-nav a {
    flex: 0 0 auto;
    padding: 0.5rem 0.62rem;
    font-size: 0.84rem;
  }

  .mobile-break {
    display: inline;
  }

  h1 {
    font-size: 1.18rem;
    text-align: left;
  }

  .hero {
    padding: 16px 0;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .banner-heading {
    align-items: start;
    flex-direction: column;
  }

  .tip-layout,
  .tip-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .brand-banner {
    aspect-ratio: 1920 / 520;
    min-height: 0;
    padding: 0.75rem;
  }

  .banner-placeholder {
    aspect-ratio: 16 / 7;
    min-height: 154px;
    padding: 1rem;
  }

  .banner-has-art {
    aspect-ratio: 1 / 1;
  }

  .banner-better {
    background-image:
      url("assets/banners/better-banner-mobile.gif"),
      linear-gradient(125deg, #15171b 0%, #2c1b24 44%, #a51e2a 100%);
  }

  .banner-trump {
    background-image:
      url("assets/banners/trump-banner-mobile.gif"),
      linear-gradient(125deg, #191a17 0%, #3a3321 48%, #9b7a2d 100%);
  }

  .banner-noble {
    background-image:
      url("assets/banners/noble-banner-mobile.gif"),
      linear-gradient(140deg, #283940, #2d7254);
  }

  .banner-igloo {
    background-image:
      url("assets/banners/igloo-banner-mobile.gif"),
      linear-gradient(140deg, #24333d, #6a8fa3);
  }

  .banner-kingdom {
    background-image:
      url("assets/banners/kingdom-banner-mobile.gif"),
      linear-gradient(140deg, #301f26, #b51f2a 58%, #c59b43);
  }

  .brand-banner__content {
    align-items: start;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.58rem 0.65rem;
  }

  .brand-banner__content b {
    font-size: 1.05rem;
  }

  .banner-placeholder .brand-banner__content {
    align-items: flex-start;
    justify-content: center;
    padding: 0;
  }

  .banner-placeholder .brand-banner__content b {
    font-size: 2.05rem;
  }

  .banner-placeholder .brand-banner__content small {
    display: block;
    max-width: 260px;
    font-size: 0.82rem;
  }

  .banner-placeholder .banner-rank {
    margin-bottom: 0.3rem;
  }

  .brand-banner__content small,
  .brand-banner__content i {
    display: none;
  }

  section {
    padding: 42px 0;
  }
}
