/* Minification failed. Returning unminified contents.
(555,23): run-time error CSS1030: Expected identifier, found '.'
(555,48): run-time error CSS1031: Expected selector, found ')'
(555,48): run-time error CSS1025: Expected comma or open brace, found ')'
(786,16): run-time error CSS1030: Expected identifier, found '.'
(786,34): run-time error CSS1031: Expected selector, found ')'
(786,34): run-time error CSS1025: Expected comma or open brace, found ')'
 */
/* ── Site footer ─────────────────────────────────────── */
.site-footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 12px 24px;
    min-height: 44px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px 24px;
}

.site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    font-size: 12px;
}

.site-footer-copyright {
    font-size: 11px;
    color: #ffffff;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .site-footer-inner { flex-direction: column; justify-content: center; text-align: center; }
    .site-footer-nav { justify-content: center; gap: 6px 16px; }
}

/* ── Prep section ───────────────────────────────────── */
.prep-section {
    padding: 3.5rem 0 2rem;
}

.prep-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #357f79;
    margin-bottom: 1rem;
}

.prep-eyebrow .nd {
    display: inline-block;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #52b3ac;
    box-shadow: 0 0 0 3px #e4f3f1;
}

.prep-eyebrow::after {
    content: '';
    width: 26px;
    height: 1px;
    background: #c8d4de;
    opacity: 0.5;
}

.prep-heading {
    font-size: 30px;
    font-weight: 400;
    color: #13283d;
    letter-spacing: -0.4px;
    margin-bottom: 0.5rem;
    line-height: 1.18;
}

.prep-sub {
    font-size: 14.5px;
    color: #5e6c7b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.prep-card {
    background: #fff;
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    padding: 1.3rem;
    box-shadow: 0 1px 2px rgba(12,24,38,.04);
}

.prep-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 0.9rem;
}

.prep-icon--teal { background: #e4f3f1; color: #357f79; }
.prep-icon--blue { background: #e9f2fa; color: #1676b6; }
.prep-icon--warm { background: #fbf2df; color: #946200; }

.prep-card-title {
    font-size: 14.5px;
    font-weight: 500;
    color: #15202e;
    line-height: 1.35;
    margin-bottom: 0.4rem;
}

.prep-card-body {
    font-size: 12.5px;
    color: #5e6c7b;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .prep-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .prep-grid { grid-template-columns: 1fr; }
}

/* ── Compare band ────────────────────────────────────── */
.compare-band {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    box-sizing: border-box;
    background: #f6f9fb;
    border-top: 1px solid #e6ebf1;
    border-bottom: 1px solid #e6ebf1;
    padding: 2.75rem 0;
}

.compare-band-inner {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    gap: 2rem;
}

.compare-col {
    position: relative;
}

.compare-col:nth-child(2)::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0.15rem;
    bottom: 0.15rem;
    width: 1px;
    background: #e6ebf1;
}

.compare-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.compare-label--not { color: #8492a0; }
.compare-label--meamedica { color: #1676b6; }

.compare-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    font-size: 12px;
    line-height: 1;
}

.compare-icon--x { color: #8492a0; }
.compare-icon--check { color: #52b3ac; }

.compare-heading {
    font-size: 18px;
    font-weight: 400;
    color: #13283d;
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.compare-heading--highlight { color: #1676b6; }

.compare-body {
    font-size: 12.5px;
    line-height: 1.6;
    color: #5e6c7b;
    margin: 0;
}

.compare-col--highlight {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 14px;
    padding: 1.1rem 1.6rem;
    box-shadow: 0 8px 24px -14px rgba(22, 118, 182, .35);
    transform: translateY(-6px);
}

@media (max-width: 860px) {
    .compare-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .compare-col:nth-child(2)::before { display: none; }
    .compare-col--highlight { transform: none; }
}

/* ── Internal medicine band ──────────────────────────── */
.im-band {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    box-sizing: border-box;
    background: #ffffff;
    padding: 4rem 0;
}

.im-band-inner {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.im-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 3rem;
}

.im-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #357f79;
    margin-bottom: 1rem;
}

.im-eyebrow .nd {
    display: inline-block;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #52b3ac;
    box-shadow: 0 0 0 3px #e4f3f1;
}

.im-heading {
    font-size: 30px;
    font-weight: 400;
    color: #13283d;
    letter-spacing: -0.4px;
    line-height: 1.18;
    margin: 0 0 0.9rem;
}

.im-body {
    font-size: 14.5px;
    color: #5e6c7b;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.im-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.im-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #13283d;
    line-height: 1.5;
}

.im-checklist li i {
    flex-shrink: 0;
    color: #52b3ac;
    font-size: 14px;
    margin-top: 2px;
}

.im-card {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 14px;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 4px 16px -8px rgba(19, 40, 61, .08);
}

.im-card-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #1676b6;
    margin: 0 0 0.9rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid #e6ebf1;
}

.im-card-rows {
    list-style: none;
    margin: 0;
    padding: 0;
}

.im-card-rows li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #13283d;
    padding: 0.6rem 0;
    border-bottom: 1px solid #eef1f5;
}

.im-card-rows li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.im-card-rows li i {
    flex-shrink: 0;
    color: #52b3ac;
    font-size: 13px;
}

.im-card-rows li.im-card-more {
    color: #8492a0;
    font-style: italic;
}

.im-card-rows li.im-card-more i {
    color: #8492a0;
}

@media (max-width: 860px) {
    .im-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Stats / proof band ──────────────────────────────── */
.stats-band {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    box-sizing: border-box;
    background: #0c1826;
    padding: 3.5rem 0;
    overflow: hidden;
}

.stats-helix {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    min-width: 900px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.stats-band-inner {
    position: relative;
    z-index: 1;
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stats-col {
    position: relative;
    text-align: center;
    padding: 0 1rem;
}

.stats-col:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3rem;
    bottom: 0.3rem;
    width: 1px;
    background: rgba(255, 255, 255, .13);
}

.stats-number {
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 0.4rem;
}

.stats-label {
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    line-height: 1.4;
}

@media (max-width: 860px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
    .stats-col:not(:first-child)::before { display: none; }
}

/* ── How a report is built band ──────────────────────── */
.report-band {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    box-sizing: border-box;
    background: #f6f9fb;
    border-top: 1px solid #e6ebf1;
    border-bottom: 1px solid #e6ebf1;
    padding: 4rem 0;
}

.report-band-inner {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.report-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #357f79;
    margin-bottom: 1rem;
}

.report-eyebrow .nd {
    display: inline-block;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #52b3ac;
    box-shadow: 0 0 0 3px #e4f3f1;
}

.report-eyebrow::after {
    content: '';
    width: 26px;
    height: 1px;
    background: #c8d4de;
    opacity: 0.5;
}

.report-heading {
    font-size: 30px;
    font-weight: 400;
    color: #13283d;
    letter-spacing: -0.4px;
    margin: 0 0 0.9rem;
    line-height: 1.18;
    max-width: 620px;
}

.report-intro {
    font-size: 14.5px;
    color: #5e6c7b;
    line-height: 1.7;
    margin: 0 0 2.5rem;
    max-width: 680px;
}

.report-grid {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 40px 1fr;
    align-items: start;
    gap: 0;
}

.report-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #8492a0;
    margin: 0 0 0.9rem;
}

.report-core-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #bcd6e8;
    border-top: 3px solid #1676b6;
    border-radius: 16px;
    padding: 1.6rem 1.7rem;
    box-shadow: 0 10px 28px -16px rgba(22, 118, 182, .35);
    transition: box-shadow .15s, transform .15s;
}

.report-core-card:has(.report-core-card-title a):hover {
    box-shadow: 0 14px 32px -14px rgba(22, 118, 182, .45);
    transform: translateY(-2px);
}

.report-core-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.report-core-card-title {
    font-size: 19px;
    font-weight: 500;
    color: #13283d;
    margin: 0;
}

.report-core-card-title a {
    color: inherit;
    text-decoration: none;
}

.report-core-card-title a::after {
    content: '';
    position: absolute;
    inset: 0;
}

.report-core-card-title a:hover {
    color: #1676b6;
    text-decoration: underline;
}

.report-core-badge {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #ffffff;
    background: #1676b6;
    padding: 3px 10px;
    border-radius: 20px;
}

.report-core-card-sub {
    font-size: 12.5px;
    color: #5e6c7b;
    line-height: 1.6;
    margin: 0;
}

.report-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 2.4rem;
}

.report-plus span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #d4dce5;
    color: #8492a0;
    font-size: 14px;
    line-height: 1;
}

.report-choice-panel {
    background: #ffffff;
    border: 1px solid #d4dce5;
    border-radius: 16px;
    padding: 1.5rem 1.6rem;
}

.report-choice-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e6ebf1;
}

.report-choice-title {
    font-size: 16px;
    font-weight: 500;
    color: #13283d;
    margin: 0;
}

.report-choice-title a {
    color: inherit;
    text-decoration: none;
}

.report-choice-title a:hover {
    color: #1676b6;
    text-decoration: underline;
}

.report-choice-note {
    font-size: 11.5px;
    color: #8492a0;
    font-style: italic;
    white-space: nowrap;
}

.report-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.report-choice-card {
    background: #f9fbfc;
    border: 1px solid #e6ebf1;
    border-radius: 12px;
    padding: 1rem 1.1rem;
}

.report-choice-card-title {
    font-size: 13.5px;
    font-weight: 500;
    color: #13283d;
    margin: 0 0 0.3rem;
}

.report-choice-card-sub {
    font-size: 12px;
    color: #5e6c7b;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 980px) {
    .report-choice-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    .report-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .report-plus { display: none; }
}

/* ── Where this is going band ────────────────────────── */
.grow-band {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    box-sizing: border-box;
    background: #ffffff;
    padding: 4rem 0;
}

.grow-band--tinted {
    background: #f6f9fb;
    border-top: 1px solid #e6ebf1;
    border-bottom: 1px solid #e6ebf1;
}

.grow-band-inner {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.grow-head {
    margin-bottom: 2.5rem;
}

.grow-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #357f79;
    margin-bottom: 1rem;
}

.grow-eyebrow .nd {
    display: inline-block;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #52b3ac;
    box-shadow: 0 0 0 3px #e4f3f1;
}

.grow-heading {
    font-size: 32px;
    font-weight: 400;
    color: #13283d;
    letter-spacing: -0.4px;
    line-height: 1.2;
    margin: 0;
    max-width: 640px;
}

.grow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grow-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    padding: 1.6rem 1.7rem;
    transition: box-shadow .15s, transform .15s;
}

