@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --bg: #faf9f7;
  --bg2: #f2f0ec;
  --surface: #ffffff;
  --border: #e6e3dd;
  --border2: #d4d0c8;
  --text: #1c1c1c;
  --text2: #3a3a3a;
  --muted: #7a7a7a;
  --faint: #b5b0a8;
  --accent: #c53030;
  --accent-dark: #9b2020;
  --accent-dim: rgba(197,48,48,0.06);
  --accent-border: rgba(197,48,48,0.18);
  --ink: #1c1917;
  --teal: #0f766e;
  --amber: #b45309;
  --peach: #dc6843;
  --navy: #1e293b;
  --radius: 12px;
  --radius-sm: 8px;
  --box-shadow-1: 0 1px 3px 0 rgba(34, 40, 42, 0.1);
  --box-shadow-2: 0 4px 20px 0 rgba(33, 37, 41, 0.05);
  --box-shadow-3: 0 4px 20px 0 rgba(33, 37, 41, 0.15);
}

html { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }
body { font-family: 'DM Sans', sans-serif; display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; }

/* ─── NAV ─── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  position: sticky; top: 0; z-index: 200;
}

.logo {
  max-width: 120px;
}

.logo a {
  display: flex;
}

.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  color: var(--muted); font-size: 13.5px; font-weight: 600;
  padding: 8px 16px; border-radius: 99px; transition: all .2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg2); }
.nav-cta {
  background: var(--ink) !important; color: white !important;
  border-radius: 99px; margin-left: 8px; padding: 9px 22px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--accent) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 199;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 12px 20px 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  flex-direction: column; gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text2); font-size: 15px; font-weight: 600;
  padding: 14px 16px; border-radius: var(--radius-sm); transition: background .2s;
}
.mobile-menu a:hover { background: var(--bg); }
.mobile-menu .m-cta {
  background: var(--ink); color: white !important;
  text-align: center; border-radius: var(--radius-sm); margin-top: 8px;
  padding: 14px 16px; font-weight: 700;
}

/* ─── HERO ─── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}
.hero-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 360px;
  gap: 0; align-items: stretch;
}
.hero-main {
  padding: 72px 72px 72px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-aside {
  padding: 40px 0 40px 48px;
  display: flex; flex-direction: column;
  border-left: 1px solid var(--border);
}

.h-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
}
.h-label-dot {
  width: 7px; height: 7px; background: var(--accent); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.85)} }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -1px; color: var(--ink);
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--accent); }

.hero-desc {
  font-size: 15.5px; color: var(--muted); line-height: 1.7;
  max-width: 420px; margin-bottom: 36px;
}

.search-bar {
  display: flex;
  background: var(--bg); border: 1.5px solid var(--border2);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  max-width: 480px;
}
.search-bar:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-dim); }
.search-bar input {
  flex: 1; border: none; outline: none;
  padding: 14px 18px; font-size: 14px;
  font-family: 'DM Sans', sans-serif; color: var(--text); background: transparent;
  min-width: 0;
}
.search-bar input::placeholder { color: var(--faint); }
.search-bar button {
  background: var(--ink); border: none; cursor: pointer;
  padding: 0 24px; color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px; font-weight: 700;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background .2s; white-space: nowrap; flex-shrink: 0;
}
.search-bar button:hover { background: var(--accent); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.htag {
  font-size: 12.5px; font-weight: 600;
  color: var(--text2); background: var(--white);
  border: 1px solid var(--border); border-radius: 99px; padding: 6px 14px;
  cursor: pointer; transition: all .2s;
}
.htag:hover { color: var(--accent); border-color: var(--accent-border); background: var(--accent-dim); }

/* KPI aside */
.aside-header {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--faint);
  padding-bottom: 16px; margin-bottom: 0;
}
.kpi-grid {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
  flex: 1;
}
.kpi {
  display: flex; align-items: baseline; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.kpi:last-child { border-bottom: none; }
.kpi-val {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 800; line-height: 1;
  color: var(--ink); letter-spacing: -0.5px;
  min-width: 60px; flex-shrink: 0;
}
.kpi.kv-red .kpi-val { color: var(--accent); }
.kpi.kv-teal .kpi-val { color: var(--teal); }
.kpi.kv-amber .kpi-val { color: var(--amber); }
.kpi.kv-peach .kpi-val { color: var(--peach); }
.kpi-label { font-size: 12.5px; color: var(--muted); line-height: 1.35; font-weight: 500; }

/* ─── TRUST ─── */
.trust {
  background: var(--navy); padding: 16px 48px;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.ti { display: flex; align-items: center; gap: 8px; }
.ti-icon { font-size: 13px; }
.ti-text { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.02em; }
.ti-text strong { color: rgba(255,255,255,0.9); }

/* ─── MAIN ─── */
main { max-width: 1120px; margin: 0 auto; padding: 56px 48px; }

/* Alert */
.alert {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 52px; flex-wrap: wrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.alert-body { flex: 1; min-width: 200px; }
.alert strong { color: var(--ink); font-size: 14.5px; font-weight: 700; display: block; margin-bottom: 3px; }
.alert span { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.al-btn {
  background: var(--ink); color: white;
  font-size: 12.5px; font-weight: 700; padding: 10px 22px; border-radius: 99px;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background .2s;
}
.al-btn:hover { background: var(--accent); }

/* Section header */
.sh {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: none;
}
.sh-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px;
  position: relative; padding-left: 18px;
}
.sh-title::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.sh-sub { font-size: 13.5px; color: var(--muted); margin-top: 4px; padding-left: 18px; }
.sh-link { font-size: 12.5px; font-weight: 700; color: var(--accent); cursor: pointer; white-space: nowrap; transition: color .2s; }
.sh-link:hover { color: var(--accent-dark); }

/* Categories */
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-bottom: 56px;
  border: none; border-radius: 0; overflow: visible;
}
.cat-cell {
  padding: 24px 20px;
  border: 1px solid var(--border); border-radius: var(--radius);
  cursor: pointer; transition: all .2s;
  display: flex; flex-direction: column; gap: 8px;
  background: white;
}
.cat-cell:hover {
  border-color: var(--accent-border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.cat-cell:hover .cc-name { color: var(--accent); }
.cc-emoji { font-size: 24px; margin-bottom: 4px; }
.cc-name {
  font-size: 14px; font-weight: 700; color: var(--ink);
  transition: color .2s; line-height: 1.3;
}
.cc-count { font-size: 12px; color: var(--faint); font-weight: 500; }

/* Featured */
.feat-layout {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 0; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 56px; background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.feat-main {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  cursor: pointer; transition: background .2s;
  position: relative;
}
.feat-main::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--accent);
}
.feat-main:hover { background: var(--bg); }
.fm-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px; display: inline-block;
}
.feat-main h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 800; line-height: 1.25;
  color: var(--ink); letter-spacing: -0.5px; margin-bottom: 14px;
}
.feat-main p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.fm-read {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--accent);
  transition: gap .2s;
}
.feat-main:hover .fm-read { gap: 14px; }
.fm-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: transform .2s;
}

