/* EdullinenSähkösopimus.fi — v3 */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --blue: #1a56db;
    --blue-dark: #1340a8;
    --blue-light: #eff4ff;
    --green: #16803c;
    --green-light: #ecfdf3;
    --red: #dc2828;
    --text: #111827;
    --text-mid: #1f2937;
    --text-muted: #4b5563;
    --bg: #fff;
    --bg-alt: #f9fafb;
    --border: #e5e7eb;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.6;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.w { max-width: 1040px; margin: 0 auto; padding: 0 16px; }

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue);
    margin-bottom: 8px;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 28px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: background 0.15s;
}

.btn:hover { text-decoration: none; }

.btn-primary {
    background: var(--blue);
    color: #fff;
}

.btn-primary:hover { background: var(--blue-dark); }

.btn-ghost {
    background: transparent;
    color: var(--text-mid);
    border: 1px solid var(--border);
}

.btn-ghost:hover { background: var(--bg-alt); }

.btn-lg { padding: 14px 36px; font-size: 1rem; }

/* ========================
   HEADER
   ======================== */
.hdr {
    height: 56px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.hdr .w {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text);
    text-decoration: none;
}

.logo span { color: var(--blue); }
.logo:hover { text-decoration: none; }

.nav-desktop { display: flex; gap: 28px; }
.nav-desktop a {
    color: var(--text-mid);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
}
.nav-desktop a:hover { color: var(--blue); text-decoration: none; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
}

.nav-mobile {
    display: none;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 14px;
}

.nav-mobile.open { display: block; }

.nav-mobile a {
    display: block;
    color: var(--text-mid);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--blue); }

/* ========================
   HERO
   ======================== */
.hero {
    background: var(--bg);
    color: var(--text);
    padding: 48px 0 44px;
    border-bottom: 1px solid var(--border);
}

.hero-bg { display: none; }

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green);
    background: var(--green-light);
    border: none;
    padding: 4px 12px;
    margin-bottom: 14px;
    border-radius: 3px;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.hero h1 span { color: var(--blue); }

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 460px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero card */
.hero-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 6px;
}

.hero-card-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 3px;
    background: var(--bg);
    border-left: 3px solid transparent;
    border-radius: 3px;
}

.hero-card-row.best {
    background: var(--green-light);
    border-left-color: var(--green);
}

.hero-card-row.dim {
    background: transparent;
    opacity: 0.4;
}

.hero-card-name { font-size: 0.85rem; font-weight: 600; }
.hero-card-price { font-size: 1rem; font-weight: 800; }
.hero-card-price small { font-size: 0.72rem; font-weight: 500; opacity: 0.6; }

/* ========================
   YHTIÖT — logot
   ======================== */
