/**
 * Sala virtual — estilos (login e shell).
 * Cores alinhadas ao frame Figma (SITE-LEGADO — login sala).
 */
:root {
    --vr-navy: #0a1733;
    --vr-blue: #1d4699;
    --vr-panel: #f5f4f4;
    --vr-input-bg: #ebebeb;
    --vr-gold: #c1a674;
}

.virtual-room {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: var(--vr-navy);
    background: #fff;
}

.virtual-room__main {
    background: #fff;
}

.virtual-room-header__logo {
    max-height: 44px;
    width: auto;
}

.virtual-room-header__academy-link {
    color: var(--vr-blue);
    font-weight: 600;
}

.virtual-room-header__academy-link:hover {
    text-decoration: underline !important;
    color: #163d82;
}

.virtual-room-user-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    line-height: 44px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    background: var(--vr-blue);
    border: none;
}

.virtual-room-user-toggle:hover,
.virtual-room-user-toggle:focus {
    background: #163d82;
    color: #fff;
}

.virtual-room-footer__legal {
    background: var(--vr-blue);
    border-top: 4px solid var(--vr-gold);
}

.virtual-room-footer__copy a {
    color: #fff;
}

.virtual-room-login-card {
    border: 1px solid rgba(10, 23, 51, 0.08);
}

.virtual-room-login-card__form {
    background: var(--vr-panel);
}

.virtual-room-login-card__visual img {
    display: block;
}

.virtual-room-login-title {
    color: var(--vr-blue);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.virtual-room-login-lead {
    color: var(--vr-navy);
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.35;
}

.virtual-room-input-icon {
    background: var(--vr-input-bg);
    border: none;
    color: #6c757d;
}

.virtual-room-input-field {
    background: var(--vr-input-bg);
    border: none;
    color: var(--vr-navy);
}

.virtual-room-input-field:focus {
    background: var(--vr-input-bg);
    box-shadow: none;
    color: var(--vr-navy);
}

.virtual-room-btn-enter {
    background: var(--vr-blue);
    border: none;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.65rem 2.5rem;
    border-radius: 10px;
}

.virtual-room-btn-enter:hover,
.virtual-room-btn-enter:focus {
    background: #163d82;
}

/* ——— Sala: shell + sidebar (Figma sala / Documentos) ——— */
.vr-shell {
    width: 100%;
    min-height: 0;
    background: #fff;
}

@media (max-width: 991.98px) {
    .vr-shell > .vr-content-area {
        order: -1;
    }
}

.vr-sidebar {
    background: var(--vr-panel);
    border-bottom: 1px solid rgba(10, 23, 51, 0.06);
}

@media (min-width: 992px) {
    .vr-sidebar {
        border-bottom: none;
        border-right: 1px solid rgba(10, 23, 51, 0.06);
        max-width: 320px;
    }
}

.vr-sidebar__inner {
    padding: 1rem 1rem 1.5rem;
}

.vr-quick-access__title {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6c757d;
}

.vr-tree__item {
    margin-bottom: 0.15rem;
}

.vr-tree__row {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    min-height: 2rem;
}

.vr-tree__toggle,
.vr-tree__toggle-spacer {
    flex: 0 0 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
}

.vr-tree__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #6c757d;
    border-radius: 4px;
}

.vr-tree__toggle:hover {
    background: rgba(29, 70, 153, 0.08);
    color: var(--vr-blue);
}

.vr-tree__toggle i {
    font-size: 0.65rem;
    transition: transform 0.15s ease;
}

.vr-tree__item.is-open > .vr-tree__row .vr-tree__toggle i {
    transform: rotate(90deg);
}

.vr-tree__link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    flex: 1;
    padding: 0.35rem 0.45rem;
    border-radius: 8px;
    color: var(--vr-navy);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.3;
}

.vr-tree__link:hover {
    background: rgba(29, 70, 153, 0.07);
    color: var(--vr-blue);
}

