/* ============================================================
   RAVELWORTH IDENTITY 3.0 — FULL CSS REBUILD
   Designed for: Truth, Discipline, Movement, Clarity
   ============================================================ */


/* ------------------------------------------------------------
   1. ROOT VARIABLES — COLOUR SYSTEM 2.0
   ------------------------------------------------------------ */
:root {
    --rv-soft-bg: #F7F3EC;  /* Soft Ivory */
    --rv-deep: #0A4D5C;      /* Deep Ocean Teal */
}


:root {
    --rv-base: #0A374A;          /* Deep Movement Blue-Green */
    --rv-base-light: #0C3E55;    /* Lighter headline base */
    --rv-accent: #C9A66B;        /* Honest muted gold */
    --rv-ivory: #F6F2EA;         /* Warm ivory background */
    --rv-white: #FFFFFF;         /* Pure white */
    --rv-dark: #142B32;          /* Deep contrast tone */
    --rv-text: #1C1C1C;          /* High legibility charcoal */
    --rv-text-soft: #2C2C2C;
    --rv-border: #DCD5C9;
    --rv-shadow: rgba(0, 0, 0, 0.06);
    --rv-shadow-strong: rgba(0, 0, 0, 0.12);
}

/* ------------------------------------------------------------
   2. GLOBAL RESET & TYPOGRAPHY
   ------------------------------------------------------------ */
html, body {
    margin: 0;
    padding: 0;
    background: var(--rv-ivory);
    color: var(--rv-text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    color: var(--rv-base);
    margin-top: 0;
}

p, li {
    color: var(--rv-text-soft);
    line-height: 1.65;
}

/* Global card style */
.rv-card {
    background: var(--rv-white);
    border-radius: 14px;
    box-shadow: 0 2px 10px var(--rv-shadow);
    padding: 40px;
}

/* ------------------------------------------------------------
   3. HEADER
   ------------------------------------------------------------ */
.site-header {
    background-color: #063843; /* Deep Teal */
    border-bottom: none;
    padding: 18px 0;
}

.site-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header__title {
    font-family: 'Sora', sans-serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: #FFFFFF; /* updated for dark header */
    text-decoration: none;
}

.site-header__tagline--strong {
    font-size: 0.95rem;
    color: var(--rv-accent);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.site-header__nav {
    display: flex;
    gap: 28px;
}

.site-header__nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: #FFFFFF; /* white links for dark header */
    font-weight: 500;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.site-header__nav-link:hover {
    border-color: #E3F1F3; /* soft light teal hover underline */
}

.site-header__nav-link:hover {
    border-color: var(--rv-accent);
}

/* ------------------------------------------------------------
   4. HERO SECTION
   ------------------------------------------------------------ */
.hero-section {
    background: var(--rv-white);
    padding: 100px 0;
    border-bottom: 1px solid var(--rv-border);
}

.hero-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.hero-section__title {
    font-size: 2.6rem;
    color: var(--rv-base);
    margin-bottom: 20px;
    line-height: 1.25;
}

.hero-section__subtitle {
    font-size: 1.25rem;
    color: var(--rv-text-soft);
    margin-bottom: 35px;
    max-width: 650px;
}

.hero-section__cta {
    display: inline-block;
    background: var(--rv-base);
    color: var(--rv-white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease;
}

.hero-section__cta:hover {
    background: var(--rv-base-light);
}

/* ------------------------------------------------------------
   5. STRONG ANCHOR SECTION
   ------------------------------------------------------------ */
.section-strong-anchor {
    background: var(--rv-base);
    padding: 90px 0;
}

.section-strong-anchor__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 22px;
    text-align: center;
}

.section-strong-anchor__title {
    color: var(--rv-accent);
    font-size: 2rem;
    margin-bottom: 25px;
}

.section-strong-anchor__text {
    color: var(--rv-ivory);
    font-size: 1.15rem;
    margin-bottom: 22px;
}

.section-strong-anchor__highlight {
    margin-top: 35px;
    font-size: 1.4rem;
    color: var(--rv-white);
    font-weight: 600;
}

/* ------------------------------------------------------------
   6. SOFT INTRO
   ------------------------------------------------------------ */
.section-soft-intro {
    background: var(--rv-ivory);
    padding: 60px 0;
    text-align: center;
}

.section-soft-intro__text {
    font-size: 1.25rem;
    color: var(--rv-base-light);
    font-weight: 500;
}

/* ------------------------------------------------------------
   7. MAIN STORY SECTION
   ------------------------------------------------------------ */
.section-story {
    padding: 100px 0;
    background: var(--rv-ivory);
}

.section-story__wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 22px;
}

.section-story__container {
    background: var(--rv-white);
    padding: 50px 45px;
    border-radius: 14px;
    box-shadow: 0 3px 12px var(--rv-shadow);
}

.section-story__title {
    font-size: 2rem;
    color: var(--rv-base);
    margin-bottom: 25px;
}

.section-story__text {
    margin-bottom: 20px;
    font-size: 1.13rem;
}

.section-story__highlight {
    margin-top: 30px;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--rv-base-light);
}

