.info-page .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
}
body.ip {
  padding-top: 0;
}
.ip-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 24px 80px;
  text-align: center;
}
.ip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(31, 100, 255, 0.09);
  color: #1f64ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.ip-title {
  font-size: clamp(40px, 6vw + 10px, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: #0f172a;
  margin: 20px auto 0;
  max-width: 900px;
  animation: fiu 0.6s ease-out 0.1s both;
}
.ip-title em {
  font-style: normal;
  background: linear-gradient(135deg, #1f64ff 0%, #7c3aed 50%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: gs 4s ease-in-out infinite;
}
@keyframes gs {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}
.ip-sub {
  max-width: 660px;
  margin: 24px auto 0;
  font-size: clamp(16px, 1.4vw, 20px);
  color: #64748b;
  line-height: 1.7;
  font-weight: 400;
  animation: fiu 0.6s ease-out 0.2s both;
}
@keyframes fiu {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ip-hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  justify-content: center;
}
.ip-hero-cta .btn-primary,
.ip-hero-cta .btn-cta-ghost {
  padding: 15px 30px;
  font-size: 15.5px;
}
.ip-pad {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.ip-section {
  padding: 86px 24px 20px;
}
.ip-sec-eyebrow {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.09);
  color: #7c3aed;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.ip-sec-title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #0f172a;
  margin: 18px 0 8px;
}
.ip-sec-sub {
  color: #55677e;
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.ip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 22px;
  justify-content: center;
  justify-items: center;
}
.ip-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  width: 100%;
}
.ip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(31, 100, 255, 0.18);
}
.ip-ic {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-size: 25px;
  flex: none;
}
.ip-card h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
}
.ip-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #4b5870;
}
.ip-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.ip-stat {
  text-align: center;
  padding: 26px 18px;
  border-radius: 18px;
  background: rgba(31, 100, 255, 0.06);
}
.ip-stat b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1f64ff;
}
.ip-stat span {
  font-size: 13.5px;
  color: #4b5870;
}
.ip-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(31, 100, 255, 0.09);
  color: #1f64ff;
}
.ip-ruler {
  width: 64px;
  height: 4px;
  border-radius: 4px;
  margin: 0 auto;
  background: linear-gradient(90deg, #1f64ff, #7c3aed);
}
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 14px;
  padding: 15px 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}
.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* btn-cta-ghost on light/white background (e.g. ip-hero, about page) */
.ip-hero .btn-cta-ghost,
.ip-hero-cta .btn-cta-ghost {
  color: #1f64ff;
  background: rgba(31, 100, 255, 0.08);
  border: 1.5px solid rgba(31, 100, 255, 0.25);
}
.ip-hero .btn-cta-ghost:hover,
.ip-hero-cta .btn-cta-ghost:hover {
  background: rgba(31, 100, 255, 0.14);
  color: #1a56db;
  border-color: rgba(31, 100, 255, 0.45);
}