.vr-tree__link.is-active {
    background: rgba(29, 70, 153, 0.12);
    color: var(--vr-blue);
    font-weight: 600;
}

.vr-tree__icon {
    flex: 0 0 auto;
    width: 1.15rem;
    text-align: center;
    font-size: 0.95rem;
}

.vr-tree__label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vr-tree--nested {
    display: none;
    margin: 0.1rem 0 0.25rem 0.35rem;
    padding-left: 0.65rem;
    border-left: 1px solid rgba(10, 23, 51, 0.1);
}

.vr-tree--nested.is-visible {
    display: block;
}

@media (min-width: 992px) {
    .vr-sidebar__inner {
        position: sticky;
        top: 0;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}

.vr-sidebar__accordion .accordion-item {
    background: transparent;
}

.vr-sidebar__toggle {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--vr-navy);
    background: transparent;
    box-shadow: none !important;
}

.vr-sidebar__toggle:not(.collapsed) {
    color: var(--vr-blue);
}

.vr-sidebar__nav .vr-sidebar__link {
    display: block;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--vr-navy);
    text-decoration: none;
    border-radius: 6px;
}

.vr-sidebar__nav .vr-sidebar__link:hover {
    color: var(--vr-blue);
    text-decoration: underline;
}

.vr-sidebar__nav .vr-sidebar__link.is-active {
    color: var(--vr-blue);
    font-weight: 600;
}

.vr-sidebar__empty {
    line-height: 1.45;
}

/* ——— Sidebar: árvore de aulas (página da aula) ——— */
.vr-sidebar__lesson-tree-divider {
    border-bottom: 1px solid rgba(10, 23, 51, 0.1);
}

.vr-sidebar__lesson-tree-course-link {
    color: var(--vr-navy);
    line-height: 1.3;
    font-size: 0.95rem;
}

.vr-sidebar__lesson-tree-course-link:hover {
    color: var(--vr-blue);
}

.vr-sidebar__lesson-tree-heading {
    letter-spacing: 0.01em;
    font-size: 0.82rem !important;
    line-height: 1.35;
}

.vr-sidebar__lesson-link {
    font-size: 0.9rem;
    color: var(--vr-navy);
    border: 1px solid transparent;
}

.vr-sidebar__lesson-link:hover {
    background: rgba(29, 70, 153, 0.07);
    color: var(--vr-blue);
}

.vr-sidebar__lesson-link.is-active {
    font-weight: 700;
    color: var(--vr-blue);
    background: rgba(29, 70, 153, 0.12);
    border-color: rgba(29, 70, 153, 0.2);
}

.vr-sidebar__lesson-tree-back {
    display: inline-block;
}

/* ——— Página da aula ——— */
.vr-lesson-page__head {
    border-bottom: 1px solid rgba(10, 23, 51, 0.08);
    padding-bottom: 1rem;
}

.vr-lesson-page__title {
    color: var(--vr-navy);
    font-weight: 800;
}

.vr-lesson-page__kicker {
    letter-spacing: 0.02em;
    font-size: 0.8rem;
}

.vr-lesson-page__lesson-name {
    font-weight: 800;
    font-size: clamp(1.05rem, 2.5vw, 1.45rem);
    line-height: 1.25;
    display: block;
}

.vr-lesson-video iframe {
    width: 100%;
    height: 100%;
}

.vr-content-area {
    min-width: 0;
}

.vr-content-area__inner {
    margin-left: auto;
    margin-right: auto;
}

.vr-search {
    max-width: 520px;
}

.vr-search__group {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(10, 23, 51, 0.08);
}

/* ——— Carrossel “Meus cursos” (miolo) ——— */
.vr-posters__title {
    font-weight: 700;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: var(--vr-navy);
    margin: 0 0 0.75rem;
    letter-spacing: 0.02em;
}

.vr-posters__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0.15rem 0.65rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: rgba(10, 23, 51, 0.35) transparent;
}

