:root {
    --tmv-black: #111111;
    --tmv-sand: #F6F1EA;
    --tmv-gold: #C49A5A;
    --tmv-white: #FFFFFF;
    --tmv-shadow: 0 20px 60px rgba(17,17,17,.10);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--tmv-sand);
    color: var(--tmv-black);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a { color: inherit; }

.tmv-section,
.tmv-header-inner,
.tmv-footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.tmv-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(246,241,234,.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(17,17,17,.08);
}

.tmv-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tmv-logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -.04em;
    font-size: 1.3rem;
}

.tmv-logo-image {
    display: block;
    width: auto;
    max-width: 230px;
    max-height: 56px;
    object-fit: contain;
}

.tmv-logo-text {
    display: inline-block;
}

.tmv-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.tmv-nav a {
    text-decoration: none;
    font-weight: 650;
}

.tmv-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 12px 22px;
    background: var(--tmv-black);
    color: var(--tmv-white);
    text-decoration: none;
    font-weight: 800;
    border: 1px solid var(--tmv-black);
}

.tmv-button-light {
    background: var(--tmv-white);
    color: var(--tmv-black);
    border-color: rgba(17,17,17,.12);
}

.tmv-hero {
    padding: clamp(42px, 7vw, 100px) 0 48px;
}

.tmv-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: stretch;
}

.tmv-kicker {
    color: var(--tmv-gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
}

.tmv-hero h1 {
    font-size: clamp(3rem, 8vw, 6.8rem);
    line-height: .95;
    letter-spacing: -.07em;
    max-width: 9ch;
    margin: 14px 0 20px;
}

.tmv-lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    max-width: 62ch;
    color: rgba(17,17,17,.76);
}

.tmv-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.tmv-hero-image {
    min-height: 680px;
    height: 100%;
    align-self: stretch;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--tmv-shadow);
}

.tmv-search-box {
    background: var(--tmv-white);
    border-radius: 24px;
    padding: 16px;
    box-shadow: var(--tmv-shadow);
    margin-top: 28px;
}

.tmv-search-box form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.tmv-search-box input {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(17,17,17,.14);
    border-radius: 16px;
    padding: 0 14px;
    font: inherit;
}

.tmv-section {
    padding: clamp(44px, 8vw, 96px) 0;
}

.tmv-section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.tmv-section h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -.055em;
    margin: 0;
}