/* LEGAL PAGES */
body.ip .hero-wrapper {
  height: auto;
  min-height: 0;
  overflow: visible;
  /* Keep the horizontal axis clipped: the decorative aurora blobs
     (.hero-wrapper::before/::after) are parked ~180-200px past the right
     edge on purpose and rely on clipping — with a fully visible wrapper
     they pushed the page ~200px sideways on phones (worst on the auth
     pages). overflow-x: clip + overflow-y: visible is a valid pair, so
     tall content still flows downward untouched. */
  overflow-x: clip;
  display: block;
}
body.ip .hero-wrapper > .hero-stars {
  position: absolute;
  inset: 0;
  height: 720px;
}
.legal-hero {
  padding: 108px 24px 72px;
  background: linear-gradient(
    180deg,
    rgba(238, 245, 255, 0.8),
    rgba(255, 255, 255, 0)
  );
}
.legal-hero--privacy {
  background: linear-gradient(
    180deg,
    rgba(236, 253, 245, 0.72),
    rgba(255, 255, 255, 0)
  );
}
.legal-hero .ip-hero-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-hero .ip-title {
  max-width: 780px;
}
.legal-hero .ip-sub {
  max-width: 650px;
}
.legal-hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 26px;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
}
.legal-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.legal-hero-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
}
.legal-page {
  padding: 16px 24px 100px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.legal-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px minmax(0, 780px);
  gap: 72px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 104px;
  padding: 20px 0;
  border-top: 1px solid #e2e8f0;
}
.legal-toc-label {
  display: block;
  margin-bottom: 15px;
  color: #0f172a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.legal-toc a {
  display: block;
  padding: 8px 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.4;
  transition:
    color 0.2s ease,
    padding 0.2s ease;
}
.legal-toc a:hover {
  padding-left: 4px;
  color: #1f64ff;
}
.legal-content {
  min-width: 0;
}
.legal-intro {
  padding: 26px 30px;
  border: 1px solid rgba(31, 100, 255, 0.12);
  border-radius: 20px;
  background: linear-gradient(135deg, #f7faff, #fff);
  box-shadow: 0 14px 36px rgba(31, 100, 255, 0.06);
}
.legal-intro p {
  margin: 14px 0 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}
.legal-section {
  padding: 58px 0 0;
  scroll-margin-top: 90px;
}
.legal-kicker {
  display: block;
  margin-bottom: 12px;
  color: #1f64ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.legal-section h2 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.legal-section > p {
  max-width: 740px;
  margin: 0;
  color: #526276;
  font-size: 15px;
  line-height: 1.8;
}
.legal-section a {
  color: #1f64ff;
  font-weight: 700;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.legal-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.legal-card {
  padding: 22px;
  border: 1px solid #e4eaf2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.legal-card h3 {
  margin: 12px 0 7px;
  color: #172033;
  font-size: 16px;
  font-weight: 800;
}
.legal-card p {
  margin: 0;
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.65;
}
.legal-card-number,
.legal-card-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #eef4ff;
  color: #1f64ff;
  font-size: 11px;
  font-weight: 800;
}
.legal-card-icon {
  width: auto;
  padding: 0 9px;
  border-radius: 999px;
}
.legal-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid #1f64ff;
  border-radius: 0 14px 14px 0;
  background: #f4f8ff;
  color: #516176;
  font-size: 13.5px;
  line-height: 1.7;
}
.legal-note strong {
  color: #172033;
}
.legal-note--green {
  border-left-color: #16a34a;
  background: #f2fbf5;
}
.legal-step-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.legal-step-list > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-bottom: 1px solid #e8edf3;
}
.legal-step-list b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  font-size: 10px;
}
.legal-step-list p {
  margin: 2px 0 0;
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.65;
}
.legal-step-list strong {
  color: #172033;
}
.legal-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.legal-split > div {
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e4eaf2;
}
.legal-split h3 {
  margin: 0 0 13px;
  color: #172033;
  font-size: 15px;
  font-weight: 800;
}
.legal-split ul {
  margin: 0;
  padding-left: 18px;
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.8;
}
.legal-footer-line {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  color: #94a3b8;
  font-size: 12px;
}
.legal-footer-line a {
  margin-left: auto;
}
@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .legal-toc {
    position: static;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    border-top: 0;
    white-space: nowrap;
  }
  .legal-toc-label {
    display: none;
  }
  .legal-toc a {
    padding: 7px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
  }
  .legal-toc a:hover {
    padding-left: 10px;
  }
}
@media (max-width: 620px) {
  .legal-hero {
    padding: 74px 20px 54px;
  }
  .legal-page {
    padding: 8px 16px 70px;
  }
  .legal-intro {
    padding: 22px;
  }
  .legal-grid,
  .legal-grid--three,
  .legal-split {
    grid-template-columns: 1fr;
  }
  .legal-section {
    padding-top: 44px;
  }
  .legal-section h2 {
    font-size: 26px;
  }
  .legal-hero-meta {
    justify-content: flex-start;
    gap: 9px 16px;
    font-size: 11px;
  }
  .legal-footer-line a {
    margin-left: 0;
    width: 100%;
  }
  .legal-toc {
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ABOUT PAGE */
.about-hero {
  position: relative;
  z-index: 1;
  padding: 100px 24px 120px;
  text-align: center;
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(12px);
  margin-bottom: 32px;
}
.about-hero-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
  animation: ab-pulse 2s infinite;
}
@keyframes ab-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
.about-hero-title {
  font-size: clamp(44px, 6vw + 10px, 76px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.about-hero-title-accent {
  background: linear-gradient(135deg, #fff 0%, #a5c8ff 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-hero-sub {
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: clamp(16px, 1.4vw, 21px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.about-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.about-section {
  padding: 100px 0;
  position: relative;
}
.about-section--alt {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.about-pad {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-left .ip-sec-eyebrow {
  margin-bottom: 16px;
}
.about-story-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.1;
  margin: 0 0 24px;
}
.about-accent {
  background: linear-gradient(135deg, #1f64ff, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-story-text {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-story-visual {
  position: relative;
}
.about-story-visual-inner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-story-visual-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(31, 100, 255, 0.15) 0%,
    transparent 60%
  );
}
.about-story-visual-inner svg {
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.about-story-visual-inner span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.about-stat {
  text-align: center;
  padding: 36px 24px;
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.85)
  );
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(31, 100, 255, 0.12);
}
.about-stat-num {
  display: block;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1f64ff, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}
.about-sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.about-sec-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 16px 0 12px;
}
.about-sec-sub {
  max-width: 520px;
  margin: 0 auto;
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  justify-content: center;
  justify-items: center;
}
.about-value {
  padding: 36px 28px;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #fafbff);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
  width: 100%;
}
.about-value:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(31, 100, 255, 0.12);
}
.about-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.about-value-icon--blue {
  background: linear-gradient(135deg, #e8f1ff, #dbeafe);
}
.about-value-icon--purple {
  background: linear-gradient(135deg, #ede9fe, #e9d5ff);
}
.about-value-icon--green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.about-value-icon--amber {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.about-value h3 {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.about-value p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.65;
}
.about-timeline {
  position: relative;
  padding-left: 40px;
}
.about-timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #1f64ff, #7c3aed, transparent);
}
.about-tl-item {
  position: relative;
  padding: 24px 28px;
  margin-bottom: 20px;
  background: linear-gradient(145deg, #fff, #fafbff);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.about-tl-item:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 32px rgba(31, 100, 255, 0.1);
}
.about-tl-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f64ff, #7c3aed);
  box-shadow: 0 0 0 4px rgba(31, 100, 255, 0.15);
}
.about-tl-year {
  font-size: 14px;
  font-weight: 700;
  color: #1f64ff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.about-tl-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.about-tl-content p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
}
.about-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.about-member {
  text-align: center;
  padding: 36px 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #fafbff);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.about-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(31, 100, 255, 0.12);
}
.about-member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 12px 28px rgba(31, 100, 255, 0.2);
}
.about-member-avatar--blue {
  background: linear-gradient(135deg, #1f64ff, #4f6ef7);
}
.about-member-avatar--purple {
  background: linear-gradient(135deg, #7c3aed, #4f6ef7);
}
.about-member-avatar--teal {
  background: linear-gradient(135deg, #0ea5e9, #1f64ff);
}
.about-member-avatar--amber {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}
.about-member h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.about-member span {
  font-size: 13.5px;
  color: #64748b;
}
.about-cta {
  padding: 0 24px 80px;
}
.about-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(31, 100, 255, 0.15) 0%,
    transparent 60%
  );
  animation: ab-glow 8s ease-in-out infinite;
}
.about-cta-inner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(
    ellipse,
    rgba(124, 58, 237, 0.12) 0%,
    transparent 60%
  );
  animation: ab-glow 10s ease-in-out infinite reverse;
}
@keyframes ab-glow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-5%, 5%) scale(1.05);
  }
}
.about-cta-inner h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  position: relative;
  z-index: 2;
}
.about-cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 32px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.about-cta-inner .btn-primary {
  position: relative;
  z-index: 2;
}
.btn-primary--white {
  background: #fff;
  color: #0f172a;
}
.btn-primary--white:hover {
  background: #f0f2ff;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}
@media (max-width: 900px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-story-visual {
    max-width: 400px;
    margin: 0 auto;
  }
  .about-hero-title {
    font-size: clamp(36px, 5vw, 56px);
  }
}
@media (max-width: 600px) {
  .about-section {
    padding: 60px 0;
  }
  .about-hero {
    padding: 60px 20px 80px;
  }
  .about-timeline {
    padding-left: 32px;
  }
  .about-tl-item {
    padding: 20px;
  }
  .about-tl-item::before {
    left: -28px;
  }
  .about-cta-inner {
    padding: 48px 24px;
    border-radius: 24px;
  }
}

/* BLOG PAGE REDESIGN SYSTEM */
.blog-hero {
  position: relative;
  z-index: 1;
  padding: 110px 24px 80px;
  text-align: center;
}

.blog-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}

