/* ════════════════════════════════════════
   REQUIRED BASE  (DL SOP §9A — iOS Safari fix)
   NEVER overflow-x:hidden on html or body
════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  width: 100%;
  background: #f2f2f2;
  font-size: 10px;
  font-family: 'Open Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background: #f2f2f2;
  font-family: 'Open Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  color: #1b2d3f;
  -webkit-text-size-adjust: 100%;
}
/* overflow-x containment on inner wrapper ONLY (not html/body) */
.pg-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ════════════════════════════════════════
   CSS CUSTOM PROPERTIES
════════════════════════════════════════ */
:root {
  /* DL Standard Tokens — mapped to original site palette */
  --navy:    #1d4dcd;
  --blue:    #2196f3;
  --blue-lt: #ffde00;
  --dark:    #1b2d3f;
  --text:    #1b2d3f;
  --text-md: #555;
  --text-sm: #666;
  --text-xs: #999;
  --border:  #dee2e6;
  --bg:      #f9f9fa;
  /* Site-specific tokens */
  --primary:    #ffde00;
  --secondary:  #1d4dcd;
  --teal:       #20c997;
  --site-dark:  #1b2d3f;
  --light:      #fefefe;
  --cta-orange: #ff8d01;
  --link-blue:  #2196f3;
  --hero-bg:    #5a678b;

  /* Lasso standardized neutral tokens (derived from site palette) */
  --text-muted:   #555;
  --primary-100:  #ffde00;
  --primary-500:  #1d4dcd;
  --primary-700:  #2196f3;
  --primary-800:  #1b2d3f;
  --accent-400:   #1d4dcd;
  --accent-500:   #1b2d3f;
  --white:        #ffffff;
  --gray-300:     #dee2e6;
  --gray-600:     #666;
  --background:   #f9f9fa;
  --surface-100:  #f0f4ff;

  /* Box shadows */
  --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);
}

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

.logo a {
  display: flex;
}

/* ════════════════════════════════════════
   CUSTOM SPACING UTILITIES
════════════════════════════════════════ */
.pt-6, .py-6  { padding-top:    40px !important; }
.pb-6, .py-6  { padding-bottom: 40px !important; }
.pt-7, .py-7  { padding-top:    50px !important; }
.pb-7, .py-7  { padding-bottom: 50px !important; }
.mt-6         { margin-top:     40px !important; }
.mb-6         { margin-bottom:  40px !important; }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  border-radius: 7px !important;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px !important;
  font-weight: 700 !important;
  transition: opacity 0.2s ease;
}
.btn-primary {
  background-color: #ff8d01 !important;
  border-color:     #ff8d01 !important;
  color: #fff !important;
}
.btn-primary:hover, .btn-primary:focus { opacity: 0.88; }

.btn-outline-secondary {
  background-color: transparent !important;
  border: 1px solid #1d4dcd !important;
  color: #1d4dcd !important;
  text-transform: uppercase;
}
.btn-outline-secondary:hover, .btn-outline-secondary:focus {
  background-color: #1d4dcd !important;
  color: #fff !important;
}

.btn-sm   { padding: 10.5px 40px !important; }
.btn-wide { padding: 10.5px 74px !important; }
.btn-link { padding: 0 !important; text-decoration: none !important; }
.btn-link:hover { text-decoration: none !important; }