/* ------------------------------------------------------------
   8. INTRO SECTION (existing content)
   ------------------------------------------------------------ */
.section-intro {
    padding: 100px 0;
    background: var(--rv-ivory);
}

.section-intro__wrap {
    background: var(--rv-white);
    border-radius: 14px;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 45px;
    box-shadow: 0 3px 12px var(--rv-shadow);
}

.section-intro__title {
    font-size: 1.9rem;
    color: var(--rv-base);
    margin-bottom: 25px;
}

.section-intro__highlight {
    font-size: 1.3rem;
    color: var(--rv-base-light);
    font-weight: 600;
    margin: 35px 0;
}

/* ------------------------------------------------------------
   9. LEAKS (3 cards)
   ------------------------------------------------------------ */
.section-leaks {
    padding: 80px 0;
    background: var(--rv-ivory);
}

.section-leaks__title {
    text-align: center;
    font-size: 2rem;
    color: var(--rv-base);
    margin-bottom: 50px;
}

.section-leaks__cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 0 22px;
}

.leak-card {
    background: var(--rv-white);
    flex: 1;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 3px 12px var(--rv-shadow);
}

.leak-card__title {
    font-size: 1.4rem;
    color: var(--rv-base);
    margin-bottom: 12px;
}

/* Mobile */
@media (max-width: 900px) {
    .section-leaks__cards {
        flex-direction: column;
    }
}

/* ------------------------------------------------------------
   10. BENEFITS
   ------------------------------------------------------------ */
.section-benefits {
    padding: 100px 0;
    background: var(--rv-ivory);
}

.section-benefits__title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--rv-base);
}

.section-benefits__container {
    display: grid;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
    gap: 30px;
}

.benefit-strip {
    background: var(--rv-white);
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 3px 12px var(--rv-shadow);
}

/* ------------------------------------------------------------
   11. ANCHOR LINE
   ------------------------------------------------------------ */
.section-anchor {
    background: var(--rv-white);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--rv-border);
    border-bottom: 1px solid var(--rv-border);
}

.section-anchor__text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--rv-base-light);
}

/* ------------------------------------------------------------
   12. WHY TOOLS / STAGE-1
   ------------------------------------------------------------ */
.section-why-tools {
    padding: 100px 0;
    background: var(--rv-ivory);
}

.section-why-tools__wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 22px;
}

.section-why-tools__container {
    background: var(--rv-white);
    padding: 60px 45px;
    border-radius: 14px;
    box-shadow: 0 3px 12px var(--rv-shadow);
}

.section-why-tools__title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--rv-base);
}

.section-why-tools__divider {
    border: none;
    border-bottom: 1px solid var(--rv-border);
    margin: 35px 0;
}

/* ------------------------------------------------------------
   13. WHO RAVELWORTH IS FOR
   ------------------------------------------------------------ */
.section-who {
    padding: 100px 0;
    background: var(--rv-ivory);
}

.section-who__wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 22px;
}

.section-who__wrap > * {
    background: var(--rv-white);
    border-radius: 14px;
    padding: 50px 45px;
    box-shadow: 0 3px 12px var(--rv-shadow);
}

.section-who__title {
    text-align: center;
    font-size: 2rem;
    color: var(--rv-base);
    margin-bottom: 30px;
}

/* ------------------------------------------------------------
   14. CTA
   ------------------------------------------------------------ */
.section-cta {
    background: var(--rv-base); /* deep movement colour */
    padding: 120px 0;
    border-top: none;
}

.section-cta__wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 22px;
}

.section-cta__container {
    background: var(--rv-white);
    padding: 60px 45px;
    border-radius: 14px;
    box-shadow: 0 4px 14px var(--rv-shadow-strong);
    text-align: center;
}

.section-cta__title {
    font-size: 2.2rem;
    color: var(--rv-base);
    margin-bottom: 25px;
}

.section-cta__highlight {
    font-size: 1.3rem;
    color: var(--rv-base-light);
    font-weight: 600;
    margin: 30px 0;
}