.blog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  margin-bottom: 24px;
}

.blog-hero-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
  animation: ab-pulse 2s infinite;
}

.blog-hero-title {
  font-size: clamp(40px, 5.5vw + 10px, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.blog-hero-title-accent {
  background: linear-gradient(135deg, #ffffff 0%, #a5c8ff 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blog-hero-sub {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: clamp(16px, 1.3vw + 10px, 20px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Search Input */
.blog-hero-search {
  max-width: 620px;
  margin: 24px auto 40px;
  position: relative;
}

.blog-search-inner {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  padding: 8px 10px 8px 22px;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.22),
    0 0 0 4px rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.blog-search-inner:focus-within {
  background: #ffffff;
  box-shadow:
    0 24px 50px rgba(31, 100, 255, 0.3),
    0 0 0 4px rgba(31, 100, 255, 0.3);
}

.blog-search-icon {
  flex-shrink: 0;
  color: #64748b;
  margin-right: 12px;
}

.blog-search-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  outline: none;
  font-family: inherit;
}

.blog-search-input::placeholder {
  color: #94a3b8;
}

.blog-search-btn {
  background: linear-gradient(135deg, #1f64ff 0%, #4f6ef7 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.blog-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(31, 100, 255, 0.4);
}

/* Hero Stats Ribbon */
.blog-hero-stats {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  padding: 16px 32px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.blog-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13.5px;
  font-weight: 600;
}

.blog-stat-item strong {
  color: #60a5fa;
  font-size: 16px;
  font-weight: 800;
}

/* MAIN BLOG LAYOUT & SECTIONS */
.blog-section {
  padding: 70px 0;
  position: relative;
}

.blog-section--alt {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.blog-pad {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Featured Spotlight Post Banner */
.blog-featured {
  display: grid;
  grid-template-columns: 52% 48%;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.1),
    0 1px 2px rgba(15, 23, 42, 0.05);
  margin-bottom: 60px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(31, 100, 255, 0.14);
}

.blog-featured-media {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.blog-featured-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-featured:hover .blog-featured-bg {
  transform: scale(1.04);
}

.blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.2) 0%,
    rgba(15, 23, 42, 0.7) 100%
  );
}

.blog-featured-badge-top {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(31, 100, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}

.blog-featured-content {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.blog-featured-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.blog-featured-content h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.blog-featured-content p {
  color: #475569;
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.blog-featured-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.blog-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
}

.blog-author-info {
  display: flex;
  flex-direction: column;
}

.blog-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.blog-author-role {
  font-size: 12px;
  color: #64748b;
}

.blog-featured-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

/* Category Filters & View Controls Bar */
.blog-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.blog-cat-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.blog-cat-pills::-webkit-scrollbar {
  display: none;
}

.blog-cat-pill {
  border: none;
  background: #f1f5f9;
  color: #475569;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-cat-pill:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.blog-cat-pill.active {
  background: #1f64ff;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(31, 100, 255, 0.35);
}

.blog-cat-count {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.08);
}

.blog-cat-pill.active .blog-cat-count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.blog-view-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.blog-count-summary {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
}

.blog-view-toggle {
  display: flex;
  background: #f1f5f9;
  padding: 3px;
  border-radius: 12px;
  gap: 2px;
}

.blog-view-btn {
  border: none;
  background: transparent;
  color: #64748b;
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.blog-view-btn.active {
  background: #ffffff;
  color: #1f64ff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Two-column wrapper for Grid + Sidebar */
.blog-layout-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Grid View Mode */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
  justify-content: center;
  justify-items: center;
}

/* Pagination Bar */
.blog-pagination-wrapper {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  margin-top: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-pagination-pages {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-page-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  font-family: inherit;
}

.blog-page-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

.blog-page-btn.active {
  background: #1f64ff;
  color: #ffffff;
  border-color: #1f64ff;
  box-shadow: 0 4px 12px rgba(31, 100, 255, 0.35);
}

.blog-page-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.blog-page-nav-btn:hover:not(:disabled) {
  background: #1f64ff;
  color: #ffffff;
  border-color: #1f64ff;
  box-shadow: 0 4px 14px rgba(31, 100, 255, 0.25);
}

.blog-page-nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #f8fafc;
}

.blog-page-info {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 600;
}

/* List View Mode Override */
.blog-grid.blog-grid--list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-grid.blog-grid--list .blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  height: auto;
}

.blog-grid.blog-grid--list .blog-card-image {
  height: 100%;
  min-height: 200px;
}

/* Blog Article Cards */
.blog-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(31, 100, 255, 0.12);
  border-color: rgba(31, 100, 255, 0.25);
}

.blog-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #1e293b;
}

.blog-card-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-image-bg {
  transform: scale(1.08);
}

.blog-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(15, 23, 42, 0.5) 100%
  );
}

