/*
Theme Name: Sprdacina Portal
Author: Tvoj Portal
Version: 1.0
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #111;
}

a {
    color: #111;
    text-decoration: none;
}

.site-header {
    background: #ffd400;
    padding: 20px 0;
    border-bottom: 3px solid #111;
}

.container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: bold;
}

.main-nav a {
    margin-left: 20px;
    font-weight: bold;
}

.layout {
    display: grid;
    grid-template-columns: 220px 1fr 280px;
    gap: 25px;
    margin-top: 30px;
}

.sidebar,
.content,
.right-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.post-card {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.post-card img {
    width: 260px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

.post-card h2 {
    margin-top: 0;
}

.btn-yellow {
    background: #ffd400;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: bold;
    border: 2px solid #111;
}

.site-footer {
    margin-top: 40px;
    background: #111;
    color: #fff;
    text-align: center;
    padding: 25px;
}

.form-box input,
.form-box textarea,
.form-box select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
}

@media(max-width: 900px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .post-card {
        flex-direction: column;
    }

    .post-card img {
        width: 100%;
        height: 220px;
    }
}