/* ════════════════════════════════════════
   TOP DISCLAIMER BAR
════════════════════════════════════════ */
.top-disclaimer {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #1b2d3f;
  padding: 7px 15px;
  border-bottom: 1px solid rgba(27, 45, 63, 0.12);
  background: #fff;
}
.top-disclaimer p { margin: 0; }
.top-disclaimer a { color: #1b2d3f; text-decoration: underline; }

/* ════════════════════════════════════════
   NAVBAR / HEADER  (DL SOP §2.1 — sticky)
════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}
.site-header__navbar {
  background-color: #fff;
  padding: 20px 10px;
  border-bottom: 1px solid #e2e8f0;
}
.site-header__navbar .navbar-brand img {
  height: 38px;
  width: auto;
}
.navbar-nav .nav-item + .nav-item { margin-left: 15px; }
.navbar-nav .nav-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--text-sm) !important;
  padding: 6px 12px !important;
  border-radius: 6px;
}
.navbar-nav .nav-link:hover {
  color: var(--navy) !important;
}

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
#hero-with-path {
  background-color: #5a678b;
  padding: 0 10px;
}

/* H1 */
.hero-with-path__title {
  font-family: 'Roboto', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.15;
  margin-top: 30px;
  margin-bottom: 30px;
}
.hero-with-path__title span {
  font-style: normal;
  color: var(--primary);
}

/* What You Get card */
.what-you-get {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.1);
  padding: 10px 20px 0;
  overflow: hidden;
}
.what-you-get__header-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1b2d3f;
  margin-bottom: 12px;
  padding-top: 8px;
}
.what-you-get__item {
  background-repeat: no-repeat;
  background-size: 50px 50px;
  background-position: 0 0;
  padding: 0 0 18px 80px;
  min-height: 58px;
}
.what-you-get__item-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1b2d3f;
  margin-bottom: 4px;
}
.what-you-get__item-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1b2d3f;
  margin: 0;
  line-height: 1.65;
}
.what-you-get__sticky {
  padding: 10px 0;
  border-top: 1px solid rgba(27, 45, 63, 0.1);
  margin-top: 4px;
}