.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  color: #1f64ff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-bookmark-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 5;
}

.blog-card-bookmark-btn:hover {
  background: rgba(31, 100, 255, 0.9);
  transform: scale(1.1);
}

.blog-card-bookmark-btn.bookmarked {
  background: #1f64ff;
  color: #ffffff;
}

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

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 10px;
}

.blog-card-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.blog-card-body p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.blog-card-author-sm {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-author-avatar-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-author-name-sm {
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
}

.blog-like-btn {
  border: none;
  background: #f8fafc;
  color: #64748b;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.blog-like-btn:hover {
  background: #fee2e2;
  color: #ef4444;
}

.blog-like-btn.liked {
  background: #fee2e2;
  color: #ef4444;
}

.blog-like-btn.liked svg {
  fill: #ef4444;
}

/* Trending Articles Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 100px;
}

.blog-sidebar-widget {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.blog-widget-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-trend-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog-trend-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.blog-trend-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.blog-trend-item:hover {
  transform: translateX(4px);
}

.blog-trend-num {
  font-size: 20px;
  font-weight: 900;
  color: #cbd5e1;
  font-family: monospace;
  line-height: 1;
}

.blog-trend-item:hover .blog-trend-num {
  color: #1f64ff;
}

.blog-trend-content h5 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 6px;
}

.blog-trend-meta {
  font-size: 11.5px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Topics Tag Cloud Widget */
.blog-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag-cloud-item {
  padding: 6px 14px;
  border-radius: 50px;
  background: #f1f5f9;
  color: #475569;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-tag-cloud-item:hover {
  background: #1f64ff;
  color: #ffffff;
}

/* Empty Filter State */
.blog-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px dashed #cbd5e1;
  grid-column: 1 / -1;
}