.vr-posters__track--grid {
    flex-wrap: wrap;
    overflow-x: visible;
    scroll-snap-type: none;
}

.vr-posters__item {
    flex: 0 0 min(280px, 78vw);
    max-width: 320px;
    width: min(280px, 78vw);
    scroll-snap-align: start;
}

.vr-posters__track--grid .vr-posters__item {
    flex: 1 1 240px;
    max-width: 100%;
}

.legado-academy-card--current {
    box-shadow: 0 0 0 3px var(--vr-gold), 0 10px 36px rgba(10, 23, 51, 0.12);
}

.legado-academy-card__link--current:focus-visible {
    outline: 3px solid var(--vr-blue);
    outline-offset: 4px;
}

.vr-back-link {
    color: var(--vr-blue);
    text-decoration: none;
    font-weight: 600;
}

.vr-back-link:hover {
    text-decoration: underline;
}

/* ——— Legado Academy cards (alinhado à home) ——— */
.legado-academy__container {
    max-width: 1500px;
}

.legado-academy__title {
    font-weight: 800;
    font-size: clamp(1.75rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    color: var(--vr-navy);
}

.legado-academy__rule {
    width: 110px;
    height: 8px;
    border-radius: 4px;
    background: var(--vr-blue);
}

.legado-academy-card {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 473 / 266;
    box-shadow: 0 10px 36px rgba(10, 23, 51, 0.1);
}

.legado-academy-card__media {
    position: absolute;
    inset: 0;
}

.legado-academy-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.legado-academy-card__img--layer {
    z-index: 1;
}

.legado-academy-card__shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(-87deg, rgba(217, 217, 217, 0) 32.17%, rgb(10, 23, 51) 97.99%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.legado-academy-card__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 0.85rem 1.1rem 1rem;
}

.legado-academy-card__title {
    font-weight: 700;
    font-size: clamp(1rem, 1.45vw, 1.2rem);
    line-height: 1.15;
    color: #fff;
    margin: 0;
}

.legado-academy-card--rotina .legado-academy-card__title {
    font-size: clamp(1.05rem, 1.85vw, 1.98rem);
    line-height: 1.1;
}

.legado-academy-card__bar {
    width: 52px;
    height: 7px;
    background: #fff;
    border-radius: 2px;
}

.legado-academy-card__link {
    display: flex;
    width: 100%;
    min-width: 0;
    color: inherit;
}

.legado-academy-card--interactive {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.legado-academy-card--interactive:hover {
    transform: scale(1.02);
    box-shadow: 0 14px 44px rgba(10, 23, 51, 0.18);
}

.legado-academy-card__play {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s ease;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.legado-academy-card--interactive:hover .legado-academy-card__play {
    opacity: 0.95;
}

/* ——— Página interna do curso (sala virtual) ——— */
.vr-course-page__head {
    border-bottom: 1px solid rgba(10, 23, 51, 0.08);
    padding-bottom: 1rem;
}

.vr-course-page__title {
    color: var(--vr-navy);
    line-height: 1.25;
    max-width: min(100%, 40rem);
}

.vr-course-page__kicker {
    letter-spacing: 0.02em;
    font-size: 0.8rem;
}

.vr-course-page__name {
    font-weight: 800;
    font-size: clamp(1.15rem, 2.8vw, 1.65rem);
}

.vr-course-hero__media {
    min-height: 200px;
    height: 100%;
    background: var(--vr-panel);
}

@media (min-width: 768px) {
    .vr-course-hero__media {
        min-height: 220px;
    }
}

.vr-course-hero__img {
    display: block;
    object-fit: cover;
    min-height: 200px;
}

@media (min-width: 768px) {
    .vr-course-hero__img {
        min-height: 100%;
    }
}

.vr-course-hero__subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--vr-navy) !important;
}

.vr-course-hero__meta li {
    color: var(--vr-navy);
}

.vr-course-lessons__title {
    color: var(--vr-navy);
}

.vr-course-desc__text:not(.vr-course-desc__text--static):not(.is-expanded) {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    word-break: break-word;
}

.vr-course-desc__toggle {
    color: var(--vr-blue) !important;
    font-weight: 600;
}

.vr-course-desc__toggle:hover {
    color: #163d82 !important;
}

.vr-folder-grid--lessons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.25rem 1rem;
    align-items: flex-start;
}

