/* Font lokal Inter */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Apply font */
body {
    font-family: var(--font-base);
    font-size: 1rem;
    line-height: 1.5;
    color: #111;
    background-color: #fff;
}


.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--spacing);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.entry-title a {
    color: var(--color-primary);
}

.entry-meta {
    font-size: 0.875rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

article {
    margin-bottom: 2rem;
}
