/*
 * GetSRED Consultants – site.css
 * Brand values sourced from wwwroot/Chrome/Home_files/post-8.css (Elementor kit)
 *
 * Color palette:
 *   Primary:   #50659F
 *   Secondary: #3F4E80
 *   Text:      #222222
 *   White:     #FFFFFF
 *   Off-white: #EFE9E2   (--e-global-color-c84e4cb)
 *   Light bg:  #F4F6F8   (--e-global-color-bb4eb39)
 *   Subtle:    #F1F1F1   (--e-global-color-3c939e7)
 *   Footer bg: #333333
 */

/* ====================================================
   CSS VARIABLES
   ==================================================== */
:root {
    --primary:      #50659F;
    --secondary:    #3F4E80;
    --text:         #222222;
    --white:        #FFFFFF;
    --off-white:    #EFE9E2;
    --light-bg:     #F4F6F8;
    --subtle-bg:    #F1F1F1;
    --footer-bg:    #333333;
    --border-light: #D7DCE5;
    --font:         "Montserrat", sans-serif;
    --radius-pill:  50px;
    --nav-height:   70px;
}

/* ====================================================
   BASE
   ==================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

h1 { font-size: 68px; }
h2 { font-size: 40px; }
h3 { font-size: 22px; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--secondary); }

img { max-width: 100%; height: auto; }

p { line-height: 1.7; }

@media (max-width: 991px) {
    h1 { font-size: 42px; }
    h2 { font-size: 30px; }
}
@media (max-width: 575px) {
    h1 { font-size: 32px; }
    h2 { font-size: 24px; }
}

/* ====================================================
   BUTTONS  (border-radius: 50px matches Elementor kit)
   ==================================================== */
.btn {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-pill);
    border-width: 2px;
    border-style: solid;
    padding: 14px 28px;
    line-height: 1.2;
    display: inline-block;
    cursor: pointer;
    transition: background-color .2s, color .2s, border-color .2s;
}

/* Primary solid – blue fill, white text */
.btn-primary {
    background-color: var(--primary);
    color: var(--white) !important;
    border-color: var(--white);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--secondary);
    border-color: var(--white);
    color: var(--white) !important;
}

/* Secondary outline – off-white fill, secondary text */
.btn-secondary-outline {
    background-color: var(--off-white);
    color: var(--secondary) !important;
    border-color: var(--off-white);
}
.btn-secondary-outline:hover, .btn-secondary-outline:focus {
    background-color: var(--secondary);
    color: var(--white) !important;
    border-color: var(--white);
}

/* Nav CTA button */
.btn-nav-cta {
    background-color: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-pill);
}
.btn-nav-cta:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

/* Final CTA section outline white button */
.btn-cta-outline {
    background-color: transparent;
    color: var(--white) !important;
    border-color: var(--white);
}
.btn-cta-outline:hover {
    background-color: var(--white);
    color: var(--secondary) !important;
}

/* ====================================================
   HEADER / NAV
   ==================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 0 5px rgba(0,0,0,.5);
}

.site-header .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: var(--nav-height);
}

.nav-logo {
    width: 91.031px;
    height: 53.594px;
}

/* Mobile: larger centred logo on row 1 */
.nav-logo-mobile {
    width: 137.5px;
    height: 80.922px;
}

/* Row 2 on mobile: button + toggler, with top spacing below the logo */
.nav-mobile-row2 {
    margin-top: 10px;
    padding-bottom: 6px;
}

/* Hide the Eligibility Quick Check item from the collapsed menu on mobile
   (it already appears in row 2 above the collapsed menu) */
@media (max-width: 1199px) {
    .navbar-nav .nav-item:last-child { display: none; }
}