.vr-folder-grid--lessons .vr-folder,
.vr-folder-grid--lessons .vr-folder--disabled {
    flex: 0 0 auto;
    width: 140px;
    max-width: 46%;
}

@media (min-width: 480px) {
    .vr-folder-grid--lessons .vr-folder,
    .vr-folder-grid--lessons .vr-folder--disabled {
        max-width: 160px;
    }
}

/* ——— Documentos / pastas de aulas ——— */
.vr-docs__title {
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    line-height: 1.1;
    color: var(--vr-navy);
}

.vr-folder-grid:not(.vr-folder-grid--lessons) {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.25rem 1rem;
    justify-items: center;
}

.vr-folder-grid {
    gap: 1.25rem 1rem;
}

.vr-folder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 160px;
    text-decoration: none;
    color: var(--vr-navy);
    padding: 0.5rem;
    border-radius: 12px;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.vr-folder:hover {
    background: rgba(29, 70, 153, 0.06);
    color: var(--vr-blue);
    transform: translateY(-2px);
}

.vr-folder__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.vr-folder__icon {
    font-size: 2.75rem;
    color: var(--vr-blue);
    filter: drop-shadow(0 4px 8px rgba(10, 23, 51, 0.12));
}

.vr-folder__icon-wrap.is-open .vr-folder__icon {
    color: var(--bs-warning);
}

.vr-folder__icon-wrap.is-done .vr-folder__icon {
    color: #2e7d4a;
}

.vr-folder__label {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.25;
    word-break: break-word;
}

.vr-folder__meta {
    margin-top: 0.25rem;
    color: #6c757d;
}

.vr-folder:hover .vr-folder__meta {
    color: var(--vr-navy);
}

.vr-folder--disabled {
    cursor: not-allowed;
    opacity: 0.65;
    pointer-events: none;
}

/* ——— Ícones por tipo de arquivo ——— */
.vr-icon--folder {
    color: #e8a317;
}

.vr-icon--pdf {
    color: #d93831;
}

.vr-icon--word {
    color: #2b579a;
}

.vr-icon--excel {
    color: #217346;
}

.vr-icon--powerpoint {
    color: #d24726;
}

.vr-icon--text {
    color: #6c757d;
}

.vr-icon--image {
    color: #7b5ea7;
}

.vr-icon--video {
    color: #c43a8f;
}

.vr-icon--archive {
    color: #8a6d3b;
}

.vr-icon--generic {
    color: var(--vr-blue);
}

/* ——— Navegador Dropbox (lista / grade) ——— */
.vr-browser__toolbar {
    border-bottom: 1px solid rgba(10, 23, 51, 0.08);
    padding-bottom: 0.75rem;
}

.vr-view-toggle__btn.is-active {
    background: var(--vr-blue);
    border-color: var(--vr-blue);
    color: #fff;
}

.vr-browser[data-vr-view="list"] .vr-drive-grid {
    display: none;
}

.vr-browser[data-vr-view="grid"] .vr-drive-list {
    display: none;
}

.vr-drive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem 0.85rem;
}

.vr-drive-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 148px;
    padding: 1rem 0.75rem;
    border: 1px solid rgba(10, 23, 51, 0.08);
    border-radius: 12px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    position: relative;
}

.vr-drive-tile--file {
    cursor: default;
}

.vr-drive-tile__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.vr-drive-tile__menu {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
}

.vr-drive-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(29, 70, 153, 0.22);
    box-shadow: 0 10px 28px rgba(10, 23, 51, 0.08);
    color: inherit;
}