.blog-empty-state svg {
  color: #94a3b8;
  margin-bottom: 16px;
}

.blog-empty-state h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.blog-empty-state p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Newsletter CTA Box */
.blog-cta {
  padding: 0 24px 80px;
}

.blog-cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.blog-cta-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(31, 100, 255, 0.25) 0%,
    transparent 60%
  );
  animation: ab-glow 8s ease-in-out infinite;
}

.blog-cta-inner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(
    ellipse,
    rgba(124, 58, 237, 0.2) 0%,
    transparent 60%
  );
  animation: ab-glow 10s ease-in-out infinite reverse;
}

.blog-cta-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(31, 100, 255, 0.2);
  border: 1px solid rgba(31, 100, 255, 0.4);
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.blog-cta-inner h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  position: relative;
  z-index: 2;
}

.blog-cta-inner p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 36px;
  max-width: 600px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.blog-cta-form {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.blog-cta-input {
  flex: 1;
  padding: 16px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 15px;
  outline: none;
  font-family: inherit;
}

.blog-cta-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.blog-cta-input:focus {
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.15);
}

.blog-cta-submit {
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.blog-cta-submit:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.25);
}

/* Quick Preview Drawer/Modal */
.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.blog-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.blog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.blog-modal-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-modal.open .blog-modal-container {
  transform: translateY(0) scale(1);
}