.partners {
    padding: 20px 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.partners-label {
    text-align: center;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    margin-bottom: 12px;
    font-weight: 700;
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.partners-row span {
    font-size: 0.82rem;
    font-weight: 700;
    color: #9ca3af;
}

.partners-row img {
    height: 24px;
    opacity: 0.45;
    filter: grayscale(100%);
    transition: all 0.2s;
}

.partners-row img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ========================
   LASKURI / VERTAILU
   ======================== */
.calc {
    padding: 48px 0 40px;
    background: var(--bg);
}

.calc-intro {
    text-align: center;
    margin-bottom: 28px;
}

.calc-intro h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.calc-intro p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

.calc-box {
    border: 1px solid var(--border);
    background: var(--bg-alt);
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.calc-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step { display: flex; flex-direction: column; }
.step-off { opacity: 0.25; pointer-events: none; }

.step-n {
    width: 28px;
    height: 28px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.step-off .step-n { background: #d1d5db; }

.step-q {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.choices { display: flex; flex-wrap: wrap; gap: 5px; }

.ch {
    padding: 8px 14px;
    border: 1px solid var(--border);
    background: var(--bg);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text);
    font-family: inherit;
    border-radius: 4px;
    transition: all 0.12s;
}

.ch:hover { border-color: var(--blue); background: var(--blue-light); }

.ch.selected {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
    font-weight: 700;
}

/* Suodattimet */
.filters {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    border-radius: 4px;
    overflow: hidden;
}

.filter-btn {
    flex: 1;
    padding: 10px 18px;
    background: none;
    border: none;
    border-right: 1px solid var(--border);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    font-family: inherit;
}

.filter-btn:last-child { border-right: none; }
.filter-btn:hover { color: var(--text); background: #f3f4f6; }

.filter-btn.active {
    background: var(--bg);
    color: var(--blue);
    font-weight: 700;
    box-shadow: inset 0 -2px 0 var(--blue);
}

/* Placeholder */
.calc-ph {
    text-align: center;
    color: #d1d5db;
    padding: 48px 20px;
}

.calc-ph-icon { font-size: 1.8rem; margin-bottom: 10px; opacity: 0.5; }
.calc-ph-text { font-size: 0.9rem; }

/* Säästölaskuri */
.savings-box {
    background: var(--bg-alt);
    border: 2px solid var(--blue);
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 20px;
}

.savings-label {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

.savings-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.savings-field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-mid);
}

.savings-input-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.savings-help {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.savings-input {
    flex: 1;
    max-width: 200px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
}

.savings-input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(26, 86, 219, 0.15);
}

.savings-btn {
    padding: 10px 20px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

.savings-btn:hover { background: var(--blue-dark); }

.savings-positive {
    margin-top: 16px;
    padding: 16px 20px;
    background: var(--green-light);
    border: 1px solid var(--green);
    border-radius: 4px;
}

.savings-ok {
    margin-top: 16px;
    padding: 16px 20px;
    background: var(--blue-light);
    border: 1px solid var(--blue);
    border-radius: 4px;
}

.savings-amount {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.savings-positive .savings-amount { color: var(--green); }

.savings-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.savings-error {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--red);
}

@media (max-width: 480px) {
    .savings-input-row { flex-direction: column; align-items: stretch; }
    .savings-input { max-width: 100%; }
    .savings-field { width: 100%; }
}

/* Tulokset */
.r-header {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.r-kulutus {
    font-size: 0.84rem;
    color: var(--text-muted);
    font-weight: 500;
}

.r-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.r-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    background: var(--bg);
    position: relative;
    border-radius: 6px;
    transition: box-shadow 0.15s;
}

.r-card:hover { box-shadow: 0 1px 6px rgba(0,0,0,0.06); }

.r-card-best {
    border: 2px solid var(--green);
    background: var(--green-light);
}

.r-badge {
    position: absolute;
    top: -1px;
    right: 16px;
    background: var(--green);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 3px 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 0 0 4px 4px;
}

.r-card-top { display: flex; flex-direction: column; gap: 4px; }
.r-card-logo { height: 34px; width: auto; max-width: 150px; object-fit: contain; object-position: left; }
.r-card-yhtio { font-weight: 700; font-size: 1rem; }
.r-card-nimi { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

.r-card-hinta {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
}

.r-card-hinta span { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }
.r-card-best .r-card-hinta { color: var(--green); }

.r-card-kwh { font-size: 0.7rem; color: #9ca3af; margin-top: 2px; }

.r-card-details { display: flex; flex-direction: column; gap: 2px; }
.r-card-details span { font-size: 0.82rem; color: var(--text-muted); }

.r-card-btn {
    display: inline-block;
    padding: 10px 22px;
    background: var(--blue);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    border-radius: 4px;
    transition: background 0.15s;
}

.r-card-btn:hover { background: var(--blue-dark); text-decoration: none; }

.r-foot {
    font-size: 0.7rem;
    color: #d1d5db;
    margin-top: 14px;
    line-height: 1.6;
}

/* ========================
   MITEN TOIMII
   ======================== */
.how {
    padding: 48px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.how h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 32px;
}

.how-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.how-item { flex: 1; max-width: 280px; text-align: center; }

.how-arrow {
    color: #d1d5db;
    font-size: 1.3rem;
    padding-top: 20px;
    flex-shrink: 0;
}

.how-num {
    width: 40px;
    height: 40px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    margin: 0 auto 12px;
}

.how-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.how-item p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* ========================
   MIKSI ME
   ======================== */
.why {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.why h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 32px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-item { text-align: center; }

.why-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.why-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* ========================
   VS-TAULUKKO
   ======================== */
.vs {
    padding: 48px 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.vs h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.vs-intro {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.vs-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.vs-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    background: var(--bg);
    border-radius: 6px;
    overflow: hidden;
}

.vs-table th,
.vs-table td {
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.88rem;
}

.vs-table thead th {
    background: var(--text);
    color: #fff;
    font-weight: 700;
    font-size: 0.84rem;
    border-bottom: none;
}

.vs-table td:first-child {
    font-weight: 700;
    color: var(--text-mid);
    width: 150px;
}

.vs-table tbody tr:hover { background: #f9fafb; }

/* ========================
   CTA BÄNNERI
   ======================== */
.cta-banner {
    padding: 48px 0;
    background: var(--text);
    color: #fff;
    text-align: center;
}

.cta-banner h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-banner p {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.cta-banner .btn-primary {
    background: var(--blue);
    color: #fff;
}

.cta-banner .btn-primary:hover { background: var(--blue-dark); }

/* ========================
   FOOTER
   ======================== */
.ftr {
    padding: 32px 0 20px;
    background: #111827;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.ftr-logo {
    font-weight: 800;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 8px;
}

.ftr-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

.ftr-grid strong {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.ftr-grid p { line-height: 1.65; max-width: 360px; }

.ftr-grid a {
    display: block;
    color: rgba(255,255,255,0.35);
    margin-bottom: 5px;
    text-decoration: none;
}

.ftr-grid a:hover { color: #fff; }

.ftr-btm {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 14px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
}

.ftr-btm span { margin-left: 10px; }

/* ========================
   OPPAAT (etusivun linkit)
   ======================== */
.guides {
    padding: 48px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.guides h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.guide-card {
    display: block;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 24px;
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.15s, border-color 0.15s;
}

.guide-card:hover {
    border-color: var(--blue);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-decoration: none;
}

.guide-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.guide-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 12px;
}

.guide-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--blue);
}

@media (max-width: 768px) {
    .guides-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ========================
   ARTIKKELIT
   ======================== */
.article {
    padding: 48px 0;
    background: var(--bg);
}

.article .w {
    max-width: 720px;
}

.article-header {
    margin-bottom: 32px;
}

.article-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
}

.article-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-body h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: 36px;
    margin-bottom: 12px;
}

.article-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px;
}

.article-body p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-mid);
}

.article-body ul,
.article-body ol {
    margin: 0 0 16px 24px;
    color: var(--text-mid);
    line-height: 1.7;
}

.article-body li {
    margin-bottom: 6px;
}

.article-body .vs-table {
    margin: 16px 0 20px;
}

.article-cta {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 28px;
    text-align: center;
    margin-top: 36px;
}

.article-cta h3 {
    margin-top: 0;
    font-size: 1.15rem;
}

.article-cta p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero { padding: 36px 0; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }

    .partners-row img {
        opacity: 0.7;
        filter: grayscale(0%);
    }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .nav-toggle { display: block; }

    .hero h1 { font-size: 1.6rem; }

    .calc-form { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .r-card {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px;
    }

    .r-card-top { flex-direction: row; align-items: center; gap: 10px; }
    .r-card-logo { height: 26px; }
    .r-card-nimi { margin-top: 0; }

    .r-card-mid { display: flex; align-items: baseline; gap: 8px; }

    .r-card-details {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px 12px;
    }

    .r-card-btn { text-align: center; display: block; padding: 12px; }

    .how-grid { flex-direction: column; align-items: center; }
    .how-arrow { transform: rotate(90deg); padding: 0; }

    .why-grid { grid-template-columns: 1fr; gap: 20px; }

    .vs-table { font-size: 0.82rem; }
    .vs-table td:first-child { width: auto; }

    .ftr-grid { grid-template-columns: 1fr; gap: 20px; }

    .filters { flex-direction: column; }
    .filter-btn { text-align: center; border-right: none; border-bottom: 1px solid var(--border); }
    .filter-btn:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
    .hero { padding: 28px 0; }
    .hero h1 { font-size: 1.35rem; }
    .hero-sub { font-size: 0.92rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; }

    .calc { padding: 32px 0 28px; }
    .calc-box { padding: 12px; }
    .calc-form { grid-template-columns: 1fr; }
    .calc-intro h2 { font-size: 1.2rem; }

    .partners-row { gap: 10px 14px; }
    .partners-row img { height: 18px; }

    .r-card { padding: 14px; }
    .r-card-hinta { font-size: 1.2rem; }
    .r-card-logo { height: 22px; }

    .savings-box { padding: 16px; }
    .savings-input-row { flex-direction: column; align-items: stretch; }
    .savings-input { max-width: 100%; }
    .savings-field { width: 100%; }

    .vs-table { font-size: 0.75rem; min-width: 0; }
    .vs-table th, .vs-table td { padding: 8px 10px; }
    .vs-table td:first-child { width: auto; }

    .how { padding: 32px 0; }
    .why { padding: 32px 0; }
    .vs { padding: 32px 0; }
    .cta-banner { padding: 32px 0; }
    .cta-banner h2 { font-size: 1.2rem; }

    .article-header h1 { font-size: 1.3rem; }
    .article-cta { padding: 20px; }

    .ftr-btm span { display: block; margin-left: 0; margin-top: 4px; }
}
