/*
Theme Name: Teroitusopas
Theme URI: https://teroitusopas.fi
Author: Teroitusopas
Description: Kevyt oma WordPress-teema Teroitusopas.fi-sivustolle.
Version: 0.1
Text Domain: teroitusopas
*/

:root {
    --content-width: 760px;
    --page-width: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    color: #1f2933;
    background: #ffffff;
}

a {
    color: inherit;
}

.site-header {
    border-bottom: 1px solid #e5e7eb;
}

.site-header__inner,
.site-footer__inner {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 1rem 1.25rem;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-branding {
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
}

.site-navigation ul {
    display: flex;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-navigation a {
    text-decoration: none;
}

.site-main {
    min-height: 70vh;
}

.content-area {
    width: min(var(--content-width), calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 3rem 0;
}

.entry-title {
    margin-top: 0;
    line-height: 1.15;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.entry-content {
    font-size: 1.05rem;
}

.entry-content h2 {
    margin-top: 2.5rem;
    line-height: 1.25;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

.site-footer {
    margin-top: 4rem;
    border-top: 1px solid #e5e7eb;
    color: #667085;
}

@media (max-width: 700px) {
    .site-header__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }

    .site-navigation ul {
        flex-wrap: wrap;
    }

    .content-area {
        padding-top: 2rem;
    }
}
