.xremover-blog-body {
  background: #0f1117;
}

.xremover-blog-page {
  background: #0f1117;
  color: #f6f7fb;
}

.xremover-blog-nav-active {
  color: #ff3d57 !important;
}

.xremover-blog-hero {
  position: relative;
  padding: 150px 0 76px;
  background: linear-gradient(135deg, #12141b 0%, #171922 48%, #24171a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.xremover-blog-hero-compact {
  min-height: 440px;
  display: flex;
  align-items: center;
}

.xremover-blog-detail-hero {
  padding-bottom: 68px;
}

.xremover-blog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff5367;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.xremover-blog-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #ff5367;
  border-radius: 2px;
}

.xremover-blog-hero h1 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.xremover-blog-hero p {
  max-width: 760px;
  color: #c9cedb;
  font-size: 1.1rem;
  line-height: 1.72;
  margin-bottom: 0;
}

.xremover-blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.xremover-blog-hero-media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.xremover-blog-hero-media img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.xremover-blog-focus-strip {
  background: #11141c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.xremover-blog-focus-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.xremover-blog-focus-item {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 16px;
  color: #fff;
  background: #151923;
  font-weight: 700;
  text-align: center;
}

.xremover-blog-focus-item:hover {
  color: #ff6b7c;
  background: #1a1f2b;
  text-decoration: none;
}

.xremover-blog-focus-item img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.xremover-blog-listing {
  padding: 92px 0 70px;
}

.xremover-blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  margin-bottom: 62px;
  background: #181b24;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.xremover-blog-featured-img {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 34px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e7ebf2;
}

.xremover-blog-featured-img img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
}

.xremover-blog-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.xremover-blog-featured h2 {
  font-size: 2rem;
  line-height: 1.24;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.xremover-blog-featured h2 a {
  color: #fff;
}

.xremover-blog-featured h2 a:hover {
  color: #ff6b7c;
  text-decoration: none;
}

.xremover-blog-featured p {
  color: #c4cad7;
  line-height: 1.72;
  margin-bottom: 28px;
}

.xremover-blog-section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.xremover-blog-section-head h2 {
  color: #fff;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 0;
}

.xremover-blog-card {
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 30px;
  background: #181b24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.xremover-blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 83, 103, 0.4);
  background: #1b1f2a;
}

.xremover-blog-card-img {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px #e7ebf2;
}

.xremover-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.xremover-blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.xremover-blog-card .post-tag {
  color: #ff5367;
  margin-bottom: 14px;
}

.xremover-blog-card h2 {
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.xremover-blog-card h2 a {
  color: #fff;
}

.xremover-blog-card h2 a:hover {
  color: #ff6b7c;
  text-decoration: none;
}

.xremover-blog-card p {
  color: #bfc5d2;
  line-height: 1.7;
  margin-bottom: 22px;
}

.xremover-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding-left: 0;
  margin: 0 0 18px;
  list-style: none;
}

.xremover-blog-meta li {
  display: inline-flex !important;
}

.xremover-blog-meta p {
  color: #9fa7b8 !important;
  font-size: 0.88rem;
  line-height: 1;
  margin: 0;
}

.xremover-blog-readmore {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  margin-top: auto;
}

.xremover-blog-readmore::after {
  content: "";
  width: 18px;
  height: 2px;
  background: #ff5367;
  transition: width 180ms ease;
}

.xremover-blog-readmore:hover {
  color: #ff6b7c;
  text-decoration: none;
}

.xremover-blog-readmore:hover::after {
  width: 28px;
}

.xremover-blog-empty {
  padding: 64px;
  text-align: center;
  background: #181b24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.xremover-blog-empty h2 {
  color: #fff;
  margin-bottom: 12px;
}

.xremover-blog-empty p {
  color: #bfc5d2;
  margin-bottom: 0;
}

.xremover-blog-pagination {
  margin-top: 18px;
}

.xremover-blog-pagination .page-link {
  color: #fff;
  background: #181b24;
  border-color: rgba(255, 255, 255, 0.1);
}

.xremover-blog-pagination .active .page-link,
.xremover-blog-pagination .page-link:hover {
  color: #fff;
  background: #ff3d57;
  border-color: #ff3d57;
}

.xremover-blog-back {
  display: inline-flex;
  color: #c9cedb;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.xremover-blog-back:hover {
  color: #ff6b7c;
  text-decoration: none;
}

.xremover-blog-detail-meta {
  margin-top: 24px;
}

.xremover-blog-detail {
  padding: 86px 0 96px;
  background: #f7f8fb;
  color: #242936;
}

.xremover-blog-content {
  color: #2a3040;
}

.xremover-blog-content .xremover-auto-blog {
  font-size: 1.05rem;
  line-height: 1.85;
}

.xremover-blog-content .xremover-auto-blog figure {
  margin: 0 0 38px;
  overflow: hidden;
  background: #11141c;
  border: 1px solid #e2e5ec;
  border-radius: 8px;
}

.xremover-blog-content .xremover-auto-blog figure img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  padding: 30px;
}

.xremover-blog-content .xremover-auto-blog figcaption {
  padding: 14px 18px;
  color: #687083;
  background: #fff;
  font-size: 0.9rem;
  border-top: 1px solid #e7eaf0;
}