.tmv-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tmv-card {
    background: var(--tmv-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(17,17,17,.06);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.tmv-card-image {
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
}

.tmv-card-body {
    padding: 20px;
}

.tmv-card h3 {
    margin: 0 0 8px;
    font-size: 1.3rem;
    letter-spacing: -.03em;
}

.tmv-card p {
    margin: 0;
    color: rgba(17,17,17,.68);
}

.tmv-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tmv-step {
    padding: 28px;
    border-radius: 24px;
    background: var(--tmv-black);
    color: var(--tmv-white);
}

.tmv-step span {
    color: var(--tmv-gold);
    font-weight: 900;
}

.tmv-cta {
    background: var(--tmv-black);
    color: var(--tmv-white);
    border-radius: 36px;
    padding: clamp(32px, 6vw, 72px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.tmv-cta::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 42%;
    background-image: var(--tmv-cta-image);
    background-size: cover;
    background-position: center;
    opacity: .18;
}

.tmv-cta > * {
    position: relative;
    z-index: 1;
}

.tmv-footer {
    background: var(--tmv-black);
    color: var(--tmv-white);
    padding: 48px 0;
    margin-top: 64px;
}

.tmv-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.tmv-footer-text {
    color: rgba(255,255,255,.82);
    max-width: 680px;
}

@media (max-width: 1024px) {
    .tmv-hero-grid { grid-template-columns: 1fr; }
    .tmv-hero-image { min-height: 420px; }
    .tmv-card-grid, .tmv-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .tmv-nav a:not(.tmv-button) { display: none; }
    .tmv-logo-image { max-width: 165px; max-height: 44px; }
    .tmv-hero-image { min-height: 300px; }
    .tmv-search-box form, .tmv-card-grid, .tmv-steps, .tmv-cta { grid-template-columns: 1fr; }
    .tmv-section-head { align-items: start; flex-direction: column; }
    .tmv-cta::after { width: 100%; opacity: .12; }
}


.tmv-footer-brand {
    display: flex;
    align-items: flex-start;
    min-width: 180px;
}

.tmv-footer-logo-image {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 64px;
    object-fit: contain;
}


.tmv-search-box-shortcode {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.tmv-search-box-shortcode .tm-speaker-search {
    width: 100%;
    padding: 0;
}

.tmv-search-box-shortcode .tm-speaker-search-form {
    margin: 0;
}

.tmv-card-kicker {
    color: var(--tmv-gold) !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .72rem;
    margin: 0 0 8px !important;
}


/* v4.6 compact speaker archive */
.tmv-speakers-archive--compact {
    padding-top: 24px !important;
}

.tmv-speakers-archive--compact .tmv-section-head,
.tmv-speakers-archive--compact .tmv-eyebrow {
    display: none !important;
}

.tmv-speakers-archive--compact .tmv-card-grid,
.tmv-speaker-grid,
.post-type-archive-talare .tmv-card-grid {
    margin-top: 24px !important;
}

.post-type-archive-talare .site-main,
.post-type-archive-talare main {
    padding-top: 24px !important;
}

.post-type-archive-talare h1:first-child {
    margin-bottom: 24px !important;
}


/* v4.7 hero alignment */
.tmv-hero-grid > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tmv-hero-grid .tmv-search-box {
    margin-top: 32px;
}

@media (max-width: 1024px) {
    .tmv-hero-grid > div:first-child {
        display: block;
    }

    .tmv-hero-image {
        min-height: 420px;
        height: auto;
    }
}


/* v4.9 fixed header + compact speaker/list pages */
body {
    padding-top: 78px;
}

.tmv-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}

.admin-bar .tmv-header {
    top: 32px;
}

.tmv-header-inner {
    min-height: 78px;
}

.tmv-logo,
.tmv-logo-image {
    overflow: visible;
}

.tmv-logo-image {
    max-height: 48px;
}

.tmv-page-main--speaker-list {
    padding-top: 16px !important;
}

.tmv-page-main--speaker-list article {
    margin-top: 0 !important;
}

@media (max-width: 782px) {
    .admin-bar .tmv-header {
        top: 46px;
    }
}

@media (max-width: 720px) {
    body {
        padding-top: 68px;
    }

    .tmv-header-inner {
        min-height: 68px;
    }
}


/* v4.9.1 search title fixed-header spacing */
.tmv-page-main--speaker-list {
    padding-top: 48px !important;
}

.tmv-page-main--speaker-list h1,
.tm-speaker-search-virtual-inner h1 {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.tm-speaker-search-virtual-page {
    padding-top: 96px !important;
}

body.admin-bar .tm-speaker-search-virtual-page {
    padding-top: 112px !important;
}

@media (max-width: 720px) {
    .tmv-page-main--speaker-list {
        padding-top: 36px !important;
    }

    .tm-speaker-search-virtual-page {
        padding-top: 82px !important;
    }
}


/* v4.9.2: show hero image before text on mobile/tablet */
@media (max-width: 1024px) {
    .tmv-hero-grid {
        grid-template-columns: 1fr;
    }

    .tmv-hero-grid > div:first-child {
        order: 2;
    }

    .tmv-hero-image {
        order: 1;
        margin-bottom: 8px;
    }
}


/* v4.9.3: hide duplicate page title on contact/form pages via page.php */
.tmv-page-main .tm-message-form-wrap:first-child {
    margin-top: 0;
}


/* v4.9.4: tighter front page section spacing */
body.home .tmv-hero,
body.front-page .tmv-hero {
    padding-top: clamp(34px, 5vw, 72px);
    padding-bottom: 28px;
}

body.home .tmv-section,
body.front-page .tmv-section {
    padding-top: clamp(34px, 5vw, 64px);
    padding-bottom: clamp(34px, 5vw, 64px);
}

body.home .tmv-hero + .tmv-section,
body.front-page .tmv-hero + .tmv-section {
    padding-top: 32px;
}

body.home .tmv-section-head,
body.front-page .tmv-section-head {
    margin-bottom: 22px;
}

body.home .tmv-card-grid,
body.home .tmv-steps,
body.front-page .tmv-card-grid,
body.front-page .tmv-steps {
    margin-top: 0;
}

body.home .tmv-section:has(.tmv-cta),
body.front-page .tmv-section:has(.tmv-cta) {
    padding-top: 38px;
    padding-bottom: 58px;
}

@media (max-width: 720px) {
    body.home .tmv-hero,
    body.front-page .tmv-hero {
        padding-top: 26px;
        padding-bottom: 22px;
    }

    body.home .tmv-section,
    body.front-page .tmv-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    body.home .tmv-hero + .tmv-section,
    body.front-page .tmv-hero + .tmv-section {
        padding-top: 24px;
    }
}


/* v4.9.5: keep hero image aligned to top on mobile/landscape */
@media (max-width: 1024px) {
    .tmv-hero-image {
        background-position: center top !important;
    }
}

@media (max-width: 1024px) and (orientation: landscape) {
    .tmv-hero-image {
        min-height: 360px;
        background-position: center 12% !important;
    }
}

@media (max-width: 720px) {
    .tmv-hero-image {
        background-position: center top !important;
    }
}


/* v4.9.6 native WordPress top menu */
.tmv-nav .tmv-nav-menu {
    display: flex;
    gap: 24px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tmv-nav .tmv-nav-menu li {
    margin: 0;
    padding: 0;
}

.tmv-nav .tmv-nav-menu a {
    text-decoration: none;
    font-weight: 650;
    color: inherit;
}

.tmv-nav .tmv-nav-menu li:last-child > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 12px 22px;
    background: var(--tmv-black);
    color: var(--tmv-white);
    font-weight: 800;
    border: 1px solid var(--tmv-black);
}

@media (max-width: 720px) {
    .tmv-nav .tmv-nav-menu li:not(:last-child) {
        display: none;
    }
}


/* v4.9.8 mobile hamburger menu */
.tmv-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(17,17,17,.12);
    border-radius: 999px;
    background: #fff;
    color: var(--tmv-black);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 10002;
}

.tmv-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

body.tmv-mobile-menu-open .tmv-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.tmv-mobile-menu-open .tmv-menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.tmv-mobile-menu-open .tmv-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 720px) {
    .tmv-menu-toggle {
        display: inline-flex;
    }

    .tmv-header-inner {
        position: relative;
    }

    .tmv-nav {
        position: fixed;
        top: 68px;
        left: 12px;
        right: 12px;
        z-index: 10001;
        background: rgba(255,255,255,.98);
        border: 1px solid rgba(17,17,17,.10);
        border-radius: 24px;
        box-shadow: 0 22px 70px rgba(17,17,17,.18);
        padding: 18px;
        display: none;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .admin-bar .tmv-nav {
        top: 114px;
    }

    body.tmv-mobile-menu-open .tmv-nav {
        display: flex;
    }

    .tmv-nav > a,
    .tmv-nav .tmv-nav-menu a {
        min-height: 46px;
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        border-radius: 14px;
        padding: 10px 12px;
        text-decoration: none;
        font-weight: 800;
    }

    .tmv-nav .tmv-nav-menu {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
        width: 100%;
    }

    .tmv-nav .tmv-nav-menu li,
    .tmv-nav .tmv-nav-menu li:not(:last-child) {
        display: block !important;
        width: 100%;
    }

    .tmv-nav .tmv-nav-menu li:last-child > a,
    .tmv-nav > .tmv-button {
        justify-content: center;
        background: var(--tmv-black);
        color: var(--tmv-white);
        border-radius: 999px;
        margin-top: 4px;
    }

    body.tmv-mobile-menu-open {
        overflow: hidden;
    }
}


/* v5.2 clean news section after featured profiles */
.tmv-news-section {
    padding-top: clamp(34px, 5vw, 58px);
    padding-bottom: clamp(34px, 5vw, 58px);
}

.tmv-news-section-head {
    text-align: left;
    margin-bottom: 24px;
}

.tmv-news-section-head .tmv-kicker,
.tmv-news-kicker {
    color: var(--tmv-gold);
    margin: 0 0 10px;
}

.tmv-news-section-head h2 {
    text-align: left;
    margin: 0;
}

.tmv-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.tmv-news-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--tmv-shadow);
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    min-height: 280px;
}

.tmv-news-image {
    display: grid;
    place-items: center;
    min-height: 100%;
    background: #eee;
    color: rgba(17,17,17,.45);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tmv-news-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.tmv-news-body {
    padding: clamp(22px, 3vw, 34px);
    display: flex;
    flex-direction: column;
}

.tmv-news-body time {
    color: var(--tmv-gold);
    font-weight: 900;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.tmv-news-body h3 {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    line-height: 1.08;
    letter-spacing: -.035em;
    margin: 0 0 12px;
}

.tmv-news-body h3 a {
    color: inherit;
    text-decoration: none;
}

.tmv-news-body p {
    color: rgba(17,17,17,.68);
    margin: 0 0 18px;
    line-height: 1.55;
}

.tmv-news-readmore {
    margin-top: auto;
    color: var(--tmv-black);
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 980px) {
    .tmv-news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tmv-news-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .tmv-news-card {
        grid-template-columns: 1fr;
    }

    .tmv-news-image img,
    .tmv-news-image {
        min-height: 220px;
    }
}


/* v5.2 native blog/single post styling */
.tmv-post-main,
.tmv-blog-main {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.tmv-post {
    max-width: 860px;
    margin: 0 auto;
}

.tmv-post-header h1,
.tmv-blog-main h1 {
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    line-height: .95;
    letter-spacing: -.06em;
    margin: 0 0 28px;
}

.tmv-post-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--tmv-shadow);
    margin: 0 0 34px;
}

.tmv-post-image img {
    display: block;
    width: 100%;
    height: auto;
}

.tmv-post-content {
    font-size: 1.1rem;
    line-height: 1.75;
}

.tmv-post-content h2,
.tmv-post-content h3,
.tmv-post-content h4 {
    line-height: 1.08;
    letter-spacing: -.035em;
    margin: 1.4em 0 .5em;
}

.tmv-post-content blockquote {
    margin: 1.6em 0;
    padding: 22px 26px;
    border-left: 5px solid var(--tmv-gold);
    background: rgba(196,154,90,.10);
    border-radius: 18px;
}

.tmv-pagination {
    margin-top: 36px;
}


/* v5.3 client logos on front page */
.tmv-clients-section {
    padding-top: clamp(34px, 5vw, 58px);
    padding-bottom: clamp(46px, 6vw, 78px);
}

.tmv-clients-head {
    margin-bottom: 24px;
}

.tmv-client-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.tmv-client-logo {
    min-height: 118px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--tmv-shadow);
    border: 1px solid rgba(17,17,17,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

a.tmv-client-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(17,17,17,.12);
}

.tmv-client-logo img {
    display: block;
    max-width: 100%;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .78;
    transition: filter .18s ease, opacity .18s ease;
}

a.tmv-client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 900px) {
    .tmv-client-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .tmv-client-logo-grid {
        grid-template-columns: 1fr;
    }

    .tmv-client-logo {
        min-height: 96px;
    }
}


/* v5.3.2 news section show-all link */
.tmv-news-section .tmv-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
}