.navbar-nav .nav-link {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--text) !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    transition: color .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-toggler {
    border: none;
    background-color: var(--primary);
    border-radius: 6px;
    padding: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.navbar-toggler-icon {
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero-section {
    background-color: var(--white);
    padding: 120px 0;
}

.hero-section h1 {
    font-size: 68px;
    font-weight: 700;
    color: #000000;
    line-height: 1.15;
}

.hero-section .hero-sub {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    margin-top: 16px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .hero-section { padding: 40px 0 60px; }
    .hero-section h1 { font-size: 38px; }
}

@media (max-width: 767px) {
    .hero-section h1 { font-size: 32px; text-align: center; }
    .hero-section .hero-sub { text-align: center; }
    .hero-section .d-flex { align-items: center; }
    .hero-section .btn { width: 100%; justify-content: center; }
}

/* ====================================================
   STATS BAR
   ==================================================== */
.stats-bar {
    background-color: var(--light-bg);
    padding: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-number {
    font-family: var(--font);
    font-size: 50px;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1;
    display: block;
}

.stat-label {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.5;
    margin-top: 8px;
}

.stat-divider {
    border-left: 1px solid var(--border-light);
}

@media (max-width: 767px) {
    .stat-divider { border-left: none; border-top: none; padding-top: 0; }
}

/* ====================================================
   SECTION GENERIC
   ==================================================== */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.section-lead {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    max-width: 640px;
}

/* ====================================================
   CHALLENGE / SOLUTION (2-col with icons)
   ==================================================== */
.challenge-section { background-color: var(--white); }

.challenge-col, .solution-col {
    padding: 50px 40px;
}

.challenge-col {
    background-color: var(--subtle-bg);
    border-radius: 20px 0 0 20px;
}

.solution-col {
    background-color: var(--primary);
    border-radius: 0 20px 20px 0;
    color: var(--white);
}

.solution-col .section-title,
.solution-col .challenge-item-text { color: var(--white); }

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.challenge-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 2px;
}

.challenge-item-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .challenge-col { border-radius: 20px 20px 0 0; }
    .solution-col  { border-radius: 0 0 20px 20px; }
}

/* ====================================================
   ELIGIBILITY CHECK CARDS
   ==================================================== */
.eligibility-section { background-color: var(--white); }

.elig-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}
.elig-card:hover {
    box-shadow: 0 6px 24px rgba(80,101,159,.15);
    transform: translateY(-3px);
}

.elig-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
}

.elig-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.elig-card-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ====================================================
   CALCULATOR SECTION
   ==================================================== */
.calc-section { background-color: var(--white); }

.calc-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 28px 0 0 28px;
    padding: 50px 40px;
}

.calc-side-panel {
    background-color: #647bb0;
    border-radius: 0 28px 28px 0;
    padding: 54px 38px;
    color: var(--white);
    height: 100%;
}

.calc-side-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
}

.calc-result-card {
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 16px;
}

.calc-result-big {
    font-size: 40px;
    font-weight: 700;
}

.calc-result-label {
    font-size: 16px;
    color: #eef2ff;
}

.calc-form label {
    font-size: 15px;
    font-weight: 700;
    color: #3b3b3b;
    margin-bottom: 6px;
    display: block;
}

.calc-form input[type=number],
.calc-form select {
    width: 100%;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    outline: none;
    margin-bottom: 20px;
    background: var(--white);
}

.calc-form input[type=number]:focus,
.calc-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(80,101,159,.15);
}

.btn-calc-submit {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    padding: 16px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: background-color .2s;
}
.btn-calc-submit:hover { background-color: #667fb3; border-color: #667fb3; }

#calc-result-display { display: none; }

@media (max-width: 1024px) {
    .calc-card        { border-radius: 28px 28px 0 0; }
    .calc-side-panel  { border-radius: 0 0 28px 28px; padding: 30px; }
}

/* ====================================================
   HOW IT WORKS
   ==================================================== */
.how-section { background-color: var(--white); }

.step-card {
    text-align: center;
    padding: 30px 24px;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.step-icon-wrap {
    width: 72px;
    height: 72px;
    background-color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.step-icon-wrap svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.step-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ====================================================
   COMPARISON  (Traditional vs Our Approach)
   ==================================================== */
.compare-section { background-color: var(--light-bg); }

.compare-col-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
}

.compare-col-title.traditional { color: var(--text); }
.compare-col-title.our-approach { color: var(--secondary); }

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.5;
}

.compare-item img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ====================================================
   TESTIMONIAL
   ==================================================== */
.testimonial-section {
    background-color: var(--off-white);
    padding: 80px 0;
    text-align: center;
}

.testimonial-quote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    max-width: 760px;
    margin: 0 auto 24px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 15px;
    color: var(--secondary);
}

/* ====================================================
   FINAL CTA BANNER
   ==================================================== */
