body {
    font-family: system-ui, sans-serif;
    max-width: 800px;
    margin: auto;
    padding: 1rem;
    background: #fefefe;
    color: #222;
}
header {
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}
.tab-bar {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.tab {
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    text-decoration: none;
    border-radius: 4px 4px 0 0;
    border: 1px solid #ddd;
    border-bottom: 3px solid transparent;
    color: #333;
}
.tab:hover {
    background: #e0e0e0;
}
.tab.active {
    background: white;
    border-bottom: 3px solid #c00;
    font-weight: bold;
}
.uutislista {
    list-style: none;
    padding: 0;
}
.uutislista li {
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 1px solid #eee;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.kategoria-badge {
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8em;
    white-space: nowrap;
}
.pvm {
    margin-left: auto;
    color: #666;
    font-size: 0.9em;
}
.meta {
    margin: 1rem 0;
    color: #666;
}
.tiivistelma {
    background: #f9f9f9;
    padding: 1rem;
    border-left: 4px solid #c00;
    margin: 1.5rem 0;
}
.analyysi-verho {
    background: #fffdf0;
    border: 2px dashed #ddd;
    padding: 1rem;
    cursor: pointer;
    margin: 2rem 0;
}
#analyysi-sisalto {
    background: #f0f0f0;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
}
footer {
    margin-top: 3rem;
    color: #aaa;
    font-size: 0.9em;
}
.perustelu {
    background: #f9f9f9;
    padding: 0.8rem;
    border-radius: 4px;
}
.lahde-lista ul {
    list-style: none;
    padding: 0;
}
.lahde-lista li {
    margin-bottom: 0.4rem;
}
.lahde-lista a {
    color: #0066cc;
    text-decoration: none;
}
.lahde-lista a:hover {
    text-decoration: underline;
}
.vertailu {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}
.vertailu h4 {
    margin-top: 0;
}

/* Logo + otsikko -asettelu */
.sivuston-nimi {
    display: flex;
    align-items: center;
    justify-content: center;   /* keskitä koko paketti */
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.sivuston-logo {
    flex-shrink: 0;
}
.sivuston-teksti {
    text-align: left;          /* otsikko ja kuvaus vasemmalle tasattuina */
}
.sivuston-teksti h1 {
    margin: 0 0 0.3rem 0;
}
.sivuston-teksti p {
    margin: 0;
    color: #666;
}

/* Keskitetyt otsikot artikkelisivulle */
.keskita {
    text-align: center;
}