.grow-card:has(.grow-card-title a):hover {
    box-shadow: 0 10px 24px -14px rgba(19, 40, 61, .25);
    transform: translateY(-2px);
}

.grow-card--highlight {
    border-color: #1676b6;
    box-shadow: 0 10px 28px -16px rgba(22, 118, 182, .35);
}

.grow-card-label {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #357f79;
    background: #e4f3f1;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.9rem;
}

.grow-card-title {
    font-size: 15.5px;
    font-weight: 500;
    color: #15202e;
    margin: 0 0 0.5rem;
}

.grow-card-title a {
    color: inherit;
    text-decoration: none;
}

.grow-card-title a::after {
    content: '';
    position: absolute;
    inset: 0;
}

.grow-card-title a:hover {
    color: #1676b6;
    text-decoration: underline;
}

.grow-card-text {
    font-size: 12.5px;
    color: #5e6c7b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 860px) {
    .grow-grid { grid-template-columns: 1fr; }
}

/* ── Pilot CTA band ───────────────────────────────────── */
.cta-band {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    box-sizing: border-box;
    background: linear-gradient(135deg, #0d567f 0%, #1676b6 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #7b5ea7, #4a90c4, #3ab8b8, #6abf69, #c8d44e, #f0a030);
}

.cta-band-inner {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.cta-heading {
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.4px;
    line-height: 1.2;
    margin: 0 0 0.9rem;
}

.cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 2rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
    line-height: 1;
}

.cta-btn-primary,
.cta-btn-primary:link,
.cta-btn-primary:visited {
    background: #ffffff;
    color: #1676b6;
    border: none;
}

.cta-btn-primary:hover,
.cta-btn-primary:focus {
    background: #e9f2fa;
    color: #0d567f;
}

.cta-btn-secondary,
.cta-btn-secondary:link,
.cta-btn-secondary:visited {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .4);
}

.cta-btn-secondary:hover,
.cta-btn-secondary:focus {
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
}

@media (max-width: 480px) {
    .cta-btns { flex-direction: column; }
    .cta-btn-primary, .cta-btn-secondary { width: 100%; }
}

/* ── Hero carousel overlay ─────────────────────────── */
.hero-wrap {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}


.hero-caption {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    padding-top: 10px;
    z-index: 10;
    padding-left: max(16px, calc((100% - 1130px) / 2));
    background: linear-gradient(to right,
        rgba(255,255,255,1.00) 0%,
        rgba(255,255,255,1.00) 20%,
        rgba(255,255,255,0.60) 40%,
        rgba(255,255,255,0.00) 65%
    );
}

.hero-gradient { display: none; }

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 560px;
    padding: 2em 2em 2em 0;
    transition: opacity 0.2s ease;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #357f79;
    margin-bottom: 12px;
}

.hero-eyebrow .nd {
    display: inline-block;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #52b3ac;
    box-shadow: 0 0 0 3px #e4f3f1;
}

.hero-eyebrow::after {
    content: '';
    width: 26px;
    height: 1px;
    background: #c8d4de;
    opacity: 0.5;
}

.hero-headline {
    margin: 0;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #13283d;
}

.hero-headline em {
    font-style: italic;
    color: #1676b6;
}

.hero-subtext {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: #5e6c7b;
    max-width: 480px;
}

/* hero-dna: mirror the image so the subject faces right, away from the gradient */
.fotorama.hero-dna-active .fotorama__img {
    transform: scaleX(-1);
}

@media (max-width: 768px) {
    .hero-caption {
        padding-left: 16px;
        padding-top: 20px;
        background: linear-gradient(90deg,
            rgba(255,255,255,0.97)  0%,
            rgba(255,255,255,0.92) 55%,
            rgba(255,255,255,0.05) 100%
        );
    }
    .hero-text {
        max-width: 82%;
        padding: 0.9em 0.5em 0.9em 0;
    }
    .hero-headline {
        font-size: 30px;
    }
    .hero-eyebrow {
        font-size: 11px;
        margin-bottom: 8px;
    }
    .hero-subtext {
        font-size: 14px;
    }
}

/* ── Hero bottom strip ──────────────────────────────────── */
.hero-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 12;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-left: max(16px, calc((100% - 1130px) / 2));
    padding-right: 24px;
    padding-bottom: 28px;
}

.hero-strip-left {
    display: flex;
    flex-direction: column;
}

.hero-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    border-radius: 9px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
    line-height: 1;
}

.hero-btn-primary,
.hero-btn-primary:link,
.hero-btn-primary:visited {
    background: #1676b6;
    color: #fff;
    border: none;
}

.hero-btn-primary:hover,
.hero-btn-primary:active,
.hero-btn-primary:focus {
    background: #0d567f;
    color: #fff;
    text-decoration: none;
}

.hero-btn-secondary {
    background: #fff;
    color: #1676b6;
    border: 1px solid #d4dce5;
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus {
    border-color: #1676b6;
    background: #e9f2fa;
    color: #1676b6;
    text-decoration: none;
}

.hero-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #5e6c7b;
    line-height: 1;
}

.hero-badge-icon {
    color: #52b3ac;
    font-size: 14px;
    line-height: 1;
}

.hero-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(22,118,182,0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.2s, border-radius 0.2s, background 0.2s;
    flex-shrink: 0;
}

.hero-dot.active {
    width: 24px;
    border-radius: 5px;
    background: #1676b6;
}

.hero-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d4dce5;
    box-shadow: 0 1px 3px rgba(12,24,38,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
    padding: 0;
}

.hero-arrow:hover {
    background: #e9f2fa;
}

@media (max-width: 768px) {
    .hero-strip {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
    }
    .hero-btns {
        gap: 8px;
        margin-bottom: 14px;
    }
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 9px 14px;
        font-size: 13px;
    }
    .hero-badges {
        display: none;
    }
    .hero-nav {
        gap: 6px;
    }
    .hero-dots {
        gap: 6px;
    }
}

/* ────────────────────────────────────────────────────── */
.dna-intro.highlight-text {
    display: inline-block;
    width: 50%;
    margin-right: 0.8em;
}

.iframe-container {
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
}

    .iframe-container iframe {
        border: 0;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
    }

.dna-intro .iframe-container {
    border-radius: 10px;
}

.dna-intro.highlight-box {
    width: 46%;
    border-radius: 10px;
    -moz-border-radius: 10px;
    border: solid 1px #0079BC;
    display: inline-block;
    float: right;
    background-color: white;
    margin-bottom: 1.5em;
}

@media all and (max-width: 480px) {
    .dna-intro.highlight-text {
        width: auto;
        margin-right: 0;
    }

    .dna-intro.highlight-box {
        padding: 0;
        width: auto;
        margin-bottom:1.5em;
    }
}

.action-img {
    border: none;
    background-color: white;
    width: 23px;
    vertical-align: middle;
}

.form-field span {
    line-height: 2.2em;
}

.show-order-detail {
    cursor:pointer;
}

.order-detail {
    padding-top: 1em;
    padding-bottom: 0.5em;
}

    .order-detail .form-field {
        display: inline-block;
        margin-right: 1em;
    }

    .order-detail .order-tools {
        float: right;
    }

        .order-detail .order-tools a {
            padding-right: 0.5em;
            text-decoration: none;
        }

.dna-title {
    margin-bottom: 2em;
}

    .dna-title h1 {
        margin-top: 0;
    }

.dna-order-steps {
    margin-bottom: 2em;
    text-align: center;
}

    .dna-order-steps .order-step {
        display: inline-block;
    }

        .dna-order-steps .order-step .step-label {
            font-size: 0.9em;
        }

    .dna-order-steps div.circle {
        color: white;
        font-size: 2em;
        line-height: 0.6em;
        text-align: center;
        border-radius: 50%;
        display: inline-block;
        background: url("/Images/blue-waves.PNG") no-repeat 0 0 #0079BC;
        padding: 0.6em;
        height: 0.6em;
        width: 0.6em;
    }

        .dna-order-steps div.circle.now {
            border: 3px solid #0079BC;
        }

        .dna-order-steps div.circle.past {
            color: #0079BC;
        }

    .dna-order-steps div.stripe {
        display: inline-block;
        background: url("/Images/blue-waves.PNG") no-repeat 0 0 #0079BC;
        height: 0.1em;
        width: 6em;
        line-height: 4.5em;
        margin-left: 0.6em;
        margin-right: 0.6em;
    }

        .dna-order-steps div.stripe.past {
            background: #0079BC;
        }

/* Responsive design for steps sections - circles and stripes */
@media all and (max-width: 240px) {
    .dna-order-steps div.circle {
        font-size: 1.5em;
        line-height: 0.5em;
        padding: 0.5em;
        height: 0.5em;
        width: 0.5em;
    }

    .dna-order-steps div.stripe {
        width: 1em;
        margin-left: 0;
        margin-right: 0;
        line-height: 3.8em;
    }
}

@media all and (min-width: 241px) and (max-width: 480px) {
    .dna-order-steps div.circle {
        font-size: 1.5em;
        line-height: 0.5em;
        padding: 0.5em;
        height: 0.5em;
        width: 0.5em;
    }

    .dna-order-steps div.stripe {
        width: 1.5em;
        margin-left: 0.1em;
        margin-right: 0.1em;
        line-height: 3.8em;
    }
}

@media all and (min-width: 481px) and (max-width: 768px) {
    .dna-order-steps div.circle {
        font-size: 2em;
        line-height: 0.6em;
        padding: 0.6em;
        height: 0.6em;
        width: 0.6em;
    }

    .dna-order-steps div.stripe {
        width: 3.3em;
        margin-left: 0.2em;
        margin-right: 0.2em;
        line-height: 5em;
    }
}


/*.buy-dna-test {
    margin: 0 0.5em 1.5em 0.5em;
}*/

.order-btn {
    float: right;
}

    div.item div.item-row {
        display: table;
        width: 100%;
    }

        div.item div.item-row div {
            display: table-cell;
        }

    div.item div.item-mark {
        width: 10%;
    }
    div.item div.item-name {
        width: 60%;
    }

div.item-total {
    width: 10%;
}

#order-total {
    border-color: #0079bc;
    display: table;
    width: 50%;
    float: right;
}

    #order-total .order-total-row {
        display: table-row;
    }

        #order-total .order-total-row div {
            display: table-cell;
            padding-bottom: 1em;
        }

#total-amount {
    width: 20%;
}


/* Responsive design - Table with total */
@media all and (max-width: 480px) {
    #order-total {
        width: 90%;
    }
}

select.dna-order {
    border-radius: 5px;
    font-size: 0.9em;
    padding: 0.3em;
    margin: 5px 0 6px 0;
}