.feat-sidebar { display: flex; flex-direction: column; }
.fs-item {
  padding: 22px 24px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .2s;
  flex: 1; display: flex; flex-direction: column; gap: 6px;
}
.fs-item:last-child { border-bottom: none; }
.fs-item:hover { background: var(--bg); }
.fs-cat {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--faint);
}
.fs-title { font-size: 14px; font-weight: 600; color: var(--text2); line-height: 1.4; }
.fs-meta { font-size: 12px; color: var(--faint); margin-top: 1px; }

/* How it works */
.hiw {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  margin-bottom: 56px;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: white;
}
.hiw-card {
  padding: 32px 24px; position: relative;
  border-right: 1px solid var(--border);
  cursor: pointer; transition: background .2s;
}
.hiw-card:last-child { border-right: none; }
.hiw-card:hover { background: var(--bg); }
.hiw-n {
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 800; color: var(--bg2);
  line-height: 1; margin-bottom: 14px; letter-spacing: -1px;
}
.hiw-card:hover .hiw-n { color: var(--accent-dim); }
.hiw-t { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.hiw-d { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── FOOTER ─── */
footer {
  background: var(--ink); padding: 36px 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.f-links { display: flex; gap: 24px; flex-wrap: wrap; }
.f-links a { font-size: 12.5px; color: rgba(255,255,255,0.3); font-weight: 600; transition: color .2s; }
.f-links a:hover { color: rgba(255,255,255,0.65); }
.f-disclaimer { width: 100%; font-size: 11px; color: rgba(255,255,255,0.18); line-height: 1.6; margin-top: 12px; }

/* Animations */
@keyframes up { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.hero-main > * { animation: up .55s ease both; }
.h-label { animation-delay:.05s; }
.hero h1 { animation-delay:.12s; }
.hero-desc { animation-delay:.2s; }
.search-bar { animation-delay:.28s; }
.hero-tags { animation-delay:.36s; }
.hero-aside { animation: up .55s ease .2s both; }

/* ═══ TABLET ═══ */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .hero { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-main { padding: 48px 0 40px; }
  .hero-aside { padding: 32px 0 40px; border-left: none; border-top: 1px solid var(--border); }
  .kpi-grid { flex-direction: row; flex-wrap: wrap; border-top: none; }
  .kpi { flex: 1 1 45%; border-bottom: 1px solid var(--border); padding: 14px 0; }
  main { padding: 44px 24px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw { grid-template-columns: repeat(2, 1fr); }
  .hiw-card:nth-child(2) { border-right: none; }
  .feat-layout { grid-template-columns: 1fr; }
  .feat-main { border-right: none; border-bottom: 1px solid var(--border); }
  footer { padding: 28px 24px; }
}

/* ═══ MOBILE ═══ */
@media (max-width: 768px) {
  nav { padding: 0 16px; height: 60px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 60px; }
  .hero { padding: 0 16px; }
  .hero-main { padding: 36px 0 32px; }
  .hero h1 { font-size: clamp(30px, 8vw, 42px); }
  .hero-desc { font-size: 14px; max-width: 100%; margin-bottom: 28px; }
  .search-bar { max-width: 100%; }
  .hero-tags { gap: 6px; }
  .htag { font-size: 11.5px; padding: 5px 12px; }
  .hero-aside { padding: 24px 0 32px; }
  .kpi { flex: 1 1 100%; }
  .kpi-val { font-size: 22px; min-width: 50px; }
  .trust { padding: 14px 16px; gap: 16px; justify-content: flex-start; }
  .ti-text { font-size: 11.5px; }
  main { padding: 32px 16px; }
  .alert { flex-direction: column; align-items: flex-start; gap: 12px; }
  .alert-body { width: 100%; }
  .al-btn { width: 100%; text-align: center; }
  .sh-title { font-size: 22px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-cell { padding: 18px 16px; }
  .cc-emoji { font-size: 20px; }
  .cc-name { font-size: 13px; }
  .feat-main { padding: 28px 24px; }
  .feat-main h3 { font-size: 22px; }
  .fs-item { padding: 18px 20px; }
  .hiw { grid-template-columns: 1fr; }
  .hiw-card { border-right: none; border-bottom: 1px solid var(--border); }
  .hiw-card:last-child { border-bottom: none; }
  footer { flex-direction: column; align-items: flex-start; padding: 28px 16px; }
}

/* ═══ SMALL MOBILE ═══ */
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .cat-cell { padding: 14px 12px; gap: 6px; }
  .cc-emoji { font-size: 18px; }
  .cc-name { font-size: 12px; }
  .feat-main h3 { font-size: 20px; }
  .kpi-val { font-size: 20px; }
}

/* LAYOUT RESET */
.home .container.main {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.container.layout {
  max-width: 100%;
  padding: 0;
}

.container.layout .row.layout {
  margin: 0;
}

.home .container.layout .row.layout > .cols {
  padding: 0;
}

.pages .main-wrapper .container.main {
  padding: 24px 16px;
}

/* FONTS RESET */
.pages h1,
.pages h2 {
  font-weight: 700;
  color: var(--text);
}

.pages h1,
.pages h2,
.pages h3,
.pages p,
.pages strong {
  color: var(--text);
}

.pages h1 {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.pages h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 40px 0 18px;
}

.pages h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 24px 0 10px;
}

.pages p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.pages strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .pages h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .pages h2 {
    font-size: 25px;
    margin: 32px 0 16px;
  }

  .pages h3 {
    font-size: 20px;
    margin: 22px 0 8px;
  }

  .pages p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

/* TABLE RESET */
table { margin: 32px 0; }

table th, table td {
  border-color: var(--border) !important;
  padding: 8px 16px !important;
}

table td {
  color: var(--text) !important;
}

table th {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: bold !important;
}

table tbody tr:nth-child(even) td {
  background: var(--bg) !important;
}

@media (max-width: 992px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    border: 0 !important;
  }
}

@media (max-width: 768px) {
  .pages h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .pages h2 {
    font-size: 25px;
    margin: 32px 0 16px 0;
  }

  .pages h3 {
    font-size: 20px;
    margin: 22px 0 8px 0;
  }

  .pages p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

/* CONTACT US FORM */
#contact-form {
  margin: 45px auto 0;
  max-width: 500px;
}

#contact-form input,
#contact-form textarea {
  flex: 1;
  border: 2px solid var(--bs-gray-300);
  border-radius: 6px;
  outline: 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text);
  min-width: 100%;
}

#contact-form input:active,
#contact-form input:focus,
#contact-form textarea:active,
#contact-form textarea:focus {
  border: 2px solid var(--accent);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: var(--bs-gray-600);
}

#contact-form button {
  background: var(--accent);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  width: 100%;
}

