:root {
  --bg: #F7F8FB;
  --surface: #FFFFFF;
  --surface-alt: #FBFBFE;
  --border: #EAECF3;
  --ink: #15171D;
  --ink-dim: #5B6070;
  --ink-faint: #9298A8;
  --coral: #FF6B57;
  --coral-soft: #FFEDE9;
  --coral-mid: #FF9B70;
  --mint: #0FB39C;
  --mint-soft: #E1F8F3;
  --blue: #4C6FFF;
  --blue-soft: #ECF0FF;
  --display: "Lexend", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "Space Mono", monospace;
  --shadow-sm: 0 2px 10px rgba(20, 22, 30, 0.05);
  --shadow-md: 0 14px 34px -12px rgba(20, 22, 30, 0.14);
}

.asw-switcher {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  font-size: 0.9rem;
}

.asw-switcher ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.asw-switcher a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

.asw-switcher a[aria-current="page"] {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--ink);
  font-weight: 700;
}

.asw-disclosure {
  background: var(--surface);
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border-left: 4px solid var(--coral);
  margin: 0 0 1.5rem;
}

.asw-toc {
  margin: 1.25rem 0;
}

.asw-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.asw-quick-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  background: var(--surface);
  text-decoration: none !important;
  color: inherit;
}

.asw-mini-score {
  font-weight: 800;
  font-family: var(--mono);
  color: var(--coral);
}

.asw-method {
  margin: 0 0 2rem;
}

.asw-method-note {
  color: var(--ink-dim);
  font-size: 0.92rem;
}

.compare-wrap {
  padding: 8px 0 40px;
}

.compare-wrap h2 {
  font-size: 20px;
  margin-bottom: 18px;
  font-family: var(--display);
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.compare-table th {
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  background: var(--surface-alt);
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  vertical-align: middle;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:hover td {
  background: var(--surface-alt);
}

.ct-rank {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--coral);
}

.ct-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px;
}

.ct-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  background: var(--mint-soft);
  color: var(--mint);
  padding: 3px 9px;
  border-radius: 100px;
}

.ct-rating {
  font-family: var(--mono);
  font-weight: 700;
}

@media (max-width: 760px) {
  .compare-table thead { display: none; }
  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table td {
    display: block;
    width: 100%;
  }
  .compare-table tr {
    border-bottom: 1px solid var(--border);
    padding: 14px 16px;
  }
  .compare-table td {
    border: none;
    padding: 3px 0;
  }
  .compare-table td::before {
    content: attr(data-label);
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink-faint);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
}

.product {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 150px;
}

.asw-list .product:first-of-type {
  border-top: none;
}

.product-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.rank-num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
}

.product-title-wrap {
  flex: 1;
  min-width: 200px;
}

.product-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--mint);
  background: var(--mint-soft);
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  margin-right: 6px;
  display: inline-block;
}

.asw-tested,
.asw-research {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.asw-tested {
  background: var(--mint-soft);
  color: var(--mint);
}

.asw-research {
  background: var(--blue-soft);
  color: #3148a5;
}

.product-title-wrap h2 {
  font-size: 24px;
  margin: 4px 0 0;
  font-family: var(--display);
}

.asw-why {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--ink-dim);
}