.blog-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.6);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  transition: background 0.2s ease;
}

.blog-modal-close:hover {
  background: #0f172a;
}

.blog-modal-hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-modal-body {
  padding: 36px 44px 44px;
}

.blog-modal-header-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  background: #eef2ff;
  color: #1f64ff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-modal-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 16px;
}

.blog-modal-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 28px;
}

.blog-modal-text {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
}

.blog-modal-text p {
  margin-bottom: 20px;
}

.blog-modal-text blockquote {
  border-left: 4px solid #1f64ff;
  padding: 16px 20px;
  margin: 24px 0;
  background: #f8fafc;
  border-radius: 0 16px 16px 0;
  font-size: 17px;
  font-style: italic;
  color: #1e293b;
  font-weight: 600;
}

/* Toast Notifications */
.blog-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: #0f172a;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .blog-layout-wrapper {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .blog-featured-media {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-view-tools {
    justify-content: space-between;
  }

  .blog-grid.blog-grid--list .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-cta-form {
    flex-direction: column;
  }

  .blog-modal-body {
    padding: 28px 24px;
  }

  .blog-modal-hero-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    padding: 80px 16px 60px;
  }

  .blog-hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .blog-search-inner {
    padding: 6px 6px 6px 16px;
  }

  .blog-search-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .blog-featured-content {
    padding: 28px 20px;
  }
}

/* ═══════════════════════════════════════════
   CART TOAST & EMPTY DROPDOWN STYLES
═══════════════════════════════════════════ */
.cart-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #0f172a;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: toastSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.cart-toast--fadeout {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

.cart-empty-state {
  text-align: center;
  padding: 36px 20px;
  color: #64748b;
}
.cart-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f1f5f9;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}
.cart-empty-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.cart-empty-sub {
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
  margin-bottom: 20px;
}
.cart-empty-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background: #1f64ff;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.cart-empty-btn:hover {
  background: #1a53d0;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   ABOUT US REDESIGN EXTRA UTILITIES
═══════════════════════════════════════════ */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.about-team-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}
.about-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(31, 100, 255, 0.1);
  border-color: rgba(31, 100, 255, 0.3);
}
.about-team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid #f1f5f9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.about-team-name {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}
.about-team-role {
  font-size: 13px;
  font-weight: 700;
  color: #1f64ff;
  margin-bottom: 12px;
}
.about-team-bio {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 16px;
}

