/* ================================================================
   IT-CALCULATORS.COM — SHARED STYLESHEET
   Version 2.0 — Master Template Edition
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES (Design Tokens)
   ---------------------------------------------------------------- */
:root {
    --bg: #ffffff;
    --text-main: #0f172a;
    --text-dim: #64748b;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --border: #e2e8f0;
    --card-bg: #ffffff;
    --success: #059669;
    --warning: #f97316;
    --danger: #ef4444;
    --sidebar-bg: #fafafa;
    --sidebar-science-bg: #eff6ff;
    --sidebar-science-border: #2563eb;
    --sidebar-science-text: #1e40af;
}

/* ----------------------------------------------------------------
   RESET
   ---------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ----------------------------------------------------------------
   BASE
   ---------------------------------------------------------------- */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* ----------------------------------------------------------------
   HEADER — Sticky, frosted glass, identical on every page
   ---------------------------------------------------------------- */
.app-header {
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.home-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.home-link .site-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
}

.home-link .site-tagline {
    font-size: 0.62rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    margin-left: 26px;
    font-weight: 500;
}

/* Version badge — top right of header on calculator pages */
.version-badge {
    font-size: 0.72rem;
    color: var(--text-dim);
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ----------------------------------------------------------------
   NAV PILLS — Consistent on all pages
   ---------------------------------------------------------------- */
.nav-pills {
    display: flex;
    gap: 4px;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.nav-pill {
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dim);
    transition: all 0.15s ease;
    letter-spacing: 0.3px;
}

.nav-pill:hover {
    color: var(--accent);
    background: rgba(255,255,255,0.6);
}

.nav-pill.active {
    background: white;
    color: var(--accent);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* ----------------------------------------------------------------
   ANNOUNCEMENT BAR
   ---------------------------------------------------------------- */
.announcement-bar {
    background: var(--text-main);
    color: white;
    padding: 7px 0;
    font-size: 0.75rem;
    overflow: hidden;
}

.marquee {
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    display: inline-block;
}

@keyframes marquee {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* ----------------------------------------------------------------
   LAYOUT — 2-column: sidebar left, main right
   ---------------------------------------------------------------- */
.app-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: calc(100vh - 64px);
    max-width: 1400px;
    margin: 0 auto;
}

/* ----------------------------------------------------------------
   SCIENCE SIDEBAR — Left column on all calculator pages
   ---------------------------------------------------------------- */
.science-sidebar {
    padding: 28px 24px;
    border-right: 1px solid var(--border);
    background: var(--sidebar-bg);
    height: calc(100vh - 64px);
    position: sticky;
    top: 64px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Video box */
.video-box {
    background: #0f172a;
    color: white;
    aspect-ratio: 16/9;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}

.video-box:hover {
    background: #1e293b;
}

/* Sidebar headings */
.sidebar-heading {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    color: var(--text-main);
}

/* Formula card */
.formula-card {
    background: var(--sidebar-science-bg);
    padding: 16px;
    border-radius: 10px;
    border-left: 4px solid var(--sidebar-science-border);
    flex-shrink: 0;
}

.formula-card label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--sidebar-science-text);
    margin-bottom: 8px;
}

.math {
    font-family: 'Courier New', monospace;
    font-weight: 800;
    color: var(--accent);
    font-size: 1.15rem;
    letter-spacing: -0.5px;
}

/* Sidebar science narrative */
.sidebar-science {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--text-dim);
    flex-grow: 1;
}

.sidebar-science h3 {
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 6px;
    margin-top: 16px;
}

.sidebar-science h3:first-child {
    margin-top: 0;
}

.sidebar-science ul {
    padding-left: 1.2rem;
    margin-top: 6px;
}

.sidebar-science li {
    margin-bottom: 4px;
}

/* ----------------------------------------------------------------
   SPONSOR SLOT — Standardized, sidebar bottom
   ---------------------------------------------------------------- */
.sponsor-slot {
    border: 1px dashed var(--border);
    border-radius: 10px;
    padding: 16px;
    flex-shrink: 0;
    background: white;
}