.dna-lst li {
    padding-bottom: 0.5em;
}

ul {
    margin: 0;
    padding-left: 1.5em;
}

ol {
    padding-left: 1.5em;
}

.pay-method {
    border: 3px #ccc solid;
    padding: 1em;
    margin: 0.5em;
    cursor: pointer;
    text-align: center;
    border-radius: 20px;
}

    .pay-method.highlight {
        border: 3px #0079BC solid;
        background-color: aliceblue;
    }

    /*.pay-method img {
        width: 80%;
    }*/

    .pay-method p {
        font-size: 0.9em;
    }

.dd-style {
    border: 1px solid #ccc;
    width: 190px;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f4df;
    padding-left: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
}

    .dd-style select {
        padding: 5px 8px;
        width: 130%;
        border: none;
        box-shadow: none;
        background: transparent;
        background-image: none;
        -webkit-appearance: none;
    }

.badge input[type="submit"] {
    color: white;
    background: none;
    padding: 0;
    margin: 0;
    font-weight: normal;
}

@media all and (min-width: 350px) {
    .vote-footer .badge:nth-of-type(2) {
        margin-left: -1.5em;
        padding-left: 2em;
    }
}

.dna-results-tab-head {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

    .dna-results-tab-head div {
        border: 1px solid #8f6f9d;
        border-radius: 18px;
        background-color: #8f6f9d;
        color: white;
        padding: 6px 0 7px 8px;
        margin: 0px 2px 6px 2px;
    }

.dna-results-tab-row {
    display:flex;
    flex-wrap:wrap;
    padding:10px;
    background-color: white;
    border-radius: 6px;
    border-bottom: 1px solid #ccc;
}

@media all and (max-width: 480px) {
    .dna-results-tab-row {
        padding: 0.4em 0.3em;
    }
}

.gene-link:hover { background: #d6eafb !important; border-color: #1a6fa8 !important; }
.med-chip:hover  { background: #eef6ff !important; border-color: #1a6fa8 !important; color: #1a6fa8 !important; }

.gen-med-header {
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    font-size: smaller;
    border-top: 1px dotted #0079BC;
    padding-top: 10px;
    padding-bottom: 5px;
}

    .gen-med-header div {
        border: 1px solid #0079BC;
        border-radius: 18px;
        color: #0079BC;
        padding: 3px 20px 5px 20px;
        margin: 2px 5px;
    }

.gen-med-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
    margin-top: 4px;
}

    .gen-med-row div {
        padding: 3px 20px 5px 20px;
    }

div.dna-img {
    text-align: center;
    margin-bottom: 0.5em;
}
    div.dna-img img {
        border-radius: 20px;
    }
    div.dna-img p {
        font-size: smaller;
    }

table.other-info {
    width: 100%;
    margin-bottom: 2em;
}

    table.other-info tr {
        border-bottom: 1px darkgrey solid;
    }

        table.other-info tr th:first-child {
            padding-left: 0.5em;
        }

        table.other-info tr td:first-child {
            padding-left: 0.5em;
        }

.ref-tbl-row {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ccc;
    border-bottom: 0;
}

    .ref-tbl-row div {
        padding: 3px 15px 3px 15px;
    }
/* ── Category card mini-table ─────────────────────────────────────── */
.cat-card { background:#fff; border:0.5px solid #e0e4ea; border-radius:10px; overflow:hidden; }

.cat-card-head { padding:12px 14px; display:flex; align-items:center; gap:8px; border-bottom:0.5px solid #f0f2f5; }
.cat-card-icon { width:26px; height:26px; border-radius:6px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }

.mini-table { width:100%; border-collapse:collapse; font-size:12px; table-layout:fixed; }
.mini-table th { padding:5px 14px; font-size:10px; font-weight:600; color:rgba(255,255,255,0.85); letter-spacing:0.5px; text-transform:uppercase; background:#1a3d5c; text-align:left; }
.mini-table td { padding:7px 14px; border-bottom:0.5px solid #f5f7fa; color:#444; }
.mini-table tr:last-child td { border-bottom:none; }
.mini-table tr:hover td { background:#f9fafc; }
.mini-table tr.not-tested td { opacity:0.4; }

/* ── Gene detail page ─────────────────────────────────────────────── */
.gen-nav-bar { background:#fff; border:0.5px solid #e0e4ea; border-radius:10px; padding:10px 16px; display:flex; align-items:center; gap:8px; margin-bottom:16px; font-size:13px; flex-wrap:wrap; }
.nav-back { color:#1a6fa8; text-decoration:none; display:flex; align-items:center; gap:4px; }
.nav-sep { color:#bbb; }
.nav-crumb { color:#666; text-decoration:none; }
.nav-crumb:hover { color:#1a6fa8; }
.nav-gene-current { font-weight:600; color:#1a3d5c; }

.gen-page-title { font-size:22px; font-weight:600; color:#1a3d5c; margin-bottom:3px; }
.gen-page-sub { font-size:13px; color:#888; margin-bottom:18px; }

.result-banner { background:#1a3d5c; border-radius:10px; padding:16px 20px; display:flex; align-items:center; gap:24px; margin-bottom:16px; flex-wrap:wrap; }
.rb-label { font-size:10px; font-weight:700; letter-spacing:0.8px; text-transform:uppercase; color:rgba(255,255,255,0.55); margin-bottom:3px; }
.rb-val { font-size:16px; font-weight:600; color:#fff; }
.rb-sub { font-size:11px; color:rgba(255,255,255,0.6); margin-top:1px; }
.rb-divider { width:1px; height:42px; background:rgba(255,255,255,0.18); flex-shrink:0; }
.rb-status { border-radius:6px; padding:6px 12px; font-size:12px; font-weight:600; display:flex; align-items:center; gap:5px; flex-shrink:0; }
.rb-status--normal  { background:rgba(46,139,74,0.25);  border:0.5px solid rgba(46,139,74,0.45);  color:#6fe09a; }
.rb-status--warning { background:rgba(184,120,0,0.25);  border:0.5px solid rgba(184,120,0,0.45);  color:#f0c070; }
.rb-status--alert   { background:rgba(192,57,43,0.25);  border:0.5px solid rgba(192,57,43,0.45);  color:#f09595; }
.rb-btns { margin-left:auto; display:flex; gap:8px; flex-shrink:0; }
.rb-btn { font-size:12px; padding:6px 12px; border-radius:6px; border:0.5px solid rgba(255,255,255,0.28); background:rgba(255,255,255,0.1); color:rgba(255,255,255,0.9); text-decoration:none; display:flex; align-items:center; gap:4px; }
.rb-btn:hover { background:rgba(255,255,255,0.18); color:#fff; }

.card-block { background:#fff; border:0.5px solid #e0e4ea; border-radius:10px; overflow:hidden; margin-bottom:16px; }
.card-block-header { display:flex; align-items:center; gap:8px; padding:12px 16px; border-bottom:0.5px solid #e0e4ea; font-size:13px; font-weight:700; color:#1a3d5c; background:#f9fafc; }
.card-block-body { padding:16px; }

.med-int-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:768px) { .med-int-grid { grid-template-columns:1fr; } }

.int-sub-label { font-size:10px; font-weight:700; letter-spacing:0.5px; text-transform:uppercase; color:#999; margin-bottom:10px; }

.med-row { display:flex; align-items:flex-start; gap:10px; padding:9px 12px; background:#f8f9fb; border-radius:8px; margin-bottom:6px; }
.med-row--normal  { background:#f4faf6; }
.med-row--warning { background:#fff8ee; }
.med-row--alert   { background:#fef5f5; }
.med-icon { width:28px; height:28px; border-radius:6px; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:14px; }
.med-icon--normal  { background:#dff0e6; color:#2e8b4a; }
.med-icon--warning { background:#fff0d0; color:#b87800; }
.med-icon--alert   { background:#fde8e8; color:#c0392b; }
.med-naam { font-size:13px; font-weight:500; color:#222; margin-bottom:1px; }
.med-note { font-size:11px; color:#666; line-height:1.4; }
.med-empty { font-size:12px; color:#aaa; padding:8px 0; }

.med-gene-chips { display:flex; align-items:center; flex-wrap:wrap; gap:4px; margin-top:6px; }
.med-gene-label { font-size:10px; color:#aaa; margin-right:2px; }
.gene-chip { display:inline-flex; align-items:center; gap:3px; font-size:10px; font-weight:600; padding:2px 8px; border-radius:4px; background:#eef6ff; color:#1a6fa8; border:0.5px solid #b5d4f4; text-decoration:none; }
.gene-chip:hover { background:#d8ecfc; }
.gene-chip--current { background:#1a3d5c; color:#fff; border-color:#1a3d5c; cursor:default; }
.med-page-link { display:inline-flex; align-items:center; gap:4px; font-size:11px; color:#1a6fa8; text-decoration:none; margin-top:5px; font-weight:500; }
.med-page-link:hover { text-decoration:underline; }
.multi-gene-notice { display:flex; align-items:flex-start; gap:7px; padding:9px 12px; border-radius:8px; background:#eef6ff; border:0.5px solid #b5d4f4; font-size:12px; color:#1a3d5c; line-height:1.5; margin-top:10px; }
.multi-gene-notice i { font-size:14px; flex-shrink:0; margin-top:1px; color:#1a6fa8; }
.int-patient-alert { display:flex; align-items:center; gap:6px; font-size:11px; font-weight:500; color:#c0392b; margin-top:8px; padding:6px 10px; background:#fceaea; border-radius:6px; border:0.5px solid #f0b0b0; line-height:1.4; }

.gene-info-card { background:#fff; border:0.5px solid #e0e4ea; border-radius:10px; overflow:hidden; margin-bottom:16px; box-shadow:0 1px 4px rgba(0,0,0,0.04); }
.gene-info-card-header { display:flex; align-items:center; gap:8px; padding:12px 16px; border-bottom:0.5px solid #e0e4ea; font-size:13px; font-weight:700; color:#1a3d5c; background:#f9fafc; }
.gene-info-card-body { padding:16px; font-size:13px; color:#444; line-height:1.65; }
.gene-info-card-body p { margin-bottom:0.75em; }
.gene-info-card-body ul, .gene-info-card-body ol { padding-left:1.4em; margin-bottom:0.75em; }
.gene-info-card-body li { margin-bottom:0.3em; }

.gen-page-variants { font-size:11px; color:#999; margin:2px 0 10px; }
.gen-intro-grid { display:grid; grid-template-columns:minmax(0,1fr) 380px; gap:20px; align-items:start; }
@media (max-width:860px) { .gen-intro-grid { grid-template-columns:1fr; } }
.gen-intro-grid .dna-img { margin-top:0; }
.gen-intro-grid .dna-img img { max-width:100%; height:auto; }

.video-wrapper { border-radius:8px; overflow:hidden; border:0.5px solid #e0e4ea; line-height:0; }
.gene-info-card-body [style*="padding: 1.5em"] { float:right; clear:right; width:360px; padding:0 !important; margin:0 0 12px 20px; border-radius:8px; overflow:hidden; }
@media (max-width:860px) { .gene-info-card-body [style*="padding: 1.5em"] { float:none; width:100%; margin:0 0 12px 0; } }

.source-link { display:flex; align-items:center; gap:7px; font-size:12px; color:#1a6fa8; padding:6px 0; border-bottom:0.5px solid #f0f2f5; text-decoration:none; }
.source-link:last-child { border-bottom:none; }
.source-link:hover { color:#1a3d5c; }

/* ── DnaTestGeneMedicines redesign ─────────────────────────────────────── */
.search-label { font-size:16px; font-weight:700; color:#1a3d5c; margin-bottom:4px; }
.search-hint  { font-size:12px; color:#888; margin-bottom:10px; }
/* Force lookup-based Select2 containers to fill their parent */
#my-meds-cnd { display:block !important; }
#my-meds-cnd .lookup { width:100% !important; }
#my-meds-cnd .select2-container,
#my-meds-str .select2-container,
#my-meds-new-med .select2-container { width:100% !important; display:block !important; }

/* Global Select2 reset — removes legacy IE gradients, applies flat modern style */
.select2-container .select2-choice { background:#fff !important; background-image:none !important; filter:none !important; border:1px solid #d0d5dd !important; border-radius:6px !important; color:#333 !important; font-family:inherit !important; font-size:13px !important; box-shadow:none !important; }
.select2-container .select2-choice div { border-left:none !important; background:transparent !important; background-image:none !important; filter:none !important; }
.select2-dropdown-open .select2-choice { background:#fff !important; background-image:none !important; filter:none !important; border-bottom-color:transparent !important; border-radius:6px 6px 0 0 !important; box-shadow:none !important; }
.select2-container-active .select2-choice { border-color:#1a6fa8 !important; box-shadow:0 0 0 3px rgba(26,111,168,0.12) !important; }
.select2-drop { border:1px solid #1a6fa8 !important; border-top:none !important; margin-top:0 !important; border-radius:0 0 6px 6px !important; box-shadow:0 4px 12px rgba(0,0,0,0.08) !important; font-family:inherit !important; font-size:13px !important; }
.select2-results { font-family:inherit !important; font-size:13px !important; }
.select2-search input { font-family:inherit !important; font-size:13px !important; background-image:none !important; }

.search-bar   { display:flex; gap:8px; }
.search-bar form { flex:1; display:flex; min-width:0; }
.search-bar .select2-container { flex:1; min-width:0; }
.search-input { flex:1; width:100%; padding:9px 12px; border:1px solid #d0d5dd; border-radius:8px; font-size:13px; font-family:inherit; }
.search-input:focus { outline:none; border-color:#1a6fa8; }
.search-bar .select2-container { display:block; }
.search-bar .select2-container .select2-choice { display:block; box-sizing:border-box !important; border:1px solid #d0d5dd !important; -webkit-border-radius:8px !important; -moz-border-radius:8px !important; border-radius:8px !important; background:#fff !important; background-image:none !important; filter:none !important; height:38px !important; line-height:36px !important; font-size:13px !important; font-family:inherit !important; box-shadow:none !important; padding:0 32px 0 10px !important; color:#333 !important; }
.search-bar .select2-container .select2-choice div { border-left:none !important; background:transparent !important; background-image:none !important; filter:none !important; border-radius:0 !important; width:28px; }
.search-bar .select2-container .select2-choice div b { background-color:transparent; }
.search-bar .select2-container.select2-dropdown-open .select2-choice { border-color:#1a6fa8 !important; border-bottom-color:transparent !important; -webkit-border-radius:8px 8px 0 0 !important; border-radius:8px 8px 0 0 !important; background-color:#fff !important; background-image:none !important; filter:none !important; box-shadow:none !important; }
.search-bar .select2-container-active .select2-choice { border-color:#1a6fa8 !important; box-shadow:0 0 0 3px rgba(26,111,168,0.12) !important; }
.search-bar .select2-drop { border:1px solid #1a6fa8 !important; border-top:none !important; margin-top:0 !important; margin-left:-1px !important; width:calc(100% + 2px) !important; -webkit-border-radius:0 0 8px 8px !important; border-radius:0 0 8px 8px !important; box-shadow:0 4px 12px rgba(0,0,0,0.08) !important; background:#fff !important; font-family:inherit !important; font-size:13px !important; }
.search-bar .select2-search { padding:6px 8px 4px; }
.search-bar .select2-search input { border:1px solid #e0e4ea !important; -webkit-border-radius:6px !important; border-radius:6px !important; padding:5px 10px !important; font-size:13px !important; font-family:inherit !important; box-shadow:none !important; background:#fff !important; background-image:none !important; width:100%; box-sizing:border-box; }
.search-bar .select2-results { font-family:inherit !important; font-size:13px !important; }
.search-bar .select2-results li { font-family:inherit !important; }

.med-list { padding:12px; background:#f4f6f9; }
.med-item { background:#fff; border:0.5px solid #e0e4ea; border-radius:8px; padding:14px 16px; margin-bottom:10px; display:grid; grid-template-columns:minmax(0,1fr) 210px; gap:16px; align-items:start; box-shadow:0 1px 3px rgba(0,0,0,0.04); }
.med-item:last-of-type { margin-bottom:0; }
.med-item-name { font-size:13px; font-weight:600; color:#1a3d5c; margin-bottom:8px; }
.med-item-cat  { font-size:11px; color:#aaa; }
.med-item-footer { display:flex; justify-content:flex-end; padding-top:6px; }
.cpic-col { display:flex; flex-direction:column; gap:6px; }
.cpic-block { padding:9px 11px; border-radius:6px; background:#f8f9fb; border:0.5px solid #e0e4ea; }
.cpic-block--warn { background:#fcebeb; border-color:#f09595; }
.cpic-block-row { display:flex; align-items:center; justify-content:space-between; gap:6px; margin-bottom:5px; }
.cpic-gene-chip { font-size:10px; font-weight:600; padding:1px 7px; border-radius:4px; background:#e6f1fb; color:#185fa5; border:0.5px solid #85b7eb; }
.cpic-gene-chip--warn { background:#f7c1c1; color:#a32d2d; border-color:#f09595; }
.cpic-badge { font-size:10px; font-weight:500; padding:1px 6px; border-radius:4px; background:#eaf3de; color:#3b6d11; }
.cpic-badge--optional { background:#f1f3f5; color:#888; border:0.5px solid #dde3ec; }
.cpic-rec { font-size:12px; color:#1a1a2e; line-height:1.5; margin-bottom:3px; }
.cpic-rec--warn { color:#a32d2d; }
.cpic-impl { font-size:11px; color:#888; line-height:1.4; }
.cpic-impl--warn { color:#c0392b; }
.cpic-empty { font-size:11px; color:#aaa; padding:9px 11px; border-radius:6px; background:#f8f9fb; border:0.5px solid #e0e4ea; }
@media (max-width:768px) { .med-item { grid-template-columns:1fr; } .cpic-col { margin-top:4px; } }
.int-notice { display:flex; align-items:flex-start; gap:7px; font-size:12px; padding:2px 0; margin-top:4px; line-height:1.5; }
.int-notice--inhibitor { color:#854f0b; }
.int-notice--inducer { color:#185fa5; }
.int-notice > span { display:flex; flex-wrap:wrap; align-items:center; gap:4px; }
.int-gene-chip { display:inline-block; font-size:10px; font-weight:700; padding:1px 6px; border-radius:4px; letter-spacing:0.2px; line-height:1.6; }
.int-gene-chip--inhibitor { background:transparent; border:1px solid #c47a2a; color:#444; }
.int-gene-chip--inducer { background:transparent; border:1px solid #2a6fa8; color:#444; }
.int-strength { font-size:10px; font-weight:600; padding:1px 5px; border-radius:3px; letter-spacing:0.2px; line-height:1.6; display:inline-block; }
.int-strength--inhibitor { background:#fbe8d0; color:#7a4010; }
.int-strength--inducer { background:#daeaf8; color:#1a5a9c; }
.int-notice-suffix { color:inherit; opacity:0.85; }

.gene-table { width:100%; border-collapse:collapse; }
.gene-table td { padding:4px 8px; font-size:12px; border-bottom:0.5px solid #f5f7fa; vertical-align:middle; }
.gene-table tr:last-child td { border-bottom:none; }
.gt-gene  { width:90px; }
.gt-pheno { }
.gt-note  { color:#555; }
.gt-note--warn   { color:#7a4f00; }
.gt-note--danger { color:#8b2020; }

.gene-link { font-weight:600; color:#1a6fa8; text-decoration:none; font-size:12px; }
.gene-link:hover { text-decoration:underline; }

.pheno-pill { display:inline-flex; align-items:center; gap:3px; padding:2px 8px; border-radius:4px; font-size:11px; font-weight:600; white-space:nowrap; }
.pheno-pill--nm { background:#eaf5ee; color:#2e6b3a; border:0.5px solid #c8e6d0; }
.pheno-pill--im { background:#fff8ee; color:#7a4f00; border:0.5px solid #f0d090; }
.pheno-pill--pm { background:#fceaea; color:#8b2020; border:0.5px solid #f0b0b0; }
.pheno-pill--rm { background:#eef4ff; color:#1a4fa0; border:0.5px solid #b8d0f0; }
.pheno-pill--um { background:#dceeff; color:#0d3a80; border:0.5px solid #90bce8; }
.pheno-pill--nt { background:#f5f7fa; color:#bbb;    border:0.5px solid #e5e8ec; }

.page-header { display:flex; align-items:flex-start; justify-content:space-between; gap:16px; margin-bottom:18px; }
.helper-btn { display:inline-flex; align-items:center; gap:6px; padding:7px 14px; border-radius:8px; border:0.5px solid #b5d4f4; background:#eef6ff; color:#1a3d5c; font-size:12px; font-weight:500; white-space:nowrap; flex-shrink:0; cursor:pointer; font-family:inherit; }
.helper-btn:hover { background:#d8ecfc; }
.helper-btn i { font-size:15px; color:#1a6fa8; }

.helper-modal { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.6); z-index:9999; align-items:center; justify-content:center; }
.helper-modal-inner { position:relative; background:#fff; border-radius:12px; padding:24px; max-width:700px; width:90%; }
.helper-modal-close { position:absolute; top:12px; right:12px; background:none; border:none; cursor:pointer; font-size:18px; color:#666; line-height:1; }
.helper-modal-close:hover { color:#333; }
.helper-modal-video { aspect-ratio:16/9; width:100%; }
.helper-modal-video iframe { width:100%; height:100%; border-radius:8px; border:none; }
.helper-modal-note { font-size:12px; color:#888; margin-top:10px; margin-bottom:0; }

/* ── ATC content sections (MedicineInformation page) ─────────────────── */
.atc-content .vote {
    border: 0.5px solid #e0e4ea !important;
    border-radius: 10px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
    padding: 16px !important;
    margin-bottom: 16px !important;
    overflow: hidden;
}
.atc-content .vote > h3:first-child {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1a3d5c !important;
    background: #f9fafc;
    padding: 12px 16px !important;
    margin: -16px -16px 16px -16px !important;
    border-bottom: 0.5px solid #e0e4ea;
}
.atc-content .vote p,
.atc-content .vote ul,
.atc-content .vote ol { font-size: 13px; color: #333; line-height: 1.6; }
.atc-content .ref-tbl-row { border-color: #e8ecf1 !important; font-size: 13px; }
.atc-content .ref-tbl-row:last-of-type { border-bottom: 0.5px solid #e8ecf1 !important; }
.atc-content .btn-right { display: none; }
.atc-content #gen-lst { display: block !important; }

/* ── DNA modules page (GeneticTests) ─────────────────────────────────── */
.dnamod-head { margin: 0.4rem 0 1.8rem; }
.dnamod-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #357f79;
    margin-bottom: 0.6rem;
}
.dnamod-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #52b3ac;
    box-shadow: 0 0 0 3px #e4f3f1;
}
.dnamod-head h1 {
    font-weight: 400;
    font-size: 30px;
    letter-spacing: -0.4px;
    color: #13283d;
    margin: 0 0 0.5rem;
}
.dnamod-head p {
    font-size: 14.5px;
    color: #5e6c7b;
    line-height: 1.7;
    max-width: 720px;
    margin: 0;
}

/* Intro two-card panel */
.dnamod-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
}
.dnamod-intro-card {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
}
.dnamod-intro-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #13283d;
    margin: 0 0 0.9rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #e6ebf1;
}
.dnamod-intro-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.dnamod-intro-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: #15202e;
    line-height: 1.55;
}
.dnamod-intro-card li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: 6px;
    border-radius: 50%;
    background: #52b3ac;
}

.dnamod-cert-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid #e6ebf1;
}
.dnamod-cert-badges img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 760px) {
    .dnamod-intro-grid { grid-template-columns: 1fr; }
}

/* Core card */
.dnamod-core {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(12,24,38,.04), 0 20px 44px -26px rgba(12,24,38,.20);
    margin-bottom: 2rem;
}
.dnamod-core-top {
    background: linear-gradient(135deg, #1676b6, #0d567f);
    color: #ffffff;
    padding: 1.5rem 1.8rem;
}
.dnamod-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.dnamod-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #52b3ac;
    box-shadow: 0 0 0 3px rgba(82,179,172,.4);
}
.dnamod-core-top h2 {
    font-weight: 400;
    font-size: 26px;
    letter-spacing: -0.4px;
    margin: 0 0 0.4rem;
}
.dnamod-core-top p {
    font-size: 14px;
    opacity: 0.9;
    max-width: 640px;
    margin: 0;
}
.dnamod-core-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.1rem;
    flex-wrap: wrap;
}
.dnamod-core-stats div { font-size: 12px; opacity: 0.85; }
.dnamod-core-stats b {
    display: block;
    font-size: 20px;
    font-weight: 500;
    opacity: 1;
}
.dnamod-core-body { padding: 1.6rem 1.8rem; }

.dnamod-core-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
}
.dnamod-core-top-text { flex: 1 1 auto; min-width: 0; }
.dnamod-core-video { flex-shrink: 0; width: 260px; }
.dnamod-core-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 12px;
}
@media (max-width: 720px) {
    .dnamod-core-top-inner { flex-direction: column; align-items: stretch; }
    .dnamod-core-video { width: 100%; max-width: 320px; }
}

.dnamod-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.8rem;
}
.dnamod-feature {
    background: #f6f9fb;
    border: 1px solid #e6ebf1;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    font-size: 13px;
    color: #5e6c7b;
    line-height: 1.55;
}
.dnamod-feature b {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #13283d;
    margin-bottom: 0.3rem;
}
@media (max-width: 640px) {
    .dnamod-features { grid-template-columns: 1fr; }
}

.dnamod-panel-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
}
.dnamod-panel-head h3 { font-size: 14.5px; font-weight: 600; color: #13283d; margin: 0; }
.dnamod-panel-head .hint { font-size: 12px; color: #5e6c7b; }

.dnamod-legend {
    display: flex;
    gap: 1.1rem;
    margin: 0.6rem 0 1.1rem;
    flex-wrap: wrap;
    font-size: 11px;
    color: #5e6c7b;
}
.dnamod-legend span { display: inline-flex; align-items: center; gap: 6px; }
.dnamod-lg-vip {
    width: 22px;
    height: 14px;
    border-radius: 3px;
    background: #e8a33d;
    color: #3a2600;
    font-size: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}
.dnamod-lg-act { width: 9px; height: 9px; border-radius: 50%; background: #52b3ac; }
.dnamod-lg-res { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid #d4dce5; background: #fff; }

.dnamod-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.dnamod-chip {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: #13283d;
    background: #ffffff;
    border: 1px solid #d4dce5;
    border-radius: 9px;
    padding: 7px 12px 7px 22px;
    cursor: pointer;
    transition: 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.dnamod-chip::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dnamod-chip[data-cat="actionable"]::before { background: #52b3ac; }
.dnamod-chip[data-cat="researched"]::before { border: 1.5px solid #d4dce5; background: #fff; }
.dnamod-chip:hover { border-color: #1676b6; background: #e9f2fa; }
.dnamod-chip:focus-visible { outline: 2px solid #1676b6; outline-offset: 2px; }
.dnamod-chip[aria-expanded="true"] { background: #1676b6; border-color: #1676b6; color: #fff; }
.dnamod-chip[aria-expanded="true"]::before { background: #fff; }
.dnamod-chip .dnamod-vip {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: #e8a33d;
    color: #3a2600;
    border-radius: 3px;
    padding: 1px 4px;
}
.dnamod-chip[aria-expanded="true"] .dnamod-vip { background: #fff; color: #0d567f; }

.dnamod-detail {
    margin-top: 1.1rem;
    border: 1px solid #e6ebf1;
    border-radius: 14px;
    background: #f6f9fb;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
}
.dnamod-detail.open { max-height: 700px; opacity: 1; }
.dnamod-detail-in { padding: 1.3rem 1.5rem; }
.dnamod-d-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.dnamod-d-sym { font-size: 22px; font-weight: 500; color: #1676b6; }
.dnamod-d-full { font-size: 13px; color: #5e6c7b; margin-bottom: 0.9rem; }
.dnamod-d-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 1rem; }
.dnamod-tag {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 3px 10px;
}
.dnamod-tag.act { background: #e4f3f1; color: #357f79; }
.dnamod-tag.res { background: #eef1f5; color: #718091; }
.dnamod-tag.vip { background: #fbefd9; color: #8a5a12; }
.dnamod-tag.ev { background: #e9f2fa; color: #0d567f; }
.dnamod-d-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
.dnamod-d-field .lab {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #357f79;
    margin-bottom: 2px;
}
.dnamod-d-field .val { font-size: 13.5px; color: #15202e; line-height: 1.6; }
.dnamod-d-close {
    background: none;
    border: none;
    color: #5e6c7b;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 2px 6px;
    border-radius: 6px;
}
.dnamod-d-close:hover { background: #eef1f5; color: #13283d; }
.dnamod-d-var {
    font-family: ui-monospace, Menlo, Consolas, monospace;
    font-size: 12px;
    color: #13283d;
    background: #eef3f8;
    border: 1px solid #e6ebf1;
    border-radius: 6px;
    padding: 2px 7px;
    display: inline-block;
    margin: 2px 4px 2px 0;
}

.dnamod-cta-note {
    margin-top: 1.3rem;
    padding-top: 1.1rem;
    border-top: 1px solid #e6ebf1;
    font-size: 13px;
    color: #5e6c7b;
    line-height: 1.6;
}
.dnamod-cta-note a {
    color: #1676b6;
    font-weight: 600;
    text-decoration: none;
}
.dnamod-cta-note a:hover { text-decoration: underline; }

/* Additional modules grid */
.dnamod-mod-head { margin: 2rem 0 1.1rem; }
.dnamod-mod-head h2 {
    font-weight: 400;
    font-size: 24px;
    color: #13283d;
    letter-spacing: -0.3px;
    margin-bottom: 0.3rem;
}
.dnamod-mod-head p { font-size: 14px; color: #5e6c7b; max-width: 680px; margin: 0; }

.dnamod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.dnamod-card {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    transition: 0.18s;
    position: relative;
}
.dnamod-card:hover {
    border-color: #d4dce5;
    box-shadow: 0 12px 30px -20px rgba(12,24,38,.28);
    transform: translateY(-2px);
}
.dnamod-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #e9f2fa;
    color: #1676b6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
}
.dnamod-card-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.dnamod-card-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: #357f79;
    margin-bottom: 0.35rem;
}
.dnamod-card h3 { font-size: 16px; font-weight: 600; color: #13283d; margin: 0 0 0.5rem; }
.dnamod-card p { font-size: 13px; color: #5e6c7b; line-height: 1.6; flex: 1; margin: 0; }
.dnamod-card-genes { margin-top: 0.9rem; display: flex; flex-wrap: wrap; gap: 5px; }
.dnamod-gtag {
    font-size: 11px;
    font-weight: 500;
    color: #0d567f;
    background: #e9f2fa;
    border-radius: 6px;
    padding: 3px 8px;
}
.dnamod-soon {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background: #fbefd9;
    color: #8a5a12;
    border-radius: 20px;
    padding: 3px 9px;
}
.dnamod-card--placeholder { border-style: dashed; background: #fcfdfe; }
.dnamod-card--placeholder .dnamod-card-icon { background: #eef1f5; color: #9aa7b4; }
.dnamod-card--placeholder h3 { color: #8492a0; }
.dnamod-card--placeholder .dnamod-card-label { color: #9aa7b4; }
.dnamod-ph-note {
    font-size: 12px;
    color: #9aa7b4;
    font-style: italic;
    margin-top: 0.9rem;
    border-top: 1px dashed #d4dce5;
    padding-top: 0.7rem;
}

@media (max-width: 600px) {
    .dnamod-grid { grid-template-columns: 1fr; }
}

/* ── Contact page ─────────────────────────────────────── */
.contact-success {
    background: #e4f3f1;
    border: 1px solid #b8ded8;
    color: #21584f;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    margin-bottom: 1.4rem;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    padding: 1.8rem 2rem;
    max-width: 640px;
    box-shadow: 0 1px 2px rgba(12,24,38,.04);
}

.contact-field { margin-bottom: 1.1rem; }
.contact-field label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #13283d;
    margin-bottom: 0.35rem;
}
.contact-field input[type="text"],
.contact-field input[type="email"],
.contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 14px;
    color: #13283d;
    background: #f6f9fb;
    border: 1px solid #d4dce5;
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    transition: border-color .15s, background .15s;
}
.contact-field input[type="text"]:focus,
.contact-field input[type="email"]:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #1676b6;
    background: #ffffff;
}

input[type="submit"].contact-submit {
    display: inline-flex;
    align-items: center;
    background: #1676b6;
    background-image: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 0.7rem 1.6rem;
    cursor: pointer;
    transition: background .15s;
}
input[type="submit"].contact-submit:hover { background: #0d567f; }

/* ── In the news card ─────────────────────────────────── */
.news-section-head {
    margin: 2.5rem 0 1.2rem;
}
.news-section-head h2 {
    font-weight: 400;
    font-size: 24px;
    color: #13283d;
    letter-spacing: -0.3px;
    margin: 0;
}
.news-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 1.8rem;
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(12,24,38,.04);
    margin-bottom: 2rem;
}
.news-card-media {
    background: #f6f9fb;
}
.news-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
}
.news-card-body {
    padding: 1.6rem 1.8rem 1.6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-card-meta {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #357f79;
    margin-bottom: 0.6rem;
}
.news-card-body p {
    font-size: 14px;
    color: #5e6c7b;
    line-height: 1.65;
    margin: 0 0 1.1rem;
}
.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    background: #1676b6;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
    padding: 0.55rem 1.2rem;
    transition: background .15s;
}
.news-card-link:hover { background: #0d567f; color: #ffffff; }

@media (max-width: 720px) {
    .news-card { grid-template-columns: 1fr; }
    .news-card-media img { height: 220px; min-height: 0; }
    .news-card-body { padding: 1.4rem 1.6rem; }
}

/* ── Condition tabs (moved into Personal Medicine foldout, restyled) ──── */
.flex-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.dna-cnd-btn {
    cursor: pointer;
    flex: 1 1 160px;
    text-align: center;
    margin-bottom: 0;
    background: #f6f9fb;
    border: 1px solid #e6ebf1;
    border-radius: 10px;
    padding: 0.8rem 0.6rem;
    color: #5e6c7b;
    font-size: 13px;
    font-weight: 500;
    box-shadow: none;
    transition: border-color .15s, color .15s, background .15s;
}
.dna-cnd-btn p { margin: 0; }
.dna-cnd-btn:hover { border-color: #1676b6; }

    .dna-cnd-btn:first-of-type {
        cursor: auto;
    }

.dna-cnd {
    border: 1px solid #e6ebf1;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: none;
    padding: 1.3rem 1.5rem;
    display: none;
    font-size: 13.5px;
    color: #5e6c7b;
    line-height: 1.7;
}

#dna-depression {
    display: block;
}

/* Foldout wrapper: restyle the shared .vote/.dna-info/heading elements
   scoped to this container only, so other pages using those classes
   are unaffected. */
.dnamod-more-panel h1 {
    font-size: 22px;
    font-weight: 400;
    color: #13283d;
    letter-spacing: -0.3px;
    margin-bottom: 0.6rem !important;
}
.dnamod-more-panel > .vote.rounded {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}
.dnamod-more-panel > .vote.rounded p {
    font-size: 13.5px;
    color: #5e6c7b;
    line-height: 1.7;
}
.dnamod-more-panel h2 {
    font-size: 18px;
    font-weight: 600;
    color: #13283d;
    letter-spacing: -0.2px;
    margin-bottom: 0.9rem !important;
}
.dnamod-more-panel .dna-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.2rem 0 0;
}
.dnamod-more-panel .dna-info .vote.rounded {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    box-shadow: 0 1px 2px rgba(12,24,38,.04);
}
.dnamod-more-panel .dna-info h5 {
    font-size: 14.5px;
    font-weight: 600;
    color: #13283d;
    margin: 0 0 0.5rem;
}
.dnamod-more-panel .dna-info p {
    font-size: 13px;
    color: #5e6c7b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    /* Condition tabs: stack vertically */
    .flex-btns {
        flex-direction: column;
    }
    .flex-btns .vote {
        width: 100%;
        box-sizing: border-box;
    }
}
@media (max-width: 640px) {
    .dnamod-more-panel .dna-info {
        grid-template-columns: 1fr;
    }
}

/* ── News list (additional articles) ─────────────────── */
.news-card--text {
    grid-template-columns: 1fr;
}
.news-card--text .news-card-body {
    padding: 1.6rem 1.8rem;
}
.news-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #13283d;
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

.news-more-wrap {
    text-align: center;
    margin: 0.5rem 0 2rem;
}
.news-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #d4dce5;
    color: #1676b6;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
    padding: 0.6rem 1.4rem;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.news-more-btn:hover { border-color: #1676b6; background: #e9f2fa; }

/* ── Core card: read-more foldout ────────────────────── */
.dnamod-more-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1.2rem;
    background: none;
    border: none;
    color: #1676b6;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}
.dnamod-more-toggle:hover { color: #0d567f; }
.dnamod-more-toggle i { transition: transform .2s; font-size: 11px; }
.dnamod-more-toggle[aria-expanded="true"] i { transform: rotate(180deg); }

.dnamod-more-panel {
    display: none;
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid #e6ebf1;
}

/* ── Auth (login/register) card ──────────────────────── */
.auth-wrap {
    max-width: 760px;
    margin: 2.5rem auto 4.5rem;
    padding: 0 24px;
    box-sizing: border-box;
}

.auth-card {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    padding: 2.5rem 2.75rem;
    box-shadow: 0 4px 16px -8px rgba(19, 40, 61, .08);
}

.auth-head {
    margin-bottom: 2rem;
}

.auth-title {
    font-size: 28px;
    font-weight: 400;
    color: #13283d;
    letter-spacing: -0.4px;
    line-height: 1.2;
    margin: 0 0 0.5rem;
}

.auth-subtitle {
    font-size: 14.5px;
    color: #5e6c7b;
    line-height: 1.6;
    margin: 0;
}

.auth-form .validation-summary-errors {
    margin-bottom: 1.25rem;
}

.auth-form .validation-summary-errors ul {
    margin: 0;
    padding-left: 1.1em;
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.auth-field--full {
    grid-column: 1 / -1;
}

.auth-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #5e6c7b;
    margin-bottom: 0.4rem;
}

.auth-field-hint {
    display: block;
    font-size: 11.5px;
    color: #8492a0;
    line-height: 1.5;
    margin-top: 0.35rem;
}

.auth-password-checklist {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.auth-password-checklist li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: #8492a0;
    transition: color 0.15s;
}

.auth-password-checklist li i {
    font-size: 12px;
    color: #c8d4de;
    transition: color 0.15s;
}

.auth-password-checklist li.is-met {
    color: #357f79;
}

.auth-password-checklist li.is-met i {
    color: #52b3ac;
}

.auth-field input[type="text"],
.auth-field input[type="password"],
.auth-field input[type="email"],
.auth-field select {
    width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0.8rem;
    font-size: 14px;
    font-family: inherit;
    color: #15202e;
    border: 1px solid #d4dce5;
    border-radius: 9px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.auth-field .select2-container {
    margin-top: 6px;
}

.auth-field input[type="text"]:focus,
.auth-field input[type="password"]:focus,
.auth-field input[type="email"]:focus,
.auth-field select:focus {
    outline: none;
    border-color: #1676b6;
    box-shadow: 0 0 0 3px #e9f2fa;
}

.auth-checks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eef1f5;
}

.auth-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.5px;
    color: #5e6c7b;
    line-height: 1.6;
    cursor: pointer;
}

.auth-check input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.auth-check a {
    color: #1676b6;
}

.auth-submit-row {
    text-align: right;
}

input[type="submit"].auth-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1676b6;
    background-image: none;
    color: #ffffff;
    border: none;
    border-radius: 9px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
}

input[type="submit"].auth-submit-btn:hover,
input[type="submit"].auth-submit-btn:focus {
    background: #0d567f;
    background-image: none;
}

@media (max-width: 640px) {
    .auth-card { padding: 1.75rem 1.5rem; }
    .auth-grid { grid-template-columns: 1fr; }
    .auth-submit-row { text-align: stretch; }
    .auth-submit-btn { width: 100%; }
}

/* ── Invitation accept / login-or-register flow ──────── */
.auth-invitation-message {
    background: #f6f9fb;
    border: 1px solid #e6ebf1;
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    font-style: italic;
    font-size: 13.5px;
    color: #5e6c7b;
    margin: 0 0 1.25rem;
}

.auth-radio-group-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #13283d;
    margin-bottom: 0.6rem;
}

.auth-radio-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.auth-radio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #13283d;
    cursor: pointer;
}

.auth-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fbf2df;
    border: 1px solid #f0e0b8;
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    font-size: 12.5px;
    color: #5e6c7b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.auth-note img {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
}

.auth-flow-panel {
    background: #f6f9fb;
    border: 1px solid #e6ebf1;
    border-radius: 14px;
    padding: 1.5rem 1.6rem;
}

.auth-flow-section + .auth-flow-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e6ebf1;
}

.auth-flow-title {
    font-weight: 600;
    font-size: 14.5px;
    color: #13283d;
    margin: 0 0 1rem;
}

.auth-flow-switch {
    font-size: 13px;
    color: #5e6c7b;
    margin: 0.9rem 0 0;
}

.auth-toggle-link {
    color: #1676b6;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.auth-flow-link {
    font-size: 12.5px;
    margin-top: 0.75rem;
}

.auth-flow-link a {
    color: #1676b6;
}

/* ── Legal / static text page (disclaimer, terms) ────── */
.legal-wrap {
    max-width: 820px;
    margin: 2.5rem auto 4.5rem;
    padding: 0 24px;
    box-sizing: border-box;
}

.legal-card {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    padding: 2.5rem 2.75rem;
    box-shadow: 0 4px 16px -8px rgba(19, 40, 61, .08);
}

.legal-title {
    font-size: 28px;
    font-weight: 400;
    color: #13283d;
    letter-spacing: -0.4px;
    line-height: 1.2;
    margin: 0 0 1.75rem;
}

.legal-text h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #1676b6;
    margin: 1.75rem 0 0.75rem;
}

.legal-text h3:first-child {
    margin-top: 0;
}

.legal-text p {
    font-size: 14.5px;
    color: #5e6c7b;
    line-height: 1.7;
    margin: 0 0 1.1rem;
}

.legal-text h4 {
    font-size: 16px;
    font-weight: 500;
    color: #13283d;
    margin: 0 0 0.9rem;
}

.legal-text ol,
.legal-text ul {
    font-size: 14.5px;
    color: #5e6c7b;
    line-height: 1.7;
    margin: 0 0 1.1rem;
    padding-left: 1.4em;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text li > ol,
.legal-text li > ul {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.legal-text b,
.legal-text strong {
    color: #13283d;
}

.about-info-card {
    background: #f6f9fb;
    border: 1px solid #e6ebf1;
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    margin-top: 1rem;
}

.about-info-title {
    font-size: 15px;
    font-weight: 600;
    color: #1676b6;
    margin: 0 0 1rem;
}

.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-info-col {
    border-left: 3px solid #1676b6;
    padding-left: 0.9rem;
    font-size: 13.5px;
    color: #5e6c7b;
    line-height: 1.7;
}

.about-info-col a {
    color: #1676b6;
}

@media (max-width: 640px) {
    .legal-card { padding: 1.75rem 1.5rem; }
    .about-info-grid { grid-template-columns: 1fr; }
}

.legal-text h2 {
    font-size: 20px;
    font-weight: 500;
    color: #13283d;
    margin: 2rem 0 1rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text ul.faq-topic {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.5rem;
}

.legal-text ul.faq-topic li {
    background: #f6f9fb;
    border: 1px solid #e6ebf1;
    border-radius: 12px;
    margin-bottom: 0.6rem;
    overflow: hidden;
}

.legal-text .toggle-elem-lnk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.2rem;
    font-size: 14px;
    font-weight: 500;
    color: #13283d;
    cursor: pointer;
}

.legal-text .toggle-elem-lnk::after {
    content: '+';
    flex-shrink: 0;
    color: #1676b6;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.legal-text .faq-txt {
    padding: 0 1.2rem 1.1rem;
}

.legal-text .faq-txt p,
.legal-text .faq-txt div {
    font-size: 13.5px;
    color: #5e6c7b;
    line-height: 1.7;
}

/* ── Specialist profile cards ─────────────────────────── */
.specialist-card {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    padding: 1.8rem 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 2px rgba(12, 24, 38, .04);
}

.specialist-body h3 {
    font-size: 18px;
    font-weight: 500;
    color: #13283d;
    margin: 0 0 0.4rem;
}

.specialist-body > p:first-of-type {
    font-size: 13px;
    font-weight: 600;
    color: #1676b6;
    margin: 0 0 1rem;
}

.specialist-body p {
    font-size: 14px;
    color: #5e6c7b;
    line-height: 1.7;
}

.specialist-body b {
    color: #13283d;
}

.specialist-photo {
    float: right;
    width: 25%;
    height: auto;
    margin: 0 0 1rem 1.5rem;
    border-radius: 12px;
}

.specialist-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eef1f5;
    clear: both;
}

.specialist-badge span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1676b6;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 500;
}

.specialist-badge img {
    height: 16px;
    width: auto;
    border-radius: 2px;
}

.specialist-badge a {
    color: #ffffff !important;
}

@media (max-width: 640px) {
    .specialist-photo { float: none; width: 40%; margin: 0 auto 1rem; display: block; }
}

/* ── Training program page ───────────────────────────── */
.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 0.5rem 0 1.75rem;
}

.training-card {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    padding: 1.5rem 1.4rem;
    box-shadow: 0 1px 2px rgba(12, 24, 38, .04);
}

.training-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 0.9rem;
    background: #e9f2fa;
    color: #1676b6;
}

.training-card-title {
    font-size: 15px;
    font-weight: 500;
    color: #13283d;
    margin: 0 0 0.4rem;
}

.training-card-body {
    font-size: 13px;
    color: #5e6c7b;
    line-height: 1.6;
    margin: 0;
}

.training-cta {
    background: #e9f2fa;
    border: 1px solid #cfe3f3;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    text-align: center;
    margin-top: 1.5rem;
}

.training-cta p {
    font-size: 14.5px;
    color: #13283d;
    margin: 0 0 1.1rem;
}

@media (max-width: 860px) {
    .training-grid { grid-template-columns: 1fr; }
}

/* ── About page specialists teaser ───────────────────── */
.about-team {
    margin-top: 2rem;
}

.about-team-heading {
    font-size: 20px;
    font-weight: 500;
    color: #13283d;
    margin: 0 0 0.6rem;
}

.about-team-intro {
    font-size: 14.5px;
    color: #5e6c7b;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.about-team-card {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    padding: 1.1rem;
    text-align: center;
}

.about-team-photo {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.9rem;
}

.about-team-name {
    font-size: 14px;
    font-weight: 500;
    color: #13283d;
    margin: 0 0 0.3rem;
}

.about-team-role {
    font-size: 12px;
    color: #5e6c7b;
    line-height: 1.5;
    margin: 0;
}

.about-team-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #1676b6;
    text-decoration: none;
}

.about-team-link:hover {
    color: #0d567f;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .about-team-grid { grid-template-columns: 1fr; }
}

/*!
 * Fotorama 4.6.3 | http://fotorama.io/license/
 */
.fotorama__arr:focus:after,.fotorama__fullscreen-icon:focus:after,.fotorama__html,.fotorama__img,.fotorama__nav__frame:focus .fotorama__dot:after,.fotorama__nav__frame:focus .fotorama__thumb:after,.fotorama__stage__frame,.fotorama__stage__shaft,.fotorama__video iframe{position:absolute;width:100%;height:100%;top:0;right:0;left:0;bottom:0}.fotorama--fullscreen,.fotorama__img{max-width:99999px!important;max-height:99999px!important;min-width:0!important;min-height:0!important;border-radius:0!important;box-shadow:none!important;padding:0!important}.fotorama__wrap .fotorama__grab{cursor:move;cursor:-webkit-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.fotorama__grabbing *{cursor:move;cursor:-webkit-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.fotorama__spinner{position:absolute!important;top:50%!important;left:50%!important}.fotorama__wrap--css3 .fotorama__arr,.fotorama__wrap--css3 .fotorama__fullscreen-icon,.fotorama__wrap--css3 .fotorama__nav__shaft,.fotorama__wrap--css3 .fotorama__stage__shaft,.fotorama__wrap--css3 .fotorama__thumb-border,.fotorama__wrap--css3 .fotorama__video-close,.fotorama__wrap--css3 .fotorama__video-play{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.fotorama__caption,.fotorama__nav:after,.fotorama__nav:before,.fotorama__stage:after,.fotorama__stage:before,.fotorama__wrap--css3 .fotorama__html,.fotorama__wrap--css3 .fotorama__nav,.fotorama__wrap--css3 .fotorama__spinner,.fotorama__wrap--css3 .fotorama__stage,.fotorama__wrap--css3 .fotorama__stage .fotorama__img,.fotorama__wrap--css3 .fotorama__stage__frame{-webkit-transform:translateZ(0);transform:translateZ(0)}.fotorama__arr:focus,.fotorama__fullscreen-icon:focus,.fotorama__nav__frame{outline:0}.fotorama__arr:focus:after,.fotorama__fullscreen-icon:focus:after,.fotorama__nav__frame:focus .fotorama__dot:after,.fotorama__nav__frame:focus .fotorama__thumb:after{content:'';border-radius:inherit;background-color:rgba(0,175,234,.5)}.fotorama__wrap--video .fotorama__stage,.fotorama__wrap--video .fotorama__stage__frame--video,.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html,.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img,.fotorama__wrap--video .fotorama__stage__shaft{-webkit-transform:none!important;transform:none!important}.fotorama__wrap--css3 .fotorama__nav__shaft,.fotorama__wrap--css3 .fotorama__stage__shaft,.fotorama__wrap--css3 .fotorama__thumb-border{transition-property:-webkit-transform,width;transition-property:transform,width;transition-timing-function:cubic-bezier(0.1,0,.25,1);transition-duration:0ms}.fotorama__arr,.fotorama__fullscreen-icon,.fotorama__no-select,.fotorama__video-close,.fotorama__video-play,.fotorama__wrap{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fotorama__select{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.fotorama__nav,.fotorama__nav__frame{margin:auto;padding:0}.fotorama__caption__wrap,.fotorama__nav__frame,.fotorama__nav__shaft{-moz-box-orient:vertical;display:inline-block;vertical-align:middle;*display:inline;*zoom:1}.fotorama__nav__frame,.fotorama__thumb-border{box-sizing:content-box}.fotorama__caption__wrap{box-sizing:border-box}.fotorama--hidden,.fotorama__load{position:absolute;left:-99999px;top:-99999px;z-index:-1}.fotorama__arr,.fotorama__fullscreen-icon,.fotorama__nav,.fotorama__nav__frame,.fotorama__nav__shaft,.fotorama__stage__frame,.fotorama__stage__shaft,.fotorama__video-close,.fotorama__video-play{-webkit-tap-highlight-color:transparent}.fotorama__arr,.fotorama__fullscreen-icon,.fotorama__video-close,.fotorama__video-play{background:url(fotorama.png) no-repeat}@media (-webkit-min-device-pixel-ratio:1.5),(min-resolution:2dppx){.fotorama__arr,.fotorama__fullscreen-icon,.fotorama__video-close,.fotorama__video-play{background:url(fotorama@2x.png) 0 0/96px 160px no-repeat}}.fotorama__thumb{background-color:#7f7f7f;background-color:rgba(127,127,127,.2)}@media print{.fotorama__arr,.fotorama__fullscreen-icon,.fotorama__thumb-border,.fotorama__video-close,.fotorama__video-play{background:none!important}}.fotorama{min-width:1px;overflow:hidden}.fotorama:not(.fotorama--unobtrusive)>*:not(:first-child){display:none}.fullscreen{width:100%!important;height:100%!important;max-width:100%!important;max-height:100%!important;margin:0!important;padding:0!important;overflow:hidden!important;background:#000}.fotorama--fullscreen{position:absolute!important;top:0!important;left:0!important;right:0!important;bottom:0!important;float:none!important;z-index:2147483647!important;background:#000;width:100%!important;height:100%!important;margin:0!important}.fotorama--fullscreen .fotorama__nav,.fotorama--fullscreen .fotorama__stage{background:#000}.fotorama__wrap{-webkit-text-size-adjust:100%;position:relative;direction:ltr;z-index:0}.fotorama__wrap--rtl .fotorama__stage__frame{direction:rtl}.fotorama__nav,.fotorama__stage{overflow:hidden;position:relative;max-width:100%}.fotorama__wrap--pan-y{-ms-touch-action:pan-y}.fotorama__wrap .fotorama__pointer{cursor:pointer}.fotorama__wrap--slide .fotorama__stage__frame{opacity:1!important}.fotorama__stage__frame{overflow:hidden}.fotorama__stage__frame.fotorama__active{z-index:8}.fotorama__wrap--fade .fotorama__stage__frame{display:none}.fotorama__wrap--fade .fotorama__fade-front,.fotorama__wrap--fade .fotorama__fade-rear,.fotorama__wrap--fade .fotorama__stage__frame.fotorama__active{display:block;left:0;top:0}.fotorama__wrap--fade .fotorama__fade-front{z-index:8}.fotorama__wrap--fade .fotorama__fade-rear{z-index:7}.fotorama__wrap--fade .fotorama__fade-rear.fotorama__active{z-index:9}.fotorama__wrap--fade .fotorama__stage .fotorama__shadow{display:none}.fotorama__img{-ms-filter:"alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;border:none!important}.fotorama__error .fotorama__img,.fotorama__loaded .fotorama__img{-ms-filter:"alpha(Opacity=100)";filter:alpha(opacity=100);opacity:1}.fotorama--fullscreen .fotorama__loaded--full .fotorama__img,.fotorama__img--full{display:none}.fotorama--fullscreen .fotorama__loaded--full .fotorama__img--full{display:block}.fotorama__wrap--only-active .fotorama__nav,.fotorama__wrap--only-active .fotorama__stage{max-width:99999px!important}.fotorama__wrap--only-active .fotorama__stage__frame{visibility:hidden}.fotorama__wrap--only-active .fotorama__stage__frame.fotorama__active{visibility:visible}.fotorama__nav{font-size:0;line-height:0;text-align:center;display:none;white-space:nowrap;z-index:5}.fotorama__nav__shaft{position:relative;left:0;top:0;text-align:left}.fotorama__nav__frame{position:relative;cursor:pointer}.fotorama__nav--dots{display:block}.fotorama__nav--dots .fotorama__nav__frame{width:18px;height:30px}.fotorama__nav--dots .fotorama__nav__frame--thumb,.fotorama__nav--dots .fotorama__thumb-border{display:none}.fotorama__nav--thumbs{display:block}.fotorama__nav--thumbs .fotorama__nav__frame{padding-left:0!important}.fotorama__nav--thumbs .fotorama__nav__frame:last-child{padding-right:0!important}.fotorama__nav--thumbs .fotorama__nav__frame--dot{display:none}.fotorama__dot{display:block;width:4px;height:4px;position:relative;top:12px;left:6px;border-radius:6px;border:1px solid #7f7f7f}.fotorama__nav__frame:focus .fotorama__dot:after{padding:1px;top:-1px;left:-1px}.fotorama__nav__frame.fotorama__active .fotorama__dot{width:0;height:0;border-width:3px}.fotorama__nav__frame.fotorama__active .fotorama__dot:after{padding:3px;top:-3px;left:-3px}.fotorama__thumb{overflow:hidden;position:relative;width:100%;height:100%}.fotorama__nav__frame:focus .fotorama__thumb{z-index:2}.fotorama__thumb-border{position:absolute;z-index:9;top:0;left:0;border-style:solid;border-color:#00afea;background-image:linear-gradient(to bottom right,rgba(255,255,255,.25),rgba(64,64,64,.1))}.fotorama__caption{position:absolute;z-index:12;bottom:0;left:0;right:0;font-family:'Helvetica Neue',Arial,sans-serif;font-size:14px;line-height:1.5;color:#000}.fotorama__caption a{text-decoration:none;color:#000;border-bottom:1px solid;border-color:rgba(0,0,0,.5)}.fotorama__caption a:hover{color:#333;border-color:rgba(51,51,51,.5)}.fotorama__wrap--rtl .fotorama__caption{left:auto;right:0}.fotorama__wrap--no-captions .fotorama__caption,.fotorama__wrap--video .fotorama__caption{display:none}.fotorama__caption__wrap{background-color:#fff;background-color:rgba(255,255,255,.9);padding:5px 10px}@-webkit-keyframes spinner{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fotorama__wrap--css3 .fotorama__spinner{-webkit-animation:spinner 24s infinite linear;animation:spinner 24s infinite linear}.fotorama__wrap--css3 .fotorama__html,.fotorama__wrap--css3 .fotorama__stage .fotorama__img{transition-property:opacity;transition-timing-function:linear;transition-duration:.3s}.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html,.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img{-ms-filter:"alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0}.fotorama__select{cursor:auto}.fotorama__video{top:32px;right:0;bottom:0;left:0;position:absolute;z-index:10}@-moz-document url-prefix(){.fotorama__active{box-shadow:0 0 0 transparent}}.fotorama__arr,.fotorama__fullscreen-icon,.fotorama__video-close,.fotorama__video-play{position:absolute;z-index:11;cursor:pointer}.fotorama__arr{position:absolute;width:32px;height:32px;top:50%;margin-top:-16px}.fotorama__arr--prev{left:2px;background-position:0 0}.fotorama__arr--next{right:2px;background-position:-32px 0}.fotorama__arr--disabled{pointer-events:none;cursor:default;*display:none;opacity:.1}.fotorama__fullscreen-icon{width:32px;height:32px;top:2px;right:2px;background-position:0 -32px;z-index:20}.fotorama__arr:focus,.fotorama__fullscreen-icon:focus{border-radius:50%}.fotorama--fullscreen .fotorama__fullscreen-icon{background-position:-32px -32px}.fotorama__video-play{width:96px;height:96px;left:50%;top:50%;margin-left:-48px;margin-top:-48px;background-position:0 -64px;opacity:0}.fotorama__wrap--css2 .fotorama__video-play,.fotorama__wrap--video .fotorama__stage .fotorama__video-play{display:none}.fotorama__error .fotorama__video-play,.fotorama__loaded .fotorama__video-play,.fotorama__nav__frame .fotorama__video-play{opacity:1;display:block}.fotorama__nav__frame .fotorama__video-play{width:32px;height:32px;margin-left:-16px;margin-top:-16px;background-position:-64px -32px}.fotorama__video-close{width:32px;height:32px;top:0;right:0;background-position:-64px 0;z-index:20;opacity:0}.fotorama__wrap--css2 .fotorama__video-close{display:none}.fotorama__wrap--css3 .fotorama__video-close{-webkit-transform:translate3d(32px,-32px,0);transform:translate3d(32px,-32px,0)}.fotorama__wrap--video .fotorama__video-close{display:block;opacity:1}.fotorama__wrap--css3.fotorama__wrap--video .fotorama__video-close{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr,.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon{opacity:0}.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr:focus,.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:focus{opacity:1}.fotorama__wrap--video .fotorama__arr,.fotorama__wrap--video .fotorama__fullscreen-icon{opacity:0!important}.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr,.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon{display:none}.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr:focus,.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:focus{display:block}.fotorama__wrap--css2.fotorama__wrap--video .fotorama__arr,.fotorama__wrap--css2.fotorama__wrap--video .fotorama__fullscreen-icon{display:none!important}.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:not(:focus){-webkit-transform:translate3d(32px,-32px,0);transform:translate3d(32px,-32px,0)}.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--prev:not(:focus){-webkit-transform:translate3d(-48px,0,0);transform:translate3d(-48px,0,0)}.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--next:not(:focus){-webkit-transform:translate3d(48px,0,0);transform:translate3d(48px,0,0)}.fotorama__wrap--css3.fotorama__wrap--video .fotorama__fullscreen-icon{-webkit-transform:translate3d(32px,-32px,0)!important;transform:translate3d(32px,-32px,0)!important}.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--prev{-webkit-transform:translate3d(-48px,0,0)!important;transform:translate3d(-48px,0,0)!important}.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--next{-webkit-transform:translate3d(48px,0,0)!important;transform:translate3d(48px,0,0)!important}.fotorama__wrap--css3 .fotorama__arr:not(:focus),.fotorama__wrap--css3 .fotorama__fullscreen-icon:not(:focus),.fotorama__wrap--css3 .fotorama__video-close:not(:focus),.fotorama__wrap--css3 .fotorama__video-play:not(:focus){transition-property:-webkit-transform,opacity;transition-property:transform,opacity;transition-duration:.3s}.fotorama__nav:after,.fotorama__nav:before,.fotorama__stage:after,.fotorama__stage:before{content:"";display:block;position:absolute;text-decoration:none;top:0;bottom:0;width:10px;height:auto;z-index:10;pointer-events:none;background-repeat:no-repeat;background-size:1px 100%,5px 100%}.fotorama__nav:before,.fotorama__stage:before{background-image:linear-gradient(transparent,rgba(0,0,0,.2) 25%,rgba(0,0,0,.3) 75%,transparent),radial-gradient(farthest-side at 0 50%,rgba(0,0,0,.4),transparent);background-position:0 0,0 0;left:-10px}.fotorama__nav.fotorama__shadows--left:before,.fotorama__stage.fotorama__shadows--left:before{left:0}.fotorama__nav:after,.fotorama__stage:after{background-image:linear-gradient(transparent,rgba(0,0,0,.2) 25%,rgba(0,0,0,.3) 75%,transparent),radial-gradient(farthest-side at 100% 50%,rgba(0,0,0,.4),transparent);background-position:100% 0,100% 0;right:-10px}.fotorama__nav.fotorama__shadows--right:after,.fotorama__stage.fotorama__shadows--right:after{right:0}.fotorama--fullscreen .fotorama__nav:after,.fotorama--fullscreen .fotorama__nav:before,.fotorama--fullscreen .fotorama__stage:after,.fotorama--fullscreen .fotorama__stage:before,.fotorama__wrap--fade .fotorama__stage:after,.fotorama__wrap--fade .fotorama__stage:before,.fotorama__wrap--no-shadows .fotorama__nav:after,.fotorama__wrap--no-shadows .fotorama__nav:before,.fotorama__wrap--no-shadows .fotorama__stage:after,.fotorama__wrap--no-shadows .fotorama__stage:before{display:none}