.vr-drive-tile__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 0.65rem;
}

.vr-drive-tile__glyph {
    font-size: 2.75rem;
}

.vr-drive-tile__name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 100%;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.25;
    word-break: break-word;
}

.vr-drive-tile__meta {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: #6c757d;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.vr-drive-tile__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.45rem;
}

.vr-drive-table {
    --bs-table-bg: transparent;
}

.vr-drive-table thead th {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6c757d;
    border-bottom-width: 1px;
}

.vr-drive-row {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.vr-drive-row--action {
    width: 100%;
    text-align: left;
}

.vr-drive-row--button {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.vr-drive-row:hover,
.vr-drive-row--button:hover {
    color: var(--vr-blue);
}

.vr-drive-row__icon {
    flex: 0 0 auto;
    width: 1.35rem;
    text-align: center;
    font-size: 1.1rem;
}

.vr-drive-row__name {
    font-weight: 600;
}

.vr-drive-actions {
    width: 3rem;
    white-space: nowrap;
}

.vr-file-menu__btn {
    color: #6c757d;
    line-height: 1;
    padding: 0.25rem 0.45rem;
}

.vr-file-menu__btn:hover,
.vr-file-menu__btn:focus {
    color: var(--vr-blue);
}

.vr-video-modal .modal-body {
    padding-bottom: 1.25rem;
}

.vr-video-modal__player video {
    display: block;
    max-height: 75vh;
    background: #000;
}

.vr-drive-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vr-drive-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(10, 23, 51, 0.08);
    border-radius: 0.75rem;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.vr-drive-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(10, 23, 51, 0.08);
    border-color: rgba(29, 70, 153, 0.2);
    color: inherit;
}

.vr-drive-item__icon {
    flex-shrink: 0;
    width: 2.5rem;
    text-align: center;
    font-size: 1.35rem;
    color: var(--vr-blue);
}

.vr-drive-item--folder .vr-drive-item__icon {
    color: #f0ad4e;
}

.vr-drive-item__body {
    flex: 1;
    min-width: 0;
}

.vr-drive-item__name {
    display: block;
    font-weight: 600;
}

.vr-drive-item__meta {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
}

.vr-drive-item__chevron {
    color: #adb5bd;
}

.vr-file-preview__iframe {
    width: 100%;
    min-height: 70vh;
    border: 0;
}

.vr-collection-card:hover .legado-academy-card {
    transform: translateY(-4px);
    transition: transform 0.2s ease;
}

.vr-sidebar__link.is-active {
    background: rgba(255, 255, 255, 0.12);
    font-weight: 600;
}

/* ——— Minha conta ——— */
.vr-account__section-title {
    color: var(--vr-navy);
    font-weight: 700;
}

.vr-account__card {
    border-radius: 12px;
}

.vr-account-form__input {
    background: var(--vr-input-bg);
    border: 1px solid transparent;
    color: var(--vr-navy);
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
}

.vr-account-form__input:focus {
    background: var(--vr-input-bg);
    border-color: rgba(29, 70, 153, 0.35);
    box-shadow: 0 0 0 0.2rem rgba(29, 70, 153, 0.12);
    color: var(--vr-navy);
}

.vr-account-form .form-label {
    font-weight: 600;
    color: var(--vr-navy);
    margin-bottom: 0.35rem;
}

.vr-account-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: var(--vr-panel);
}

.vr-account-stat__value {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
    color: var(--vr-blue);
}

.vr-account-stat__label {
    font-size: 0.82rem;
    color: #6c757d;
    line-height: 1.3;
}

.vr-account-dl__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.15rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(10, 23, 51, 0.08);
}

.vr-account-dl__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.vr-account-dl dt {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6c757d;
}

.vr-account-dl dd {
    margin: 0;
    font-weight: 600;
    color: var(--vr-navy);
    word-break: break-word;
}
