.adq-home {
  --adq-home-width: 1240px;
  --adq-home-gap: 28px;
  --adq-home-channel-width: 294px;
  --adq-home-channel-pill-width: var(--adq-home-channel-width);
  --adq-home-channel-pill-height: var(--adq-home-channel-item-height);
  --adq-home-channel-pill-padding: 12px;
  --adq-home-channel-title-x: 0px;
  --adq-home-channel-item-height: 42px;
  --adq-home-channel-row-height: 42px;
  --adq-home-channel-item-gap: 4px;
  --adq-home-right-width: 300px;
  --adq-home-hero-height: auto;
  --adq-home-hero-left: minmax(0, 1fr);
  --adq-home-hero-gap: 26px;
  --adq-home-hero-title-size: 48px;
  --adq-home-hero-card-width: 240px;
  --adq-home-hero-card-height: 300px;
  --adq-home-hero-card-radius: 18px;
  --adq-home-hero-divider: #eeeeee;
  --adq-home-hero-card-bg: linear-gradient(180deg, #737982 0%, #1c2026 100%);
  --adq-home-hero-card-text: #ffffff;
  --adq-home-feed-image-width: 560px;
  --adq-home-feed-image-radius: 14px;
  --adq-home-feed-item-gap: 22px;
  --adq-home-bg: #ffffff;
  --adq-home-text: #171717;
  --adq-home-muted: #666666;
  --adq-home-active-bg: #0f0f10;
  --adq-home-active-color: #fff;
  --adq-home-hover-bg: transparent;
  --adq-home-radius: 12px;
  box-sizing: border-box;
  width: min(100%, var(--adq-home-width));
  min-height: calc(100vh - var(--ls-header-height, 68px));
  margin: 0 auto;
  padding: 24px 28px 70px;
  display: grid;
  grid-template-columns: var(--adq-home-channel-width) minmax(0, 660px);
  gap: var(--adq-home-gap);
  align-items: start;
  justify-content: center;
  background: var(--adq-home-bg);
  box-shadow: 0 0 0 100vmax var(--adq-home-bg);
  clip-path: inset(0 -100vmax);
  color: var(--adq-home-text);
}

.adq-home *,
.adq-home *::before,
.adq-home *::after {
  box-sizing: border-box;
}

.adq-home-has-right {
  grid-template-columns: var(--adq-home-channel-width) minmax(0, 660px) var(--adq-home-right-width);
}

.adq-home-channel {
  position: sticky;
  top: calc(var(--ls-header-height, 68px) + 28px);
  align-self: start;
  width: var(--adq-home-channel-width);
  padding-top: 0;
}

.adq-home-channel-card {
  width: 100%;
  padding: 10px;
  border: 1px solid #dde5df;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .02);
}

.adq-home-channel-title {
  padding: 0 var(--adq-home-channel-title-x) 14px;
  color: var(--adq-home-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.adq-home-channel-list {
  display: grid;
  gap: 8px;
}

.adq-home-channel-item {
  width: 100%;
  min-width: 0;
  height: 42px;
  border: 0;
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: #303944;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 0 13px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-align: left;
  box-sizing: border-box;
  letter-spacing: 0;
}

.adq-home-channel-item i {
  width: 20px;
  flex: 0 0 20px;
  color: #677485;
  font-size: 18px;
  line-height: 1;
  text-align: center;
}

.adq-home-channel-item:hover {
  background: #f3f7f5;
  color: var(--adq-home-text);
}

.adq-home-channel-item.is-active {
  position: relative;
  width: 100%;
  height: 42px;
  border-radius: 8px;
  background: #eef5f2;
  color: #006357;
}

.adq-home-channel-item.is-active::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 11px;
  width: 3px;
  height: 20px;
  border-radius: 999px;
  background: #08766a;
}

.adq-home-channel-item.is-active i {
  color: #08766a;
  margin-left: 10px;
}

.adq-home-channel-item:not(.is-active) {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 13px;
  padding-right: 13px;
  background: transparent;
}

.adq-home-channel-item em {
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  opacity: .62;
}

.adq-home-active-none .adq-home-channel-item.is-active,
.adq-home-active-text .adq-home-channel-item.is-active,
.adq-home-active-line .adq-home-channel-item.is-active,
.adq-home-active-soft .adq-home-channel-item.is-active {
  width: calc(100% - 28px);
  height: var(--adq-home-channel-row-height);
  margin-left: 14px;
  margin-right: 14px;
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  color: var(--adq-home-text);
  border-radius: 0;
}

.adq-home-active-none .adq-home-channel-item.is-active {
  color: var(--adq-home-muted);
}

.adq-home-active-text .adq-home-channel-item.is-active {
  font-weight: 900;
}

.adq-home-active-line .adq-home-channel-item.is-active {
  padding-left: 12px;
  border-left: 3px solid var(--adq-home-active-bg);
}

.adq-home-active-soft .adq-home-channel-item.is-active {
  width: 100%;
  height: var(--adq-home-channel-pill-height);
  margin-left: 0;
  margin-right: 0;
  padding: 0 var(--adq-home-channel-pill-padding);
  border-radius: min(var(--adq-home-radius), 13px);
  background: color-mix(in srgb, var(--adq-home-active-bg) 9%, transparent);
  color: var(--adq-home-text);
}

.adq-home-active-custom .adq-home-channel-item.is-active {
  width: min(100%, var(--adq-home-channel-pill-width));
}

.adq-home-channel-section {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.adq-home-channel-section-title {
  color: #8a96a5;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
}

.adq-home-channel-link {
  min-width: 0;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #202833;
  text-decoration: none;
}

.adq-home-channel-link b {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4d3a2e, #171717);
  color: rgba(255, 255, 255, .78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  overflow: hidden;
}

.adq-home-channel-link:nth-child(3) b,
.adq-home-channel-link:nth-child(4) b {
  background: linear-gradient(135deg, #1f3b52, #071a2e);
}

.adq-home-channel-link.is-community b {
  background: linear-gradient(180deg, #202b56 0%, #6e4394 54%, #101827 100%);
  font-size: 10px;
  color: #ffffff;
}

.adq-home-channel-link span {
  min-width: 0;
  color: #202833;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.adq-home-channel-link em {
  margin-top: 5px;
  display: block;
  color: #7f8b9a;
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
}

.adq-home-main {
  min-width: 0;
}

.adq-home-right {
  min-width: 0;
  align-self: start;
  position: sticky;
  top: calc(var(--ls-header-height, 68px) + 28px);
  width: var(--adq-home-right-width);
  display: grid;
  gap: 18px;
}

.adq-home-side-focus {
  display: block;
  width: 100%;
  padding: 18px;
  border: 1px solid var(--ls-border, #eeeeee);
  border-radius: 18px;
  background: #f8f8f8;
  color: var(--adq-home-text);
  text-decoration: none;
  box-sizing: border-box;
}

.adq-home-side-eyebrow {
  margin-bottom: 8px;
  color: var(--adq-home-muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.adq-home-side-focus h2 {
  margin: 0;
  color: var(--adq-home-text);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: -.5px;
  white-space: pre-line;
}

.adq-home-side-focus p {
  margin: 12px 0 0;
  color: var(--adq-home-muted);
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-line;
}

.adq-home-side-resources {
  min-width: 0;
  border-bottom: 1px solid var(--ls-border, #eeeeee);
  padding: 20px 0;
}

.adq-home-side-resources h3 {
  margin: 0 0 14px;
  color: var(--adq-home-text);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -.4px;
}

.adq-home-side-resource-list {
  display: grid;
}

.adq-home-side-resource {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--ls-border, #eeeeee);
  color: var(--adq-home-text);
  text-decoration: none;
}

.adq-home-side-resource:last-child {
  border-bottom: 0;
}

.adq-home-side-resource span,
.adq-home-side-resource em {
  display: block;
  color: var(--adq-home-muted);
  font-size: 13px;
  line-height: 1.45;
  font-style: normal;
}

.adq-home-side-resource strong {
  display: block;
  margin: 4px 0;
  color: var(--adq-home-text);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 750;
}

.adq-home-official-widgets {
  min-width: 0;
  width: 100%;
  display: grid;
  gap: 18px;
}

.adq-home-official-widgets:empty {
  display: none;
}

.adq-home-official-widgets > * {
  max-width: 100%;
  box-sizing: border-box;
}

.adq-home-hero {
  min-height: var(--adq-home-hero-height);
  margin-bottom: 4px;
  padding: 4px 0 28px;
  border-bottom: 1px solid var(--adq-home-hero-divider);
  display: grid;
  grid-template-columns: var(--adq-home-hero-left) var(--adq-home-hero-card-width);
  gap: var(--adq-home-hero-gap);
  align-items: stretch;
}

.adq-home-hero-copy {
  min-width: 0;
  padding-right: 2px;
}

.adq-home-hero-eyebrow,
.adq-home-hero-story-head {
  color: var(--adq-home-muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.adq-home-hero-eyebrow {
  display: block;
  margin: 0 0 14px;
}

.adq-home-hero-title {
  margin: 0 0 16px;
  max-width: 420px;
  color: var(--adq-home-text);
  font-size: var(--adq-home-hero-title-size);
  line-height: 1.06;
  font-weight: 820;
  letter-spacing: -2.2px;
  white-space: pre-line;
}

.adq-home-hero-desc {
  margin: 0;
  max-width: 390px;
  color: var(--adq-home-muted);
  font-size: 16px;
  line-height: 1.75;
  white-space: pre-line;
}

.adq-home-hero-story {
  min-width: 0;
  padding-left: 24px;
  border-left: 1px solid var(--adq-home-hero-divider);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.adq-home-hero-story:first-child {
  padding-left: 0;
  border-left: 0;
}

.adq-home-hero-story-head {
  width: 100%;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.adq-home-hero-story-head em {
  font-style: normal;
  white-space: nowrap;
}

.adq-home-hero-story-head b {
  font-weight: inherit;
}

.adq-home-hero-cards {
  position: relative;
  width: 100%;
  height: var(--adq-home-hero-card-height);
  overflow: hidden;
}

.adq-home-hero-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--adq-home-hero-card-radius);
  background: var(--adq-home-hero-card-bg);
  background-size: cover;
  background-position: center;
  color: var(--adq-home-hero-card-text);
  text-decoration: none;
  padding: 18px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity .18s ease, transform .18s ease;
  box-sizing: border-box;
}

.adq-home-hero-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.adq-home-hero-card i {
  opacity: .52;
  font-size: 34px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.adq-home-hero-card strong {
  margin-top: auto;
  display: block;
  max-width: 100%;
  font-size: 27px;
  line-height: 1.16;
  font-weight: 850;
  letter-spacing: -.9px;
  white-space: pre-line;
}

.adq-home-hero-card p {
  margin: 10px 0 0;
  color: color-mix(in srgb, currentColor 84%, transparent);
  font-size: 12.5px;
  line-height: 1.65;
  white-space: pre-line;
}

.adq-home-hero-card-foot {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.adq-home-hero-card-foot span {
  min-width: 0;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: inherit;
  height: 26px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
}

.adq-home-hero-card-foot em {
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.adq-home-hero-dots {
  width: 100%;
  height: 16px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.adq-home-hero-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: #d7d7d7;
  padding: 0;
  cursor: pointer;
}

.adq-home-hero-dots button.is-active {
  width: 20px;
  background: #111111;
}

.adq-home-style-simple {
  grid-template-columns: minmax(0, 1fr);
}

.adq-home-style-simple.adq-home-has-right {
  grid-template-columns: minmax(0, 660px) var(--adq-home-right-width);
}

.adq-home-style-simple .adq-home-channel {
  position: static;
  width: 100%;
}

.adq-home-style-simple .adq-home-channel-list {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.adq-home-style-simple .adq-home-channel-item,
.adq-home-style-simple .adq-home-channel-item:not(.is-active) {
  width: auto;
  min-width: max-content;
  height: 36px;
  margin: 0;
  padding: 0 var(--adq-home-channel-pill-padding);
  border-radius: min(var(--adq-home-radius), 999px);
}

.adq-home-style-simple .adq-home-channel-item.is-active {
  height: 36px;
}

.adq-home-style-feed_only {
  grid-template-columns: minmax(0, 1fr);
}

.adq-home-style-feed_only.adq-home-has-right {
  grid-template-columns: minmax(0, 660px) var(--adq-home-right-width);
}

.adq-home-style-feed_only .adq-home-channel {
  display: none;
}

.adq-home-feed-title {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 900;
}

.adq-home-feed {
  display: grid;
  gap: 0;
  padding-top: 4px;
}

.adq-home-feed-ad {
  margin: 0 !important;
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--adq-home-hero-divider);
  background: transparent !important;
  box-shadow: none !important;
}

.adq-home-feed-ad-link {
  display: block;
  color: var(--adq-home-text);
  text-decoration: none;
  padding: 18px;
  border: 1px solid #e7e7e7;
  border-radius: 22px;
  background: #fff;
  transition: border-color .18s ease, transform .18s ease;
}

.adq-home-feed-ad-link:hover {
  border-color: #dadada;
  transform: translateY(-1px);
}

.adq-home-feed-ad-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 22px;
  align-items: stretch;
}

.adq-home-feed-ad.is-ad-landscape .adq-home-feed-ad-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
}

.adq-home-feed-ad.is-ad-portrait .adq-home-feed-ad-grid {
  grid-template-columns: minmax(0, 1fr) 205px;
}

.adq-home-feed-ad.is-ad-square .adq-home-feed-ad-grid {
  grid-template-columns: minmax(0, 1fr) 220px;
}

.adq-home-feed-ad-copy {
  min-width: 0;
  padding: 2px 0 0;
}

.adq-home-feed-ad-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--adq-home-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.adq-home-feed-ad-kicker em {
  height: 24px;
  padding: 0 13px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
}

.adq-home-feed-ad-kicker span {
  color: #9aa1aa;
}

.adq-home-feed-ad h3 {
  margin: 0 0 14px;
  color: var(--adq-home-text);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -.5px;
}

.adq-home-feed-ad p {
  margin: 0;
  max-width: 100%;
  color: #4f5660;
  font-size: 15px;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.adq-home-feed-ad.is-ad-landscape p,
.adq-home-feed-ad.is-ad-portrait p {
  -webkit-line-clamp: 4;
}

.adq-home-feed-ad-tags {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.adq-home-feed-ad-tags:empty {
  display: none;
}

.adq-home-feed-ad-tags span {
  height: 30px;
  padding: 0 14px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  background: #fff;
  color: #5f666f;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 750;
}

.adq-home-feed-ad-story {
  position: relative;
  justify-self: end;
  width: 100%;
  min-height: 244px;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(126, 133, 142, .92), rgba(31, 36, 43, .98)),
    linear-gradient(180deg, #9aa1aa, #1f242b);
  color: #fff;
  overflow: hidden;
}

.adq-home-feed-ad-story.is-landscape {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.adq-home-feed-ad-story.is-portrait {
  aspect-ratio: 4 / 5;
}

.adq-home-feed-ad-story.is-square {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.adq-home-feed-ad-slide {
  position: absolute;
  inset: 0;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity .22s ease, transform .22s ease;
}

.adq-home-feed-ad-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.adq-home-feed-ad-slide img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.adq-home-feed-ad-slide.is-landscape img,
.adq-home-feed-ad-slide.is-square img,
.adq-home-feed-ad-story.is-landscape .adq-home-feed-ad-slide img,
.adq-home-feed-ad-story.is-square .adq-home-feed-ad-slide img {
  object-fit: cover;
}

.adq-home-feed-ad-slide.is-portrait img,
.adq-home-feed-ad-story.is-portrait .adq-home-feed-ad-slide img {
  object-fit: contain;
  background: #252a31;
}

.adq-home-feed-ad-slide-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, .16), rgba(17, 17, 17, .82)),
    linear-gradient(90deg, rgba(17, 17, 17, .34), rgba(17, 17, 17, .08));
}

.adq-home-feed-ad-story.is-clean .adq-home-feed-ad-slide-shade {
  display: none;
}

.adq-home-feed-ad-slide > i {
  position: relative;
  z-index: 2;
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: 36px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.adq-home-feed-ad-story-body {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.adq-home-feed-ad-story-body strong {
  display: block;
  color: #fff;
  font-size: 23px;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -.6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.adq-home-feed-ad-story-body span {
  display: -webkit-box;
  margin-top: 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.adq-home-feed-ad-story-foot {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.adq-home-feed-ad-story-foot b {
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 850;
}

.adq-home-feed-ad-story-foot em {
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.adq-home-feed-ad-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  color: #111111;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.94);
  transition: opacity .18s ease, transform .18s ease;
}

.adq-home-feed-ad-nav.is-prev {
  left: 10px;
}

.adq-home-feed-ad-nav.is-next {
  right: 10px;
}

.adq-home-feed-ad-story:hover .adq-home-feed-ad-nav {
  opacity: 1;
  transform: scale(1);
}

.adq-home-feed-ad-nav i {
  font-size: 20px;
  line-height: 1;
}

.adq-home-feed-ad-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
}

.adq-home-feed-ad-dots i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .46);
}

.adq-home-feed-ad-dots i.is-active {
  width: 16px;
  background: #ffffff;
}

.adq-home-feed-ad-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--adq-home-muted);
  font-size: 13px;
}

.adq-home-feed-ad-bottom span {
  color: #9aa1aa;
  min-width: 0;
}

.adq-home-feed-ad-bottom b {
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.adq-home-post {
  padding: var(--adq-home-feed-item-gap) 0;
  border-bottom: 1px solid var(--adq-home-hero-divider);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
}

.adq-home .adq-home-feed > .adq-home-post.ls-post-item {
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.adq-home .adq-home-feed .ls-post-item,
.adq-home .adq-home-post {
  background: transparent !important;
  box-shadow: none !important;
}

.adq-home-post-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.adq-home-author-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: #111111;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.adq-home-author-avatar img,
.adq-home-author-avatar .avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.adq-home-avatar-verify {
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 2;
  line-height: 1;
}

.adq-home-avatar-verify:empty {
  display: none;
}

.adq-home-post-main {
  min-width: 0;
}

.adq-home-post-head {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.adq-home-post-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  color: var(--adq-home-muted);
  font-size: 14px;
  margin-bottom: 0;
}

.adq-home-post-name {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.adq-home-post-name a {
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.adq-home-post-name .nickname,
.adq-home-post-name strong {
  color: var(--adq-home-text);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 750;
}

.adq-home-post-badges {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}

.adq-home-post-submeta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  color: var(--adq-home-muted);
  font-size: 13px;
  line-height: 1.35;
}

.adq-home-dot {
  color: #b9b9b9;
}

.adq-home-power-badges {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.adq-home-power-badges .ls-power-badge {
  width: 17px;
  height: 17px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f6f7f8;
  color: #8d96a3;
  border: 1px solid #ebedf0;
  font-size: 11px;
  line-height: 1;
}

.adq-home-power-badges .ls-power-badge-vip,
.adq-home-power-badges .ls-power-badge-pay {
  color: #111111;
}

.adq-home-unlock-count {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #9aa1aa;
}

.adq-home-power-mask {
  position: relative;
  width: fit-content;
  min-width: 300px;
  max-width: min(100%, 420px);
  margin: 15px 0 4px !important;
  padding: 14px 14px 12px 42px !important;
  border: 1px solid #e7e9ed !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: none !important;
  box-sizing: border-box;
}

.adq-home-power-mask .ls-power-header {
  position: absolute;
  left: 14px;
  top: 15px;
  margin: 0;
  justify-content: flex-start;
  color: #9ca3af;
  font-size: 0;
  line-height: 1;
}

.adq-home-power-mask .ls-power-header > i {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #f5f6f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9aa1aa;
  font-size: 13px;
}

.adq-home-power-mask .ls-power-header span {
  display: none;
}

.adq-home-power-mask .ls-power-cards {
  justify-content: flex-start;
  gap: 8px;
}

.adq-home-power-mask .ls-power-card {
  min-height: 44px;
  padding: 6px 7px 6px 9px;
  border-radius: 999px;
  background: #fbfbfb !important;
  border: 1px solid #e8eaed !important;
  box-sizing: border-box;
  gap: 8px;
  max-width: 100%;
  box-shadow: none !important;
}

.adq-home-power-mask .ls-power-card:hover {
  border-color: #d7dbe0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.adq-home-power-mask .ls-power-card-icon {
  width: 28px;
  height: 28px;
  font-size: 14px;
  background: #f2f3f5 !important;
  color: #111111 !important;
  flex: 0 0 auto;
}

.adq-home-power-mask .ls-power-card-text {
  color: #4f5660;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
  white-space: nowrap;
  max-width: 132px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.adq-home-power-mask .ls-power-card-btn {
  height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: #111111 !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.adq-home-power-mask .ls-power-card-btn:hover {
  opacity: .86;
  transform: none !important;
  box-shadow: none !important;
}

.adq-home-power-mask .ls-power-footer {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid #f0f1f3;
  justify-content: flex-start;
  gap: 7px;
  color: #9aa1aa;
  font-size: 12px;
  line-height: 1.2;
}

.adq-home-power-mask .ls-power-footer i {
  color: #9aa1aa;
}

.adq-home-power-avatars {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.adq-home-power-avatars img {
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-left: -6px;
  background: #eef0f2;
}

.adq-home-power-avatars img:first-child {
  margin-left: 0;
}

.adq-home-power-avatar-empty {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f5f6f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a0a7b1;
  font-size: 13px;
  flex: 0 0 auto;
}

.adq-home-hidden-content {
  max-width: 560px;
  margin: 12px 0 0 !important;
  padding: 13px 15px !important;
  border: 1px dashed #dfe4ea !important;
  border-radius: 14px !important;
  background: #fff !important;
  color: #8b95a1;
  box-sizing: border-box;
}

.adq-home-hidden-content .ls-hidden-header {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7f8791;
  font-size: 13px;
}

.adq-home-hidden-content .ls-hidden-tag {
  margin-left: auto;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f5f6f7;
  color: #8b95a1;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.adq-home-hidden-content .ls-hidden-tip {
  margin-top: 10px;
  color: #9aa1aa;
  font-size: 13px;
}

.adq-home-article-extras {
  max-width: 560px;
  margin: 12px 0 0;
}

.adq-home-article-extras .adq-home-file-list {
  max-width: 560px;
  margin: 10px 0 0;
}

.adq-home-article-extras .post-file-item {
  min-height: 44px;
  border-radius: 12px;
  background: #f7f8fa;
}

.adq-home-article-extras .post-file-item:hover {
  background: #f1f3f5;
}

.adq-home-article-extras .post-file-icon {
  width: 30px;
  justify-content: center;
  font-size: 21px;
}

.adq-home-article-extras .post-file-name {
  font-size: 13px;
  font-weight: 700;
}

.adq-home-article-extras .post-file-size {
  font-size: 12px;
}

.adq-home-article-extras .adq-home-power-mask {
  margin-top: 12px !important;
}

.adq-home-article-extras .adq-home-hidden-content {
  margin-top: 10px !important;
}

.adq-home-post-more {
  color: var(--adq-home-muted);
  width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.adq-home-post-more:hover {
  background: #f5f5f5;
  color: var(--adq-home-text);
}

.adq-home-post-body {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 0;
}

.adq-home-post-text {
  display: block;
  color: inherit;
  text-decoration: none;
}

.adq-home-post-text:hover p {
  color: #111111;
}

.adq-home-post-body h2 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
}

.adq-home-post-body p {
  margin: 0 0 12px;
  max-width: 560px;
  color: #333333;
  font-size: 16px;
  line-height: 1.72;
}

.adq-home-cover {
  overflow: hidden;
  border-radius: var(--adq-home-feed-image-radius);
  border: 0;
  background: #f5f5f5;
  width: 82%;
  max-width: min(var(--adq-home-feed-image-width), 520px);
  aspect-ratio: 16 / 9;
  margin: 14px auto;
  padding: 0;
  display: block;
  cursor: zoom-in;
}

.adq-home-cover-auto.is-landscape {
  width: 82%;
  max-width: min(var(--adq-home-feed-image-width), 520px);
  aspect-ratio: 16 / 9;
}

.adq-home-cover-auto.is-portrait {
  width: 48%;
  max-width: min(var(--adq-home-feed-image-width), 300px);
  aspect-ratio: 4 / 5;
}

.adq-home-cover-auto.is-square {
  width: 58%;
  max-width: min(var(--adq-home-feed-image-width), 360px);
  aspect-ratio: 1 / 1;
}

.adq-home-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adq-home-gallery-frame {
  position: relative;
  width: 100%;
  margin: 14px 0 0;
}

.adq-home-gallery-frame::before,
.adq-home-gallery-frame::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 6px;
  z-index: 2;
  width: 34px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease;
}

.adq-home-gallery-frame::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.adq-home-gallery-frame::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.adq-home-gallery-frame:hover::before,
.adq-home-gallery-frame:hover::after {
  opacity: 1;
}

.adq-home-gallery {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 0 6px;
  scrollbar-width: none;
  user-select: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.adq-home-gallery::-webkit-scrollbar {
  display: none;
}

.adq-home-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 30px;
  height: 30px;
  margin-top: -18px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #111111;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.94);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .12);
  transition: opacity .18s ease, transform .18s ease;
}

.adq-home-gallery-nav.is-prev {
  left: 6px;
}

.adq-home-gallery-nav.is-next {
  right: 6px;
}

.adq-home-gallery-frame:hover .adq-home-gallery-nav {
  opacity: 1;
  transform: scale(1);
}

.adq-home-gallery-nav i {
  font-size: 20px;
  line-height: 1;
}

.adq-home-gallery-item {
  flex: 0 0 var(--adq-home-gallery-item-width, 96px);
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--adq-home-feed-image-radius);
  background: #f5f5f5;
  width: var(--adq-home-gallery-item-width, 96px);
  height: 96px;
  padding: 0;
  cursor: zoom-in;
  user-select: none;
}

.adq-home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.adq-home-image-preview {
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding: 48px;
  background: rgba(15, 23, 42, .82);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.adq-home-image-preview img {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
  cursor: default;
}

.adq-home-image-preview-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.adq-home-image-preview-close i {
  font-size: 22px;
  line-height: 1;
}

body.adq-home-preview-open {
  overflow: hidden;
}

.adq-home-video {
  position: relative;
  overflow: hidden;
  margin: 16px auto 4px;
  border-radius: var(--adq-home-feed-image-radius);
  background: #0f172a;
  display: block;
  text-decoration: none;
  color: #fff;
}

.adq-home-video.is-landscape,
.adq-home-video:not(.is-portrait) {
  width: 82%;
  max-width: min(var(--adq-home-feed-image-width), 560px);
  aspect-ratio: 16 / 9;
}

.adq-home-video.is-portrait {
  width: 46%;
  max-width: min(var(--adq-home-feed-image-width), 300px);
  aspect-ratio: 9 / 16;
}

.adq-home-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adq-home-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .48);
  color: #fff;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
}

.adq-home-video-play i {
  font-size: 24px;
  line-height: 1;
}

.adq-home-video-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  height: 22px;
  padding: 0 7px;
  border-radius: 6px;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.adq-home-music {
  width: min(100%, 520px);
  margin: 14px 0 4px;
  padding: 14px;
  border: 1px solid var(--adq-home-hero-divider);
  border-radius: 20px;
  background: linear-gradient(180deg, #fafafa, #f6f6f6);
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  box-shadow: none;
}

.adq-home-music-cover {
  position: relative;
  width: 86px;
  height: 86px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .28)),
    linear-gradient(135deg, #e8e0d4, #9a8f84);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 900;
}

.adq-home-music-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adq-home-music-cover i {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 21px;
  line-height: 1;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .26);
}

.adq-home-music-cover span {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1;
  opacity: .9;
}

.adq-home-music-main {
  min-width: 0;
}

.adq-home-music-top {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.adq-home-music-info {
  min-width: 0;
}

.adq-home-music-info strong {
  display: block;
  color: var(--adq-home-text);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.adq-home-music-info span {
  display: block;
  margin-top: 4px;
  color: var(--adq-home-muted);
  font-size: 13px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.adq-home-music-play {
  width: 34px;
  height: 34px;
  min-width: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #2f3a46;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  flex: 0 0 auto;
}

.adq-home-music-play i {
  font-size: 19px;
  line-height: 1;
}

.adq-home-music-wave {
  height: 34px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.adq-home-music-wave span {
  width: 4px;
  border-radius: 999px;
  background: #bdbdbd;
}

.adq-home-music-progress {
  height: 4px;
  margin-bottom: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4e4e4;
}

.adq-home-music-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #111111;
}

.adq-home-music-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--adq-home-muted);
  font-size: 12px;
  font-weight: 650;
}

.adq-home-official-post {
  padding: var(--adq-home-feed-item-gap) 0;
  border-bottom: 1px solid var(--adq-home-hero-divider);
}

.adq-home-official-post > .ls-post-item {
  margin: 0;
  border-bottom: 0;
  box-shadow: none;
}

.adq-home-redbag-wrap {
  width: 100%;
  margin: 18px 0 20px;
  display: flex;
  justify-content: center;
}

.adq-home-redbag-cover {
  position: relative;
  width: 240px;
  height: 344px;
  overflow: hidden;
  border-radius: 24px;
  background: #e60000;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(217, 45, 32, .18);
}

.adq-home-redbag-cover-main {
  position: relative;
  z-index: 2;
  height: 240px;
  padding: 58px 20px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 116%, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(180deg, #e60000 0%, #d92d20 100%);
  box-sizing: border-box;
}

.adq-home-redbag-cover-main h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 950;
  letter-spacing: -.5px;
}

.adq-home-redbag-cover-main p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.65;
}

.adq-home-redbag-cover-bottom {
  position: absolute;
  left: -35%;
  right: -35%;
  bottom: -48px;
  z-index: 3;
  height: 168px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #ff4b3f 0%, #f04438 100%);
}

.adq-home-redbag-open {
  position: absolute;
  left: 50%;
  top: -38px;
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #fff0bd 0%, #f6cf7a 45%, #e7ad42 100%);
  color: rgba(139, 87, 20, .46);
  transform: translateX(-50%);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  box-shadow:
    0 12px 26px rgba(120, 25, 10, .24),
    inset 0 3px 8px rgba(255, 255, 255, .38);
  transition: transform .18s ease;
}

.adq-home-redbag-open:focus {
  outline: 0;
}

.adq-home-redbag-open:hover {
  transform: translateX(-50%) scale(1.045);
}

.adq-home-redbag-cover-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 750;
}

.adq-home-redbag-cover.ls-redbag-disabled {
  filter: saturate(.72);
}

.adq-home-redbag-cover.ls-redbag-received .adq-home-redbag-open {
  color: rgba(139, 87, 20, .56);
}

.adq-home-redbag-done {
  width: 220px;
  min-height: 286px;
  overflow: hidden;
  border: 1px solid #f4cfc7;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff8f5 0%, #fff1ec 100%);
  color: #7a1d14;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(217, 45, 32, .09);
}

.adq-home-redbag-done-inner {
  padding: 18px 14px 18px;
}

.adq-home-redbag-done-top {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.adq-home-redbag-done-top span {
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(217, 45, 32, .1);
  color: #d92d20;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
}

.adq-home-redbag-done-top em {
  color: #b36a5d;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.adq-home-redbag-done-result {
  margin-bottom: 18px;
  padding: 22px 10px;
  border: 1px solid #f3d8d2;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 18px rgba(217, 45, 32, .05);
}

.adq-home-redbag-done-result span {
  display: block;
  margin-bottom: 8px;
  color: #a85a4f;
  font-size: 12px;
  font-weight: 800;
}

.adq-home-redbag-done-result strong {
  display: block;
  color: #d92d20;
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.6px;
}

.adq-home-redbag-done h3 {
  margin: 0 0 12px;
  color: #7a1d14;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 950;
}

.adq-home-redbag-done p {
  margin: 0 0 14px;
  color: #9f4c3f;
  font-size: 13px;
  line-height: 1.55;
}

.adq-home-redbag-done-meta {
  display: grid;
  gap: 9px;
  color: #a85a4f;
  font-size: 11px;
}

.adq-home-redbag-done-meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.adq-home-redbag-done-meta b {
  color: #7a1d14;
  font-weight: 850;
}

.adq-home-post-foot {
  margin-top: 18px;
  padding-left: 0;
}

.adq-home-views {
  color: var(--adq-home-muted);
  font-size: 13px;
}

.adq-home-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.adq-home-action {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--adq-home-text);
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  padding: 0;
}

.adq-home-action i {
  font-size: 18px;
  line-height: 1;
}

.adq-home-action.is-on {
  color: var(--ls-primary, #2563eb);
}

.adq-home-load {
  display: flex;
  justify-content: center;
  padding: 10px 0 28px;
}

.adq-home-load-btn {
  min-width: 120px;
  height: 38px;
  border-radius: var(--ls-border-radius-btn, 999px);
  border: 1px solid var(--ls-border, #e5e7eb);
  background: #fff;
  color: var(--adq-home-text);
  cursor: pointer;
}

.adq-home-empty {
  padding: 80px 0;
  text-align: center;
  color: var(--adq-home-muted);
}