.xremover-blog-content .xremover-auto-blog h2,
.xremover-blog-content .xremover-auto-blog h3,
.xremover-blog-content .xremover-auto-blog h4 {
  color: #171b25;
  letter-spacing: 0;
  margin: 36px 0 16px;
}

.xremover-blog-content .xremover-auto-blog h2 {
  font-size: 1.65rem;
  line-height: 1.3;
}

.xremover-blog-content .xremover-auto-blog p {
  color: #394152;
  margin-bottom: 20px;
}

.xremover-blog-content .xremover-auto-blog strong {
  color: #171b25;
}

.xremover-blog-content .xremover-auto-blog em {
  color: #646d7f;
}

.xremover-blog-content .xremover-auto-blog ul,
.xremover-blog-content .xremover-auto-blog ol {
  margin: 0 0 26px;
  padding-left: 0;
  list-style: none;
}

.xremover-blog-content .xremover-auto-blog li {
  position: relative;
  color: #394152;
  margin-bottom: 12px;
  padding-left: 28px;
}

.xremover-blog-content .xremover-auto-blog li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 9px;
  height: 9px;
  background: #ff3d57;
  border-radius: 50%;
  transform: translateY(-50%);
}

.xremover-blog-content .xremover-auto-blog a {
  color: #e72f49 !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(231, 47, 73, 0.35);
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.xremover-blog-content .xremover-auto-blog a:hover,
.xremover-blog-content .xremover-auto-blog a:focus,
.xremover-blog-content .xremover-auto-blog a:active {
  color: #b9152d !important;
  text-decoration: underline;
  text-decoration-color: rgba(185, 21, 45, 0.72);
}

.xremover-blog-content .xremover-auto-blog img {
  max-width: 100%;
  height: auto;
}

.xremover-blog-content .xremover-auto-blog table {
  width: 100%;
  margin: 26px 0 34px;
  color: #2a3040;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #dfe4ec;
  border-radius: 8px;
  overflow: hidden;
}

.xremover-blog-content .xremover-auto-blog th,
.xremover-blog-content .xremover-auto-blog td {
  padding: 14px 16px;
  border-bottom: 1px solid #e7ebf2;
  vertical-align: top;
}

.xremover-blog-content .xremover-auto-blog th {
  color: #171b25;
  font-size: 0.9rem;
  text-transform: uppercase;
  background: #f0f3f8;
}

.xremover-blog-content .xremover-auto-blog tr:last-child td {
  border-bottom: 0;
}

.xremover-stage-visual-grid {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 34px;
}

.xremover-stage-logo-box,
.xremover-stage-car-box {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e2e5ec;
  border-radius: 8px;
}

.xremover-stage-logo-box {
  min-height: 120px;
  padding: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #f0f3f8;
}

.xremover-stage-car-box {
  background: #11141c;
}

.xremover-stage-logo-box img {
  max-width: 84px;
  max-height: 84px;
  object-fit: contain;
}

.xremover-stage-car-box {
  min-height: 260px;
}

.xremover-stage-car-box img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.xremover-stage-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 34px;
}

.xremover-stage-card {
  padding: 18px;
  background: #fff;
  border: 1px solid #dfe4ec;
  border-radius: 8px;
}

.xremover-stage-card strong {
  display: block;
  margin-bottom: 8px;
}

.xremover-stage-card span {
  display: block;
  color: #e72f49;
  font-size: 1.35rem;
  font-weight: 800;
}

.xremover-stage-note {
  padding: 20px 22px;
  margin: 26px 0;
  color: #263044;
  background: #fff4f5;
  border: 1px solid #ffd0d6;
  border-left: 4px solid #ff3d57;
  border-radius: 8px;
}

.xremover-blog-after-post {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid #dde2ea;
}

.xremover-blog-footer {
  background: #11141c;
}

@media (max-width: 991px) {
  .xremover-blog-hero {
    padding: 125px 0 58px;
  }

  .xremover-blog-hero h1 {
    font-size: 2.35rem;
  }

  .xremover-blog-listing,
  .xremover-blog-detail {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .xremover-blog-focus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xremover-blog-featured {
    grid-template-columns: 1fr;
  }

  .xremover-blog-featured-img {
    min-height: 300px;
  }
}

@media (max-width: 575px) {
  .xremover-blog-hero {
    padding: 110px 0 46px;
  }

  .xremover-blog-hero h1 {
    font-size: 2rem;
  }

  .xremover-blog-hero p {
    font-size: 1rem;
  }

  .xremover-blog-card-body {
    padding: 22px;
  }

  .xremover-blog-focus-grid {
    grid-template-columns: 1fr;
  }

  .xremover-blog-focus-item {
    min-height: 78px;
    justify-content: flex-start;
  }

  .xremover-blog-featured-body {
    padding: 26px;
  }

  .xremover-blog-featured h2,
  .xremover-blog-section-head h2 {
    font-size: 1.55rem;
  }

  .xremover-blog-content .xremover-auto-blog {
    font-size: 1rem;
    line-height: 1.78;
  }

  .xremover-blog-content .xremover-auto-blog figure img {
    padding: 20px;
  }

  .xremover-stage-visual-grid,
  .xremover-stage-card-grid {
    grid-template-columns: 1fr;
  }

  .xremover-blog-content .xremover-auto-blog table {
    display: block;
    overflow-x: auto;
  }
}