.section-cta__button {
    display: inline-block;
    background: var(--rv-base);
    padding: 16px 36px;
    color: var(--rv-white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s ease;
}

.section-cta__button:hover {
    background: var(--rv-base-light);
}

/* ---------------------------------- */
/* TOOLKIT HUB UPGRADE                */
/* ---------------------------------- */

.section-tools {
    background-color: #F7F3EC;
    padding: 80px 0 120px;
}

.section-tools__container {
    max-width: 1200px;
    margin: 0 auto 90px; /* added bottom spacing */
    padding: 0 20px;
    text-align: center;
}

.section-tools__title {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    color: #1E1E1E;
    margin-bottom: 15px;
}

.section-tools__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #1E1E1E;
    margin: -10px 0 40px;
    text-align: center;
    line-height: 1.6;
}

.tools-stack {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center; /* center the cards */
}

.tool-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    display: flex; /* equal height fix */
    flex-direction: column;
    justify-content: space-between;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.08); /* premium hover */
}
/* LOGIN PAGE FORM IMPROVEMENTS */

/* Center the login section */
.section-login {
    background-color: var(--rv-soft-bg) !important;  /* Soft Ivory */
    padding: 100px 20px !important;
}

/* Styling the login card (wrap) */
.section-login__wrap {
    max-width: 550px !important;
    margin: 0 auto !important;
    background: #fff !important;
    padding: 50px 40px !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06) !important;
}

/* Intro text before form */
.login-form__intro {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.05rem !important;
    color: #444 !important;
    text-align: center !important;
    margin-bottom: 25px !important;
}

/* Login Title */
.section-login__title {
    font-family: 'Sora', sans-serif !important;
    color: #1E1E1E !important;
    text-align: center !important;
    font-size: 2rem !important;
    margin-bottom: 35px !important;
}

/* Form Styling */
.login-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}

/* Input Labels */
.login-form__label {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    color: #333 !important;
}

/* Input Fields (full width, clean, with spacing) */
.login-form__input {
    padding: 14px 12px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    border: 1px solid #ccc !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Focus state on inputs */
.login-form__input:focus {
    outline: none !important;
    border-color: var(--rv-deep) !important;
    box-shadow: 0 0 0 3px rgba(0, 89, 76, 0.12) !important;
}

/* Remember Me Section */
.login-form__remember {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Login Button Styling */
.login-form__button {
    background-color: var(--rv-deep) !important;  /* Deep Ocean Teal */
    color: #fff !important;
    border: none !important;
    padding: 14px 0 !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    margin-top: 10px !important;
    transition: background-color 0.2s ease !important;
}

/* Hover effect on button */
.login-form__button:hover {
    background-color: #05413c !important;
}

/* Error message when login fails */
.login-form__error {
    margin-top: 25px !important;
    padding: 15px !important;
    background-color: #ffe5e5 !important;
    color: #c70000 !important;
    border-radius: 6px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    text-align: center !important;
}

/* Sign-up Link */
.login-form__signup {
    margin-top: 25px !important;
    text-align: center !important;
    font-family: 'Inter', sans-serif !important;
    color: #333 !important;
}

/* Sign-up link hover color */
.login-form__signup-link {
    color: var(--rv-deep) !important;  /* Deep Ocean Teal */
    font-weight: 600 !important;
    text-decoration: none !important;
}

.login-form__signup-link:hover {
    text-decoration: underline !important;
}

/* Mobile view adjustments */
@media (max-width: 600px) {
    .section-login__wrap {
        padding: 40px 25px !important;
    }

    .section-login__title {
        font-size: 1.8rem !important;
    }

    .login-form__button {
        padding: 12px 0 !important;
    }
}
/* REGISTRATION PAGE IMPROVEMENTS */

/* Centering the Registration Section */
.section-register {
    background-color: var(--rv-soft-bg);  /* Soft Ivory */
    padding: 100px 20px;
}

/* Registration Card */
.section-register__wrap {
    max-width: 550px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 40px;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}

/* Intro Text Above the Form */
.section-register__intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #444;
    text-align: center;
    margin-bottom: 25px;
}

/* Registration Title */
.section-register__title {
    font-family: 'Sora', sans-serif;
    color: #1E1E1E;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 35px;
}

/* Form Styling */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Form Labels */
.register-form__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #333;
}