.about-timeline-list {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
  padding-left: 36px;
}
.about-timeline-list::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #1f64ff 0%, #7c3aed 100%);
  border-radius: 3px;
}
.about-timeline-item {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}
.about-timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 28px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #1f64ff;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 3px rgba(31, 100, 255, 0.3);
}
.about-timeline-year {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(31, 100, 255, 0.1);
  color: #1f64ff;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}
.about-timeline-item h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}
.about-timeline-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════
   REFUND POLICY INTERACTIVE CHECKER WIDGET
═══════════════════════════════════════════ */
.rp-checker-section {
  padding: 60px 24px;
  background: #f8fafc;
}
.rp-checker-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}
.rp-checker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.rp-checker-opt {
  padding: 18px 14px;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  background: #f8fafc;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.rp-checker-opt:hover,
.rp-checker-opt.active {
  border-color: #1f64ff;
  background: rgba(31, 100, 255, 0.05);
  color: #1f64ff;
}
.rp-opt-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.rp-checker-opt:hover .rp-opt-icon,
.rp-checker-opt.active .rp-opt-icon {
  transform: scale(1.08);
}
.rp-checker-result {
  margin-top: 24px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  gap: 18px;
}
.rp-checker-badge {
  font-size: 28px;
}
.rp-checker-info h5 {
  font-size: 17px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 4px;
}
.rp-checker-info p {
  font-size: 13.5px;
  color: #1e40af;
  margin: 0;
  line-height: 1.5;
}
/* ═══════════════════════════════════════════
   MOBILE: full-width cards — centred, never overflow-right
   ═══════════════════════════════════════════ */
@media (max-width: 640px) {
  .ip-card,
  .about-card,
  .about-value,
  .blog-card,
  .seller-card,
  .b-card,
  .product-card,
  .contact-form-card,
  .contact-office-card,
  .help-card,
  .rp-card,
  .refund-card,
  .feature-card,
  .team-card,
  .about-timeline-item {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }
  .ip-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .contact-form-card {
    padding: 24px 16px;
  }
  .contact-office-card {
    padding: 24px 16px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-field-full {
    grid-column: 1;
  }
  .rp-steps-grid {
    grid-template-columns: 1fr;
  }
  .rp-hero {
    padding: 90px 16px 60px;
  }
  .rp-section {
    padding: 60px 16px;
  }
  .rp-section-alt {
    margin: 0 16px;
  }
  .rp-final-card {
    margin: 0 16px 30px;
    padding: 28px 20px;
  }
  .rp-faq-item {
    padding: 16px 18px;
  }
}

/* ═══════════════════════════════════════════
   REFUND POLICY PAGE — complete design styles
   ═══════════════════════════════════════════ */
.rp-hero {
  padding: 110px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.rp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(75% 70% at 50% 35%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(
    75% 70% at 50% 35%,
    #000 20%,
    transparent 78%
  );
  pointer-events: none;
}
.rp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.rp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(31, 100, 255, 0.15);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(31, 100, 255, 0.2);
}
.rp-hero-title {
  font-size: clamp(36px, 5vw + 10px, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.rp-hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: #94a3b8;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px;
}
.rp-hero-cta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.rp-badge-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.rp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
}
.rp-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.rp-section {
  padding: 80px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.rp-section-alt {
  background: #f8fafc;
  border-radius: 32px;
  margin: 0 24px;
}
.rp-section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 12px;
  text-align: center;
}
.rp-section-sub {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.rp-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.rp-step-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.rp-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(31, 100, 255, 0.12);
}
.rp-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f64ff, #3e8bff);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(31, 100, 255, 0.25);
}
.rp-step-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}
.rp-step-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
}
.rp-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #eff6ff;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.rp-step-icon svg {
  width: 20px;
  height: 20px;
  color: #1f64ff;
}