.sponsor-label {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.sponsor-content {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Placeholder state (no active sponsor) */
.sponsor-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}

.sponsor-cta {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid var(--accent);
    border-radius: 6px;
    transition: all 0.15s;
}

.sponsor-cta:hover {
    background: var(--accent);
    color: white;
}

/* Active sponsor state — swap content inside .sponsor-content */
.sponsor-active .sponsor-slot {
    border-style: solid;
    border-color: #e2e8f0;
    background: #f8fafc;
}

/* ----------------------------------------------------------------
   MAIN STAGE — Right column
   ---------------------------------------------------------------- */
.main-stage {
    padding: 3rem 3.5rem;
    overflow-y: auto;
}

/* ----------------------------------------------------------------
   CALCULATOR CARD (export-area)
   ---------------------------------------------------------------- */
.calc-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
}

/* Card header row */
.calc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.calc-icon {
    background: var(--icon-bg, var(--accent));
    color: white;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.calc-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.calc-subtitle {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ----------------------------------------------------------------
   INPUT GROUPS
   ---------------------------------------------------------------- */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.input-group input[type="number"],
.input-group input[type="text"],
.input-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-main);
    background: white;
    transition: border-color 0.15s;
    appearance: auto;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.input-group input[type="range"] {
    width: 100%;
    accent-color: var(--accent);
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 6px;
}

/* Optional: inline paired inputs (e.g. value + unit dropdown) */
.input-inline {
    display: flex;
    gap: 10px;
}

.input-inline input { flex: 2; }
.input-inline select { flex: 1; }

/* Optional: shaded sub-group (incremental/conditional reveal) */
.input-subgroup {
    background: #f8fafc;
    padding: 18px;
    border-radius: 10px;
    border: 1px dashed var(--border);
    margin-bottom: 20px;
}

/* ----------------------------------------------------------------
   RESULTS GRID
   ---------------------------------------------------------------- */
.result-grid {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.result-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.result-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.res-box {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    background: #f8fafc;
}

/* Highlighted primary result */
.res-box.highlight {
    border: 2px solid var(--accent);
    background: #eff6ff;
}

.stat-lbl {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.res-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.res-val.primary  { color: var(--accent); }
.res-val.success  { color: var(--success); }
.res-val.warning  { color: var(--warning); }
.res-val.danger   { color: var(--danger); }

/* ----------------------------------------------------------------
   STATUS BANNER — Below result grid
   ---------------------------------------------------------------- */
.status-banner {
    margin-top: 16px;
    padding: 14px 18px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
}

/* ----------------------------------------------------------------
   EXPORT WATERMARK
   ---------------------------------------------------------------- */
/* ----------------------------------------------------------------
   EXPORT BUTTON — Always below .calc-card
   ---------------------------------------------------------------- */
.export-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    font-family: inherit;
}

.export-btn:hover  { background: var(--accent-hover); }
.export-btn:active { transform: scale(0.99); }

/* ----------------------------------------------------------------
   SEO CONTENT SECTION — Optional, below export button
   ---------------------------------------------------------------- */
.seo-content {
    margin-top: 4rem;
    border-top: 1px solid var(--border);
    padding-top: 2.5rem;
    max-width: 780px;
    line-height: 1.8;
    color: var(--text-main);
}

.seo-content h2 {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.seo-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.seo-content p {
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.seo-tip {
    background: #f0fdf4;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #bbf7d0;
    margin-top: 1.5rem;
}

.seo-tip h4 { margin-top: 0; color: #166534; font-size: 0.95rem; }
.seo-tip p  { font-size: 0.875rem; color: #14532d; margin: 0; }

/* ----------------------------------------------------------------
   INDEX PAGE — Bubble grid (hub page only)
   ---------------------------------------------------------------- */
.bubble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.bubble-card {
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    background: white;
}

.bubble-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.bubble-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.bubble-card p {
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ----------------------------------------------------------------
   NAV SIDEBAR — Index page left nav
   ---------------------------------------------------------------- */
.nav-sidebar {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--border);
    background: #fafafa;
}

.nav-group h4 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 10px;
    margin-top: 2rem;
}

.nav-link {
    display: block;
    padding: 7px 0;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.15s;
}

.nav-link:hover { color: var(--accent); }

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
    .app-layout {
        grid-template-columns: 1fr;
    }

    .science-sidebar {
        height: auto;
        position: relative;
        top: 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .nav-sidebar {
        display: none;
    }

    .main-stage {
        padding: 1.75rem;
    }

    .result-grid.cols-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .app-header { padding: 0.875rem 1rem; }
    .version-badge { display: none; }
    .nav-pills { display: none; }
    .main-stage { padding: 1.25rem; }
    .calc-card { padding: 20px; }
    .result-grid.cols-2,
    .result-grid.cols-3 { grid-template-columns: 1fr; }
}

/* ================================================================
   SHARE MODAL — IT-Calculators.com
   Injected by shared.js on first captureAndShare() call.
   ================================================================ */

/* Overlay */
.itc-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.itc-modal-overlay.itc-modal-open {
    opacity: 1;
}

/* Modal card */
.itc-modal {
    background: white;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateY(16px);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.itc-modal-overlay.itc-modal-open .itc-modal {
    transform: translateY(0);
}

/* Modal header */
.itc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.itc-modal-title {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    color: #0f172a;
}

.itc-modal-sub {
    font-size: 0.8rem;
    color: #64748b;
    margin: 4px 0 0;
}

.itc-modal-close {
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.itc-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Preview image */
.itc-preview-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    line-height: 0; /* remove gap under img */
}

.itc-preview-img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.itc-preview-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15, 23, 42, 0.7);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Share button grid — 2 columns on desktop, 1 on mobile */
.itc-share-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Individual share button */
.itc-share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
    text-align: center;
}

.itc-share-btn span {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.itc-share-btn small {
    font-size: 0.68rem;
    color: #94a3b8;
    line-height: 1;
}

.itc-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Button color accents */
.itc-btn-download  { border-color: #bbf7d0; background: #f0fdf4; }
.itc-btn-download svg  { color: #16a34a; }
.itc-btn-download:hover { border-color: #16a34a; background: #dcfce7; }

.itc-btn-copy-img  { border-color: #bfdbfe; background: #eff6ff; }
.itc-btn-copy-img svg  { color: #2563eb; }
.itc-btn-copy-img:hover { border-color: #2563eb; background: #dbeafe; }

.itc-btn-copy-link { border-color: #e9d5ff; background: #faf5ff; }
.itc-btn-copy-link svg { color: #7c3aed; }
.itc-btn-copy-link:hover { border-color: #7c3aed; background: #ede9fe; }

.itc-btn-twitter   { border-color: #e2e8f0; background: #f8fafc; }
.itc-btn-twitter svg   { color: #0f172a; }
.itc-btn-twitter:hover { border-color: #0f172a; background: #f1f5f9; }

.itc-btn-linkedin  { border-color: #bfdbfe; background: #eff6ff; }
.itc-btn-linkedin svg  { color: #0a66c2; }
.itc-btn-linkedin:hover { border-color: #0a66c2; background: #dbeafe; }

.itc-btn-sms       { border-color: #bbf7d0; background: #f0fdf4; }
.itc-btn-sms svg   { color: #059669; }
.itc-btn-sms:hover { border-color: #059669; background: #dcfce7; }

/* Native share button (full-width, mobile) */
.itc-native-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #0f172a;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

.itc-native-share-btn:hover { background: #1e293b; }

/* Toast notification */
.itc-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: #0f172a;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    z-index: 1100;
}

.itc-toast.itc-toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.itc-toast.itc-toast-warn { background: #b45309; }

/* Mobile adjustments */
@media (max-width: 500px) {
    .itc-modal { padding: 20px; border-radius: 16px; }
    .itc-share-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .itc-share-btn { padding: 12px 8px; }
}

/* ================================================================
   SITE FOOTER — standardized across all pages
   Replace inline footer styles with class="site-footer"
   ================================================================ */

.site-footer {
    margin-top: 5rem;
    border-top: 1px solid var(--border);
    padding: 32px 40px 24px;
    background: var(--bg);
}

.site-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
}

.footer-copy {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.15s;
}

.footer-links a:hover { color: var(--text-main); }

/* Disclaimer notice line — second row of footer */
.footer-disclaimer-line {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin: 0;
    border-top: 1px solid var(--border);
    padding-top: 12px;
    line-height: 1.5;
}

.footer-disclaimer-line a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.footer-disclaimer-line a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .site-footer { padding: 24px 16px; }
    .site-footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer-links { flex-wrap: wrap; gap: 14px; }
}

/* ================================================================
   SIDEBAR DISCLAIMER CALLOUT
   Drop inside .science-sidebar above .sponsor-slot on calc pages
   Usage: <div class="disclaimer-callout">...</div>
   ================================================================ */

.disclaimer-callout {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.74rem;
    line-height: 1.6;
    color: #78350f;
}

.disclaimer-callout svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #d97706;
}

.disclaimer-callout p {
    margin: 0;
}

.disclaimer-callout a {
    color: #b45309;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.disclaimer-callout a:hover { text-decoration: underline; }