/* FAQs accordion */
.faqs .card {
  background-color: rgba(0, 0, 0, 0.17);
  border: none !important;
  border-radius: 7px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faqs .card:last-of-type { margin-bottom: 0; }
.faqs .card__header .btn-link {
  display: block;
  width: 100%;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff !important;
  padding: 20px 45px 20px 20px !important;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  box-shadow: none !important;
  outline: none;
}
.faqs .card__header .btn-link:focus,
.faqs .card__header .btn-link:active {
  box-shadow: none !important;
  outline: none;
  text-decoration: none;
}
.faqs .card__header .btn-link::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3Cline x1='4' y1='10' x2='16' y2='10' stroke='%23ffffff' stroke-width='1.5'/%3E%3C/svg%3E");
}
.faqs .card__header .btn-link.collapsed::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3Cline x1='10' y1='4' x2='10' y2='16' stroke='%23ffffff' stroke-width='1.5'/%3E%3Cline x1='4' y1='10' x2='16' y2='10' stroke='%23ffffff' stroke-width='1.5'/%3E%3C/svg%3E");
}
.faqs .card__body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #fff;
  padding: 0 20px 20px;
  margin: 0;
  line-height: 1.65;
}
.faqs .learn-more-link {
  display: block;
  text-align: right;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin-top: 8px;
  text-decoration: none;
}
.faqs .learn-more-link:hover { color: #fff; text-decoration: underline; }

/* ════════════════════════════════════════
   HELP INTRO SECTION
════════════════════════════════════════ */
#help-intro {
  background-color: #f9f9fa;
  padding: 50px 10px;
}
.help-intro__upper-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.help-intro__title {
  font-family: 'Roboto', sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #1b2d3f;
  line-height: 1.2;
  margin-bottom: 15px;
}
.help-intro__text { font-size: 15px; color: #1b2d3f; line-height: 1.65; }
.help-intro__text p { font-size: 15px; line-height: 1.65; margin-bottom: 1rem; }
.help-intro__text a { color: #1d4dcd; }

/* ════════════════════════════════════════
   ABOUT US SECTION
════════════════════════════════════════ */
#about-us { padding: 40px 0; background: #fff; }
.about-us__title {
  font-family: 'Roboto', sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #1b2d3f;
  margin-bottom: 20px;
}
.about-us__text p { font-size: 15px; color: #1b2d3f; line-height: 1.65; }
.about-us__image {
  background-image: url('https://housing-programs.org/wp-content/themes/wp_infinity_theme/dist/assets/images/home/img_family.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 350px;
  border-radius: 4px;
}

/* ════════════════════════════════════════
   INFO AFFILIATES / BOTTOM CTA
════════════════════════════════════════ */
.info-affiliates-home-block { margin-top: 40px; padding: 0 0 50px; background: #fff; }
.info-affiliates-home-block__inner {
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.info-affiliates-home-block__image {
  background-image: url('https://assets.housing-programs.org/wp-content/uploads/sites/350/2020/03/main-img-600x427.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 280px;
}
.info-affiliates-home-block__title {
  font-family: 'Roboto', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #1b2d3f;
  margin-bottom: 15px;
  line-height: 1.35;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: #f9f9fa;
  border-top: 1px solid #dee2e6;
  padding: 40px 0 0;
  color: #1b2d3f;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
}
.footer-col__logo {
  display: block;
  height: 32px;
  width: auto;
  margin-bottom: 12px;
}
.footer-col__tagline {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin: 0;
}
.footer-col__heading {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1b2d3f;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dee2e6;
}
.footer-col__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col__links li { margin-bottom: 8px; }
.footer-col__links a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  line-height: 1.4;
}
.footer-col__links a:hover { color: #1d4dcd; }
/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #dee2e6;
  padding: 18px 0 22px;
}
.site-disclaimer {
  font-size: 11px;
  color: #aaa;
  line-height: 1.65;
  margin-bottom: 8px;
  text-align: center;
}
.footer-disclaimer {
  font-size: 11px;
  color: #aaa;
  line-height: 1.65;
  margin-bottom: 12px;
  text-align: center;
}
.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-copyright {
  font-size: 11px;
  color: #aaa;
  margin: 0;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav li { display: flex; align-items: center; }
.footer-nav li a {
  font-size: 11px;
  color: #aaa;
  text-decoration: none;
  padding: 0 6px;
}
.footer-nav li a:hover { color: #1d4dcd; text-decoration: underline; }
.footer-nav li:not(:last-child)::after {
  content: '|';
  font-size: 11px;
  color: #ddd;
}

/* ════════════════════════════════════════
   AD CONTAINMENT  (DL SOP Bug 9)
════════════════════════════════════════ */
.ad_code {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.ad_code iframe { max-width: 100%; }

/* ════════════════════════════════════════
   RESPONSIVE / MOBILE  (DL SOP §9B)
════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Typography */
  .hero-with-path__title { font-size: 28px; text-align: center; }

  /* Hero */
  #hero-with-path { padding: 0 16px; }

  /* Help intro */
  #help-intro { text-align: center; }
  #help-intro .section-eyebrow,
  #help-intro .section-title,
  #help-intro .section-subtitle { text-align: center; }
  #help-intro .help-grid { grid-template-columns: 1fr; }

  /* About Us */
  #about-us { text-align: center; }
  #about-us .section-eyebrow,
  #about-us .section-title,
  #about-us .section-body { text-align: center; }

  /* CTA block */
  .info-affiliates-home-block { text-align: center; }
  .info-affiliates-home-block .section-eyebrow,
  .info-affiliates-home-block .section-title,
  .info-affiliates-home-block .section-body { text-align: center; }
  .info-affiliates-home-block .cta-btn-wrap { justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-col--brand,
  .footer-col { text-align: center; }
  .footer-col__logo { margin-left: auto; margin-right: auto; }
  .footer-col__links { text-align: center; }
  .footer-disclaimer { text-align: center; }
  .footer-bottom-bar { align-items: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   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: 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(--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: 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-500);
}

/* ═══════════════════════════════════
           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: 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(--primary-800);
  background: var(--surface-100);
  border-color: var(--primary-100);
  padding-left: 20px;
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: var(--accent-500);
  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%;
}

.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='%231d4dcd'/%3E%3C/svg%3E");
  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-md);
  transition: 0.2s ease-in;
}

.sublist.card:hover {
  box-shadow: var(--box-shadow-lg);
  color: var(--primary-500);
  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;
  }
}