/* Input Fields (full-width, modern) */
.register-form__input {
    padding: 14px 12px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

/* Focus State for Inputs */
.register-form__input:focus {
    outline: none;
    border-color: var(--rv-deep);  /* Deep Ocean Teal */
    box-shadow: 0 0 0 3px rgba(0, 89, 76, 0.12);
}

/* Submit Button */
.register-form__button {
    background-color: var(--rv-deep);  /* Deep Ocean Teal */
    color: #fff;
    border: none;
    padding: 14px 0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

/* Hover effect on button */
.register-form__button:hover {
    background-color: #05413c;
}

/* Error message styling */
.register-form__error {
    margin-top: 25px;
    padding: 15px;
    background-color: #ffe5e5;
    color: #c70000;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-align: center;
}

/* Sign-up Link */
.register-form__login {
    margin-top: 25px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Login link hover effect */
.register-form__login-link {
    color: var(--rv-deep);  /* Deep Ocean Teal */
    font-weight: 600;
    text-decoration: none;
}

.register-form__login-link:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 600px) {
    .section-register__wrap {
        padding: 40px 25px;
    }

    .section-register__title {
        font-size: 1.8rem;
    }

    .register-form__button {
        padding: 12px 0;
    }
}
/* Footer Styles */
.site-footer {
  background-color: #063843; /* Deep Teal to match header background */
  color: var(--rv-white); /* White text for visibility */
  padding: 60px 0; /* Spacing around the footer */
  text-align: center; /* Center the content */
}

.site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  padding: 0 22px; /* Added padding to match header structure */
}

.site-footer__branding {
  display: flex;
  align-items: center;
}

.site-footer__title {
  font-family: 'Sora', sans-serif; /* Consistent with header */
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rv-white); /* White title text */
  margin-left: 10px;
}

.site-footer__tagline {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--rv-white); /* White text for visibility */
  margin: 15px 0;
}

.site-footer__nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-footer__nav-link {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--rv-white); /* White text for footer links */
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.site-footer__nav-link:hover {
  border-color: var(--rv-accent); /* Soft gold color on hover */
}

.site-footer__copy {
  font-size: 0.85rem;
  color: var(--rv-white); /* White text */
  margin-top: 20px;
}

@media (max-width: 768px) {
  .site-footer__container {
    flex-direction: column;
    align-items: center;
  }

  .site-footer__nav {
    margin-top: 20px;
  }

  .site-footer__nav-link {
    margin-left: 0;
    margin-top: 10px;
  }
}
/* ============================================================
   RAVELWORTH TOOLKIT — UNIVERSAL TOOL INPUT STYLING
   ============================================================ */

/* Labels */
.tool-label {
    display: block;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--rv-text);
}

/* Textarea */
.tool-input-textarea {
    width: 100%;
    padding: 14px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    margin-bottom: 20px;
    box-sizing: border-box;
    background: #fff;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.tool-input-textarea:focus {
    outline: none;
    border-color: var(--rv-deep);
    box-shadow: 0 0 0 3px rgba(0, 89, 76, 0.15);
}

/* Select Dropdown */
.tool-input-select {
    width: 100%;
    padding: 14px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #333;
    margin-bottom: 20px;
    background: #fff;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.tool-input-select:focus {
    outline: none;
    border-color: var(--rv-deep);
    box-shadow: 0 0 0 3px rgba(0, 89, 76, 0.15);
}

/* Primary Button */
.tool-button {
    background-color: var(--rv-deep);
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.tool-button:hover {
    background-color: #05413c;
    transform: translateY(-2px);
}

/* Result Heading */
.tool-result {
    margin-top: 30px;
    font-size: 1.4rem;
    font-family: 'Sora', sans-serif;
    color: var(--rv-base-light);
    font-weight: 600;
}

/* Advice Text */
.tool-advice {
    margin-top: 10px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    color: var(--rv-text-soft);
    line-height: 1.6;
}
.alert-success {
    background: #e1f7e9;
    color: #0b642e;
    border: 1px solid #b8e6c7;
    padding: 14px 18px;
    margin: 20px auto;
    max-width: 500px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.alert-success {
    background: red !important;
}
/* Dashboard User Card */
.dashboard-usercard {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.dashboard-usercard p {
    font-size: 1.05rem;
    margin: 6px 0;
    color: var(--rv-text);
}
/* ================================
   DASHBOARD LAYOUT
================================ */

.section-dashboard {
    background: var(--rv-soft-bg);
    padding: 80px 20px;
}

.section-dashboard__wrap {
    max-width: 900px;
    margin: 0 auto;
}

.section-dashboard__container {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.section-dashboard__title {
    font-size: 2rem;
    font-family: 'Sora', sans-serif;
    color: var(--rv-base);
    margin-bottom: 20px;
}

.section-dashboard__intro {
    font-size: 1.2rem;
    color: var(--rv-text-soft);
    margin-bottom: 25px;
}

/* Dashboard cards */
.dashboard-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.dashboard-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.dashboard-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dashboard-card__list li {
    margin-bottom: 10px;
}

.dashboard-card__list a {
    color: var(--rv-deep);
    text-decoration: none;
    font-weight: 600;
}

.dashboard-card__list a:hover {
    text-decoration: underline;
}