#contact-form button:hover {
  background: var(--accent-dark);
}

/* ═══════════════════════════════════
           WIDGETS
═══════════════════════════════════ */

/* IMAGE STYLE RESET */
.item-current-image img {
  box-shadow: none !important;
  border-radius: 4px !important;
  border-color: var(--bs-gray-300) !important;
}

/* SUBLIST */
.item-sublist a {
  width: 100%;
  height: 100%;
}

.item.item-bubbles {
  margin-bottom: 32px;
}

.item-bubbles .row {
  margin: 0;
}

.bubbles-chip {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 16px 48px 16px 24px;
  position: relative;
  transition: padding 0.2s ease-in-out;
}

.bubbles-chip:hover {
  color: var(--accent-dark);
  background: var(--bg2);
  border-color: var(--accent-border);
  padding-left: 20px;
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: var(--accent);
  color: var(--white);
}

.bubbles-link {
  display: block;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
}

.bubbles-link .bubbles-outer {
  height: 100%;
  padding: 5px;
  max-width: 100%;
}

.col-gap:has(> .item-bubbles)::before {
  display: none !important;
}

.bubbles-chip::after {
  content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%23c53030'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}

.bubbles-chip:hover::after {
  right: 10px;
}

/* SUBLIST CARDS */
.item-sublist:has(.sublist.card) .row > div {
  padding: 5px !important;
}

.sublist.card {
  border: none;
  border-radius: 6px;
  box-shadow: var(--box-shadow-2);
  transition: 0.2s ease-in;
}

.sublist.card:hover {
  box-shadow: var(--box-shadow-3);
  color: var(--accent);
  transform: translateY(-4px);
}

.sublist.card h5 {
  margin-bottom: 0;
  font-weight: 500;
}

.sublist.card .card-body {
  padding: 16px;
}

@media (max-width: 767.98px) {
  .row div:has(> .sublist.card) {
    padding: 0 !important;
  }

  .row:has(> div .sublist.card) {
    margin: 0;
    gap: 10px;
  }

  .sublist.card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .sublist.card .card-img-top {
    border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    width: 120px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sublist.card .card-body {
    flex: 1;
    padding: 1rem;
  }

  .sublist.card .card-body * {
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .sublist.card .card-body h5 {
    font-size: 16px;
  }
}