.tmv-news-section .tmv-section-head > a {
    color: var(--tmv-black);
    font-weight: 900;
    text-decoration: none;
}

.tmv-news-section .tmv-news-kicker {
    color: var(--tmv-gold);
}

@media (max-width: 640px) {
    .tmv-news-section .tmv-section-head {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* v5.3.4 client logo display/page fixes */
.tmv-client-logo-grid:empty {
    display: none;
}

.tmv-client-logo-grid--page {
    margin-top: 24px;
}

.tmv-client-logo-grid--page .tmv-client-logo {
    min-height: 130px;
}

.tmv-client-logo img {
    display: block;
}


/* v5.3.5 unified "Visa alla" links */
.tmv-show-all-link,
.tmv-section-head > a.tmv-show-all-link,
.tmv-news-section .tmv-section-head > a.tmv-show-all-link,
.tmv-clients-head > a.tmv-show-all-link {
    color: #111 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    margin-top: 0;
}

.tmv-show-all-link:hover,
.tmv-show-all-link:focus {
    color: #111 !important;
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

.tmv-section-head > a:not(.tmv-button),
.tmv-news-section .tmv-section-head > a:not(.tmv-button),
.tmv-clients-head > a:not(.tmv-button) {
    color: #111;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 640px) {
    .tmv-show-all-link {
        margin-top: 2px;
    }
}


/* v5.3.6 robust news archive page */
.tmv-news-archive {
    width: 100%;
}

.tmv-news-pagination {
    margin-top: 34px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tmv-news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    min-width: 40px;
    border-radius: 999px;
    padding: 8px 13px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 8px 22px rgba(17,17,17,.07);
}

.tmv-news-pagination .page-numbers.current {
    background: #111;
    color: #fff;
}


/* v5.3.8 cleaner front-page search block */
.home .tmv-search-box-shortcode .tm-speaker-search-form--compact label > span {
    display: none !important;
}

.home .tmv-search-box-shortcode .tm-speaker-search-form--compact label {
    gap: 0 !important;
}

.home .tmv-search-box-shortcode .tm-speaker-search-form--compact {
    align-items: end;
}


/* v5.3.9 footer privacy link */
.tmv-footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 20px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.14);
    display: flex;
    justify-content: flex-start;
}

.tmv-footer-privacy-link {
    color: rgba(255,255,255,.78);
    font-weight: 800;
    text-decoration: none;
}

.tmv-footer-privacy-link:hover,
.tmv-footer-privacy-link:focus {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}