.rp-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rp-faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.rp-faq-item:hover {
  border-color: #1f64ff;
}
.rp-faq-q {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rp-faq-q svg {
  color: #94a3b8;
  flex-shrink: 0;
}
.rp-faq-a {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}

.rp-final-card {
  background: linear-gradient(135deg, #1f64ff 0%, #3e8bff 100%);
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  text-align: center;
  margin: 0 24px 40px;
  box-shadow: 0 20px 60px rgba(31, 100, 255, 0.3);
}
.rp-final-card h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
}
.rp-final-card p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 24px;
}
.rp-pill-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.rp-payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  font-weight: 600;
}
.rp-payment-pill svg {
  width: 16px;
  height: 16px;
}
.rp-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   REFUND SPEEDS GRID — responsive payment cards
═══════════════════════════════════════════ */
.rp-speed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.rp-speed-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.rp-speed-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
}
.rp-speed-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.rp-speed-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rp-speed-time {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.rp-speed-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
.rp-speed-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.rp-speed-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* Tablet: 2-column */
@media (max-width: 900px) {
  .rp-speed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: single column, tighter padding */
@media (max-width: 600px) {
  .rp-speed-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .rp-speed-card {
    padding: 24px 20px;
  }
  .rp-speed-time {
    font-size: 26px;
  }
  .rp-speed-icon {
    width: 48px;
    height: 48px;
  }
  /* also tighten the outer dark panel padding */
  .rp-speed-grid + * {
    padding: 32px 20px;
  }
}

/* Estimator option icon helper */
@media (max-width: 500px) {
  .rp-checker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rp-checker-opt {
    padding: 14px 10px;
    font-size: 12px;
  }
  .rp-opt-icon {
    width: 36px;
    height: 36px;
  }
}

/* ═══════════════════════════════════════════
   MOBILE: tighten all card-parent containers to 16px side padding
   so cards stay full-width with just a small breathing gap,
   matching the Buyers Love These section behaviour.
═══════════════════════════════════════════ */
@media (max-width: 640px) {
  .about-pad,
  .ip-pad,
  .ip-section,
  .blog-pad,
  .rp-checker-container,
  .rp-policy-container,
  .rp-timeline-container,
  .rp-faq-container,
  .rp-cta-container,
  .blog-cta,
  .blog-cta-inner,
  .about-section .about-pad,
  .ip-grid,
  .ip-stats {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* grids that hold the cards: remove extra side padding so cards use full width */
  .about-values,
  .about-stats,
  .about-timeline-list,
  .ip-grid,
  .ip-stats,
  .rp-policy-grid,
  .rp-steps-grid,
  .blog-grid,
  .rp-checker-grid {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ── Blog card "Read →" link (DB-driven loop) ── */
.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 800;
  color: #1f64ff;
  text-decoration: none;
  transition: gap .15s;
}
.blog-read-link:hover { gap: 9px; }

/* ── Blog author icon (replaces photo avatar everywhere) ── */

/* Featured spotlight author icon */
.blog-author-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
  color: #fff;
}
.blog-author-icon svg {
  width: 22px;
  height: 22px;
}

/* Article card small author icon */
.blog-author-icon-sm {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef2ff;
  border: 1px solid rgba(31, 100, 255, 0.15);
  display: grid;
  place-items: center;
  color: #1f64ff;
}
.blog-author-icon-sm svg {
  width: 15px;
  height: 15px;
}

/* Blog detail hero author icon */
.bdet-avatar-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
  color: #fff;
}
.bdet-avatar-icon svg {
  width: 22px;
  height: 22px;
}

/* Blog detail sidebar author icon */
.bdet-sidebar-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #eef4ff;
  border: 1.5px solid rgba(31, 100, 255, 0.15);
  display: grid;
  place-items: center;
  color: #1f64ff;
}
.bdet-sidebar-icon svg {
  width: 22px;
  height: 22px;
}
