/* ═══════════════════════════════════
   CSS CUSTOM PROPERTIES
   (derived from actual site palette)
═══════════════════════════════════ */
:root {
  --text: #1b2d3f;
  --text-muted: #92989f;
  --primary-100: #adc4d9;
  --primary-500: #311b92;
  --primary-700: #361b92;
  --primary-800: #1b2d3f;
  --accent-400: #ffab00;
  --accent-500: #e69a00;
  --white: #ffffff;
  --gray-300: #dbe3e8;
  --gray-600: #92989f;
  --background: #ffffff;
  --border: #dbe3e8;
  --surface-100: #f4f6f9;
  --box-shadow-sm: 0 1px 3px 0 rgba(34, 40, 42, 0.1);
  --box-shadow-md: 0 4px 20px 0 rgba(33, 37, 41, 0.05);
  --box-shadow-lg: 0 4px 20px 0 rgba(33, 37, 41, 0.15);
}

/* ===== BASE ===== */
html { font-size: 62.5%; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  color: #1b2d3f;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
h1 { font-family: 'Open Sans', sans-serif; font-size: 3.5rem; font-weight: 500; color: #1b2d3f; }
h2 { font-family: 'Roboto', sans-serif; font-size: 3.5rem; font-weight: 400; color: #1b2d3f; }
h3 { font-family: 'Roboto', sans-serif; font-size: 2.5rem; font-weight: 500; color: #1b2d3f; }
h4 { font-family: 'Roboto', sans-serif; font-size: 1.8rem; font-weight: 500; color: #1b2d3f; }
h5 { font-family: 'Open Sans', sans-serif; font-size: 1.5rem; font-weight: 400; color: #1b2d3f; }
a { color: #2196f3; }
p { font-size: 1.5rem; line-height: 1.67; }

/* Spacing helpers */
.pb-6 { padding-bottom: 6rem !important; }
.pb-7 { padding-bottom: 7rem !important; }
.pt-7 { padding-top: 7rem !important; }
.py-7 { padding-top: 7rem !important; padding-bottom: 7rem !important; }

/* ===== LOGO CLEANUP ===== */
.logo {
  max-width: 120px;
}

.logo a {
  display: flex;
}

/* ===== NAVBAR ===== */
.site-header .site-header__navbar {
  min-height: 85px;
  background: #fff !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 20px 10px;
}
.site-header__custom-logo { width: 200px; height: auto; }
.site-header .navbar-nav .nav-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #1a2c41 !important;
  padding: 5px 22px;
}
.site-header .navbar-nav .nav-link:hover { color: #ffab00 !important; }

/* ===== CAROUSEL / SLIDER ===== */
.slider-axsense-articles { margin: 3rem 0 6rem; }
.slider-axsense-articles__inner { min-height: 47.5rem; }
.slider-axsense-articles__item { text-align: right; position: relative; }
.slider-axsense-articles__item img { max-width: 76%; height: auto; aspect-ratio: 920 / 517; object-fit: cover; }

.slider-axsense-articles__caption {
  background-color: #fff;
  border-bottom: 3px solid #ffab00;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 2px 40px 0px;
  left: 0;
  padding: 2rem;
  position: absolute;
  right: 60%;
  top: 3rem;
  bottom: auto !important;
  text-align: left;
  z-index: 10;
}
.slider-axsense-articles__title {
  font-family: 'Roboto', sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.31;
  color: #1b2d3f;
  margin-bottom: 1rem;
}
.slider-axsense-articles__title a {
  color: #1b2d3f;
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.slider-axsense-articles__excerpt { color: #1b2d3f; font-size: 1.5rem; }
.slider-axsense-articles__excerpt a { display: none; }

.slider-axsense-articles__button {
  position: absolute;
  bottom: 0 !important;
  top: inherit !important;
  left: 0 !important;
  right: auto !important;
  width: 5.8rem !important;
  height: 5.8rem !important;
  color: #1b2d3f !important;
  opacity: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.slider-axsense-articles__button:hover { color: #ffab00 !important; }
/* Next button sits immediately right of prev */
.slider-axsense-articles__button + .slider-axsense-articles__button {
  left: 5.8rem !important;
}

/* ===== BADGES ===== */
.badge {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 3px;
  padding: 4px 8px;
}

/* ===== WEEKLY NEWS ===== */
.weekly-news-articles-section { margin-bottom: 3rem; }
.weekly-news-articles-section__title {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #1b2d3f;
}
.article-card { display: flex; width: 100%; }
.article-card__thumbnail--weekly-news {
  flex: 0 0 9.5rem;
  height: 9.5rem;
  overflow: hidden;
}
.article-card__thumbnail--weekly-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card__number {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #311b92;
  font-size: 2rem;
  line-height: 1.44;
  padding: 0 1.6rem;
  display: flex;
  align-self: center;
  flex-shrink: 0;
}
.article-card__title--weekly-news {
  flex: 1 1 auto;
  align-self: center;
  margin: 0;
}
.article-card__title--weekly-news a {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #1b2d3f;
  font-size: 1.6rem;
  line-height: 1.44;
  text-decoration: none;
}
.article-card__title--weekly-news a:hover { color: #361b92; }
.article-card__separator {
  background-color: #dbe3e8;
  height: 1px;
  width: 100%;
  margin: 1rem 0;
}
/* Hide last separator in last column */
.col-12.col-xl-4:last-child .article-card__separator { display: none !important; }
/* Responsive pb/px-6 */
@media (min-width: 768px) { .pb-md-6 { padding-bottom: 6rem !important; } .px-md-6 { padding-left: 6rem !important; padding-right: 6rem !important; } }

/* ===== TRENDING ===== */
#trending {
  background-image:
    url(https://cdn.financial-verge.com/wp-content/uploads/sites/166/2025/03/lady_v3.png),
    linear-gradient(#fff 5.5rem, #361b92 5.5rem);
  background-repeat: no-repeat, no-repeat;
  background-position: right center, 0 0;
  background-size: auto 100%, 100% 100%;
}
.trending__title {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #adc4d9;
}
.card-trending { display: block; }
.card-trending__category {
  font-size: 1.5rem;
  color: #1b2d3f;
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}
.card-trending__category-arrow {
  color: #ffab00;
  margin-right: 0.6rem;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.card-trending__category .badge {
  font-size: 1.3rem;
  font-weight: 600;
  background: none;
  padding: 0;
}
.card-trending__title {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: none;
  display: block;
  padding-left: 1.6rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.card-trending__title:hover { color: #ffab00; }
.card-trending__excerpt {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.5rem;
  text-decoration: none;
  display: block;
  padding-left: 1.6rem;
  line-height: 1.67;
}
.card-trending__excerpt:hover { color: #fff; }

/* ===== LATEST ARTICLES ===== */
.axsense-articles__section-title {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #2196f3;
  margin-bottom: 3rem;
}
.axsense-articles__item.row { padding-bottom: 4rem; }
.axsense-articles__thumbnail img { width: 100%; height: auto; aspect-ratio: 530 / 298; object-fit: cover; display: block; }
.axsense-articles__excerpt {
  font-size: 1.5rem;
  color: #1b2d3f;
  line-height: 1.67;
  display: block;
}
.axsense-articles__item .col-12.col-sm-7 > a.text-dark {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1b2d3f;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* ===== SIDEBAR CARDS ===== */
.axsense-articles__item--single {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

/* Purple overlay card */
.axsense-articles__thumbnail--jacksons-purple-overlay {
  position: relative;
  padding-bottom: 0;
}
.axsense-articles__thumbnail--jacksons-purple-overlay img { width: 100%; height: auto; aspect-ratio: 350 / 278; object-fit: cover; display: block; }
.axsense-articles__thumbnail--jacksons-purple-overlay::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  background: rgba(54, 27, 146, 0.58);
  z-index: 1;
}
.axsense-articles__content--jacksons-purple-overlay {
  position: absolute;
  transform: translateY(-100%);
  width: calc(100% - 30px);
  padding: 15px;
  z-index: 2;
}
.axsense-articles__title--jacksons-purple-overlay {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.52;
  margin-bottom: 0 !important;
}
.axsense-articles__excerpt--jacksons-purple-overlay { display: none; }

/* Plain/single sidebar card */
.axsense-articles__thumbnail--single img { width: 100%; height: auto; aspect-ratio: 350 / 197; object-fit: cover; display: block; }
.axsense-articles__content--single { padding: 15px; }
.axsense-articles__title--single {
  font-family: 'Roboto', sans-serif;
  color: #1b2d3f;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.39;
  margin-bottom: 1rem;
}
.infinity-read-more-link { display: none !important; }

/* ===== HIGHLIGHTED SECTION ===== */
.highlighted-section {
  margin-top: 8rem;
  margin-bottom: 3rem;
  background: transparent;
}
.highlighted-main-article {
  height: 100%;
  margin-left: 3rem;
  position: relative;
}
.highlighted-main-article__thumbnail { padding-right: 3rem; }
.highlighted-main-article__thumbnail img {
  float: right;
  max-width: inherit;
  position: relative;
  top: -5rem;
  width: calc(100% + 3rem);
  margin-bottom: -2.5rem;
  height: auto;
  aspect-ratio: 730 / 388;
  object-fit: cover;
}

/* Span replacing h1 inside highlighted main article link */
.highlighted-main-article__heading {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.36;
  margin-bottom: 0;
  color: #1b2d3f;
}
@media (min-width: 768px) {
  .highlighted-main-article__heading { font-size: 35px; line-height: 1.31; margin-bottom: 1rem; }
}

.highlighted-main-article__text { padding: 0 15px 25px; }
@media (min-width: 768px) {
  .highlighted-main-article__text { padding: 0 40px 40px; }
}
.highlighted-main-article__text a.text-decoration-none { color: #1b2d3f; }
.highlighted-main-article__text .excerpt-link {
  font-size: 1.5rem; color: #1b2d3f; text-decoration: none; line-height: 1.67;
}

.highlighted-small-article { padding: 1rem 0; }
.highlighted-small-article img { width: 100%; height: auto; aspect-ratio: 350 / 278; object-fit: cover; display: block; }

/* Span replacing h5 inside highlighted small article links */
.highlighted-small-article__heading {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.31;
  margin: 0;
  color: #1b2d3f;
}
@media (min-width: 768px) { .highlighted-small-article__heading { font-size: 1.6rem; } }

.highlighted-small-article__title { color: #1b2d3f; text-decoration: none; display: block; }
.highlighted-small-article .badge {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  background: none !important;
  padding: 2px 0;
  margin-bottom: 4px;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid #dbe3e8;
  padding: 40px 0;
  font-size: 1.1rem;
  color: #92989f;
}
.site-footer a { color: #92989f; font-size: 1.1rem; text-decoration: none; }
.site-footer a:hover { color: #1b2d3f; text-decoration: underline; }
.site-footer__brand { padding-bottom: 30px; }
.site-footer__logo { width: 170px; height: auto; display: block; }
.site-footer__brand .d-none.d-md-block { font-size: 1.1rem; color: #92989f; margin-top: 8px; }
.site-footer .col-md-8 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}
.site-footer .col-md-8 li { font-size: 1.1rem; }
.site-disclaimer {
  font-size: 1.0rem;
  color: #92989f;
  line-height: 1.6;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dbe3e8;
  text-align: center;
}
.site-footer__disclaimer {
  font-size: 1.0rem;
  color: #92989f;
  line-height: 1.6;
  margin-top: 0.5rem;
  text-align: center;
}

/* Footer: center all content on mobile */
@media (max-width: 767.98px) {
  .site-footer { text-align: center; }
  .site-footer .site-footer__brand { text-align: center; }
  .site-footer__logo { margin: 0 auto; }
  .site-footer .logo { margin: 0 auto; }
  .site-footer .col-md-8 ul { text-align: center; }
}

/* ===== RESPONSIVE ===== */

/* Carousel: stack image + caption on sm and xs (< 768px) */
@media (max-width: 767.98px) {
  .slider-axsense-articles__inner { min-height: auto; }
  .slider-axsense-articles__item { text-align: left; }
  .slider-axsense-articles__item img { max-width: 100%; aspect-ratio: 920 / 517; object-fit: cover; }
  .slider-axsense-articles__caption {
    position: static;
    right: auto;
    top: auto;
    padding-bottom: 7rem;
  }
  .slider-axsense-articles__title { font-size: 2.2rem; }
}

/* Weekly News: restore hidden separator + inter-column spacing when stacked */
@media (max-width: 1199.98px) {
  .col-12.col-xl-4:last-child .article-card__separator { display: block !important; }
  .weekly-news-articles-section .col-12.col-xl-4:not(:last-child) { padding-bottom: 1.5rem; }
}

/* Trending: remove decorative lady image + reduce vertical padding on mobile */
@media (max-width: 767.98px) {
  #trending {
    background-image: linear-gradient(#fff 5.5rem, #361b92 5.5rem);
    background-size: 100% 100%;
  }
  #trending .pt-7 { padding-top: 3rem !important; }
  #trending .py-7 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}

/* Highlighted section: remove decorative desktop-only layout on mobile */
@media (max-width: 767.98px) {
  .highlighted-section { margin-top: 3rem; }
  .highlighted-main-article { margin-left: 0; }
  .highlighted-main-article__thumbnail { padding-right: 0; }
  .highlighted-main-article__thumbnail img {
    float: none;
    max-width: 100%;
    width: 100%;
    top: 0;
    margin-bottom: 0;
    aspect-ratio: 730 / 388;
    object-fit: cover;
  }
}

/* Footer: 2-column link list on mobile */
@media (max-width: 767.98px) {
  .site-footer .col-md-8 ul { column-count: 2; }
}

/* ═══════════════════════════════════
   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;
}

.container.layout .row.layout > .cols {
  overflow-x: hidden;
}

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

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

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

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

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

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

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

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

.main-paragraph strong {
  font-weight: 700;
}

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

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

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

  .main-paragraph 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(--primary-500) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: bold !important;
}

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

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

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

#contact-form input,
#contact-form textarea {
  flex: 1;
  border: 2px solid var(--gray-300);
  border-radius: 3px;
  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(--primary-500);
}

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

#contact-form button {
  background: var(--primary-500);
  border: none;
  border-radius: 3px;
  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(--primary-700);
}

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

/* IMAGE STYLE RESET */
.item-current-image img {
  box-shadow: none !important;
  border-radius: 4px !important;
  border-color: var(--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: #ffffff;
  border: 1px solid #dbe3e8;
  border-bottom: 3px solid transparent;
  border-radius: 3px;
  color: #1b2d3f;
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 14px 48px 14px 20px;
  position: relative;
  transition: border-color 0.2s ease-in-out, background 0.2s ease-in-out, color 0.2s ease-in-out, padding 0.2s ease-in-out;
}

.bubbles-chip:hover {
  color: #1b2d3f;
  background: #ffffff;
  border-color: #dbe3e8;
  border-bottom-color: #ffab00;
  padding-left: 16px;
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: #311b92;
  color: #ffffff;
  border-color: #311b92;
}

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

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

.sibling.link-button .bubbles-link .bubbles-outer,
.sibling.link-button .bubbles-chip {
  height: auto;
}

.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='%23ffab00'/%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 — HORIZONTAL (Weekly News style) */
.sublist.card.horizontal {
  background: transparent;
  border: none;
  border-bottom: 1px solid #dbe3e8;
  border-radius: 0;
  box-shadow: none;
  padding: 1rem 0;
  text-decoration: none;
  transition: none;
}

.sublist.card.horizontal:hover {
  box-shadow: none;
  transform: none;
  border-bottom-color: #dbe3e8;
}

.sublist.card.horizontal h5,
.sublist.card.horizontal .card-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #1b2d3f;
  font-size: 1.6rem;
  line-height: 1.44;
}

.sublist.card.horizontal:hover h5,
.sublist.card.horizontal:hover .card-title {
  color: #361b92;
}

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

.sublist.card {
  border: none;
  border-radius: 3px;
  border-bottom: 3px solid transparent;
  box-shadow: var(--box-shadow-md);
  transition: 0.2s ease-in;
}

.sublist.card:hover {
  box-shadow: var(--box-shadow-lg);
  color: #311b92;
  border-bottom-color: #ffab00;
  transform: translateY(-3px);
}

.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;
  }
}