.cta-banner {
    background-color: var(--primary);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    margin-bottom: 36px;
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer { background-color: var(--footer-bg); color: #ccc; }

.footer-main { padding: 50px 0 30px; }

.footer-logo {
    height: 54px;
    width: auto;
}

.footer-tagline {
    font-size: 14px;
    color: var(--border-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-col-heading {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    font-size: 14px;
    color: var(--border-light);
    padding-block-end: 4px;
    margin-block-start: 4px;
}
.footer-links a {
    color: var(--border-light);
    text-decoration: none;
    transition: color .2s;
}
.footer-links a:hover {
    color: #a8bcdf;
}

.footer-contact a { color: var(--border-light) !important; }
.footer-contact a:hover { color: var(--white) !important; }
.footer-contact li { display: flex; align-items: center; gap: 0; }

.footer-social { display: flex; gap: 12px; }
.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background .2s;
}
.footer-social-link:hover { background: var(--primary); color: var(--white) !important; }

.footer-bottom {
    background-color: rgba(0,0,0,.2);
    padding: 20px 0;
}
.footer-bottom a { color: var(--border-light); }
.footer-bottom a:hover { color: var(--white); }

.footer-disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* ====================================================
   ELIGIBILITY MODAL
   ==================================================== */
.modal-content {
    border-radius: 20px;
    border: none;
    font-family: var(--font);
}

.modal-header {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 24px 28px;
}

.modal-header .modal-title {
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
}

.modal-header .btn-close { filter: invert(1); }

.modal-body { padding: 28px; }

.elig-question {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text);
}

.elig-options .form-check-label {
    font-size: 14px;
    cursor: pointer;
}

.modal-footer {
    border-top: 1px solid var(--border-light);
    padding: 16px 28px;
}

#eligibility-result {
    display: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 16px;
}

.elig-result-positive {
    background-color: #d1fae5;
    color: #065f46;
}

.elig-result-negative {
    background-color: #fee2e2;
    color: #991b1b;
}

/* ====================================================
   INNER PAGES — HERO
   ==================================================== */
.inner-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 70px 0 60px;
    text-align: center;
}
@media (min-width: 768px) {
    .inner-hero { text-align: left; }
}
.inner-hero-eyebrow {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 12px;
}
.inner-hero-title {
    font-family: var(--font);
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.inner-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,.85);
    max-width: 680px;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .inner-hero-sub { margin-left: auto; margin-right: auto; }
}

/* ====================================================
   INNER PAGES — SERVICE CARDS
   ==================================================== */
.service-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
}
.service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.service-card-title {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.service-list li {
    font-size: 14px;
    padding: 4px 0 4px 20px;
    position: relative;
    color: var(--text-light);
}
.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ====================================================
   INNER PAGES — PRICING CARDS
   ==================================================== */
.pricing-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(80,101,159,.2);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.pricing-card-title {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}
.pricing-card-sub {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}
.pricing-fee {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
    padding-top: 12px;
}

/* ====================================================
   INNER PAGES — INDUSTRY CARDS
   ==================================================== */
.industry-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
}
.industry-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.industry-card-title {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}
.industry-activities-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
    margin-top: 12px;
}

/* ====================================================
   INNER PAGES — CRITERIA CARDS
   ==================================================== */
.criteria-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 28px;
    border-left: 4px solid var(--primary);
}
.criteria-title {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

/* ====================================================
   INNER PAGES — ABOUT PILLARS
   ==================================================== */
.about-pillar {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 24px;
}
.about-pillar-title {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

/* ====================================================
   INNER PAGES — INDUSTRY PILLS (About Us)
   ==================================================== */
.industry-pill {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 20px;
}
.industry-pill-title {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

/* ====================================================
   INNER PAGES — CONTACT
   ==================================================== */
.contact-trust-badge {
    font-size: 13px;
    color: rgba(255,255,255,.85);
    display: inline-flex;
    align-items: center;
}
.contact-trust-badge i { color: rgba(255,255,255,.7); }
.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
.contact-info-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 2px;
}
.contact-info-value { font-weight: 600; color: var(--text); text-decoration: none; display: block; }
.contact-info-value:hover { color: var(--primary); }
.contact-info-sub { font-size: 13px; color: var(--text-light); }
.contact-promise-title {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 14px;
}
.contact-promise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-promise-list li { font-size: 14px; color: var(--text); }
.contact-promise-list i { color: var(--primary); }
.form-disclaimer { font-size: 12px; color: var(--text-light); }
.form-disclaimer a { color: var(--primary); }

/* ====================================================
   INNER PAGES — RESOURCE CARDS
   ==================================================== */
.resource-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
}
.resource-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.resource-badge {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
    width: fit-content;
}
.resource-card-title {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

/* ====================================================
   UTILITIES
   ==================================================== */
.text-primary-brand { color: var(--primary) !important; }
.text-secondary-brand { color: var(--secondary) !important; }
.bg-light-brand { background-color: var(--light-bg); }
.bg-off-white { background-color: var(--off-white); }
.rounded-xl { border-radius: 20px; }