.score-ring {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.sr-bg {
  fill: none;
  stroke: var(--border);
}

.sr-fg {
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-dasharray: 170;
  transition: stroke-dashoffset 1.2s ease;
}

.score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-media {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: linear-gradient(155deg, var(--surface-alt), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.asw-photo-ph {
  width: calc(100% - 32px);
  min-height: 90px;
  border: 1px dashed var(--ink-faint);
  border-radius: 12px;
  color: var(--ink-faint);
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
}

.product-body p.verdict {
  font-size: 15.5px;
  color: var(--ink-dim);
  margin: 0 0 20px;
}

.product .verdict {
  font-size: 15.5px;
  color: var(--ink-dim);
  margin: 0 0 20px;
}

.product-short .spec-chips {
  margin-bottom: 16px;
}

.product-short .asw-scores {
  margin-bottom: 0;
}

.spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.spec-chip {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-dim);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 6px;
}

.asw-scores {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.asw-scores li {
  display: grid;
  grid-template-columns: 70px 1fr 36px;
  gap: 0.45rem;
  align-items: center;
  margin: 0.35rem 0;
  font-size: 0.82rem;
}

.asw-bar {
  height: 7px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.asw-bar-fill {
  display: block;
  height: 100%;
  background: var(--coral);
}

.score-high .sr-fg,
.score-high .asw-bar-fill {
  stroke: var(--mint);
  background: var(--mint);
}

.score-high .score-num,
.asw-scores .score-high b {
  color: #0B8F7D;
}

.score-mid .sr-fg,
.score-mid .asw-bar-fill {
  stroke: #E0A21A;
  background: #E0A21A;
}

.score-mid .score-num,
.asw-scores .score-mid b {
  color: #A87800;
}

.score-low .sr-fg,
.score-low .asw-bar-fill {
  stroke: var(--coral);
  background: var(--coral);
}

.score-low .score-num,
.asw-scores .score-low b {
  color: var(--coral);
}

.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

@media (max-width: 520px) {
  .pc-grid {
    grid-template-columns: 1fr;
  }
}

.pc-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.pc-col.pro h4 { color: var(--mint); }
.pc-col.con h4 { color: var(--coral); }

.pc-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-col li {
  display: flex;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-dim);
  margin-bottom: 8px;
  align-items: flex-start;
}

.pc-col li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pc-col.pro li svg { color: var(--mint); }
.pc-col.con li svg { color: var(--coral); }

.product-foot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0 18px;
  margin: 0;
  border-top: none;
}

.asw-buy {
  margin: 0;
}

.asw-buy-soon {
  color: #8a6a3b;
  font-size: 0.9rem;
}

.asw-cta {
  display: inline-flex;
}

.asw-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.2rem 0 0.9rem;
}

@media (max-width: 700px) {
  .asw-grid-2 {
    grid-template-columns: 1fr;
  }
}

.asw-for,
.asw-skip {
  background: var(--surface-alt);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}

.asw-for h3,
.asw-skip h3,
.asw-section h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-family: var(--display);
}

.asw-section {
  margin-top: 1rem;
}

.asw-section p {
  color: var(--ink-dim);
  margin: 0;
}

.asw-hands {
  background: var(--mint-soft);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-top: 0.8rem;
}

.asw-alt {
  margin-top: 0.8rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 560px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}

.guide-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.guide-tile .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: var(--coral-soft);
  color: var(--coral);
}

.guide-tile .ic svg {
  width: 18px;
  height: 18px;
}

.guide-tile:nth-child(4n+2) .ic { background: var(--mint-soft); color: var(--mint); }
.guide-tile:nth-child(4n+3) .ic { background: var(--blue-soft); color: var(--blue); }

.guide-tile h4 {
  font-size: 15.5px;
  margin: 0 0 6px;
}

.guide-tile p {
  font-size: 13.5px;
  color: var(--ink-dim);
  margin: 0;
}

.asw-guide {
  padding: 20px 0 56px;
}

.asw-faq {
  padding: 0 0 40px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--ink-faint);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--coral);
}

.faq-item .faq-a {
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: var(--ink-dim);
}

.asw-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  background: var(--ink);
  color: #fff;
}

body:has(.asw-roundup) .asw-hide-discover {
  display: none !important;
}

.asw-media-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.asw-img-caption {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ink-faint);
  line-height: 1.4;
}

.asw-hub-link {
  text-decoration: none;
}

.asw-hub .product {
  padding-top: 0;
  border-top: none;
}

.asw-specs {
  margin: 1.4rem 0 0.4rem;
}

.asw-specs h2,
.asw-appears h2 {
  font-size: 20px;
  margin: 0 0 14px;
  font-family: var(--display);
}

.asw-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
}

@media (max-width: 560px) {
  .asw-specs-grid {
    grid-template-columns: 1fr;
  }
}

.asw-specs-grid > .asw-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}

.asw-spec-ico {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--coral), var(--coral-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asw-spec-ico svg {
  width: 18px;
  height: 18px;
}

.asw-spec-copy {
  min-width: 0;
  flex: 1;
}

.asw-specs-grid dt {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  margin: 0 0 4px;
}

.asw-specs-grid dd {
  margin: 0;
  font-size: 0.95rem;
}

.asw-spec-group {
  grid-column: 1 / -1;
  background: transparent;
  padding: 14px 0 2px;
}

.asw-spec-group dt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: var(--display);
  color: var(--coral);
  letter-spacing: 0.08em;
  background: var(--coral-soft);
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
}

.asw-spec-group dt svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  padding: 4px;
  box-sizing: content-box;
  border-radius: 8px;
  background: linear-gradient(150deg, var(--coral), var(--coral-mid));
  color: #fff;
}

.asw-spec-group dd {
  display: none;
}

.asw-appears {
  margin-top: 1.6rem;
}

.asw-appears ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.asw-appears li {
  margin: 0 0 0.45rem;
}

.asw-appears a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.asw-virtual {
  padding: 1.5rem 0 3rem;
}

.asw-virtual-head {
  margin: 0 0 1.25rem;
}

.asw-virtual-head h1 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
}

.asw-brand-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.asw-brand-index a {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  background: var(--surface);
}

.asw-brand-index span {
  color: var(--ink-faint);
  font-weight: 500;
}

.asw-brand-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
}

.asw-brand-tabs a {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.9rem;
  background: var(--surface);
}

.asw-brand-tabs a[aria-current="page"] {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

.asw-brand-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.asw-brand-row {
  display: grid;
  grid-template-columns: 48px 128px minmax(0, 1fr) auto;
  gap: 16px 20px;
  align-items: center;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px 20px 16px 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.asw-brand-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--coral);
}

.asw-brand-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.asw-brand-row.is-first {
  background: var(--surface);
}

.asw-brand-rank {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--coral);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.asw-brand-row-media {
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  border-radius: 18px;
  overflow: hidden;
}

.asw-brand-row-media img {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.asw-brand-row-media .asw-photo-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--ink-faint);
  text-align: center;
  padding: 8px;
}

.asw-brand-kicker {
  margin: 0 0 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
}

.asw-brand-row-copy h2 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.3;
}

.asw-brand-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.asw-brand-facts li {
  font-size: 0.82rem;
  background: var(--coral-soft);
  color: var(--coral);
  border-radius: 999px;
  padding: 5px 11px;
}

.asw-brand-row-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-width: 156px;
}

.asw-brand-row-actions .btn {
  text-align: center;
  justify-content: center;
}

.asw-brand-score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 4px;
}

.asw-brand-score small {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-faint);
}

@media (max-width: 720px) {
  .asw-brand-row {
    grid-template-columns: 36px 88px minmax(0, 1fr);
    padding: 14px 14px 14px 12px;
  }
  .asw-brand-rank {
    width: 32px;
    height: 32px;
    font-size: 13px;
    border-radius: 10px;
  }
  .asw-brand-row-media,
  .asw-brand-row-media img {
    width: 88px;
    height: 88px;
  }
  .asw-brand-row-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
    align-items: center;
  }
  .asw-brand-score {
    width: 100%;
    justify-content: flex-start;
    margin: 0;
  }
  .asw-brand-row-actions .btn {
    flex: 1;
  }
}

.asw-compare-kicker {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 1.75rem 0 0.85rem;
}

.asw-compare-feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 900px) {
  .asw-compare-feed {
    grid-template-columns: 1fr 1fr;
  }
}

.asw-compare-post {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.1rem 1.15rem 1.2rem;
}

.asw-compare-post:hover {
  border-color: #d8dbe6;
}

.asw-compare-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: var(--surface-alt);
  border-radius: 14px;
  padding: 0.75rem 0.6rem;
}

.asw-compare-watch {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.asw-compare-watch img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.asw-compare-watch strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  line-height: 1.3;
}

.asw-compare-score {
  display: inline-block;
  margin-top: 0.25rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--mint);
  font-weight: 700;
}

.asw-vs-mid {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--mono);
}

.asw-compare-copy h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  line-height: 1.3;
}

.asw-compare-copy p {
  margin: 0 0 0.35rem;
  color: var(--ink-dim);
  font-size: 0.9rem;
}

.asw-compare-spec {
  font-size: 0.82rem !important;
  color: var(--ink-faint) !important;
}

.asw-compare-copy .btn {
  margin-top: 0.45rem;
  display: inline-flex;
}

.asw-compare-heads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 1.5rem;
}

@media (max-width: 700px) {
  .asw-compare-heads {
    grid-template-columns: 1fr;
  }
}

.asw-compare-side {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
}

.asw-compare-side img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.asw-compare-hubs a {
  color: var(--blue);
  font-weight: 600;
}

.asw-acc {
  margin-top: 1rem;
}

.asw-acc h3 {
  font-size: 1rem;
  margin: 0 0 0.6rem;
}

.asw-acc-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.asw-acc-card {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.55rem;
  background: var(--surface-alt);
}

.asw-acc-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.asw-acc-card span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-faint);
  text-transform: capitalize;
}
