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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f5f7;
    color: #222;
}

a {
    color: #0d6efd;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo-text {
    font-weight: 700;
    font-size: 20px;
    color: #111827;
}

.main-nav a {
    margin-left: 18px;
    font-size: 14px;
    color: #374151;
}

.main-nav a:hover {
    color: #0d6efd;
}

/* Layout */

.site-main {
    padding: 20px 0 40px;
}

.layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

/* Post cards */

.post-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.post-title {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #111827;
}

.post-meta {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.post-meta span {
    margin-right: 12px;
}

.post-excerpt {
    font-size: 14px;
    color: #374151;
    margin-bottom: 10px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    border: none;
    cursor: pointer;
}

.btn-read {
    background: #0d6efd;
    color: #ffffff;
}

.btn-read:hover {
    background: #0b5ed7;
}

/* Full story */

.post-full {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 22px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.post-full-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.post-full-content {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #111827;
}

.post-tags {
    margin-top: 15px;
    font-size: 13px;
    color: #4b5563;
}

/* Sidebar */

.sidebar .widget {
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 14px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.sidebar .widget h3 {
    font-size: 15px;
    margin-bottom: 10px;
}

/* Footer */

.site-footer {
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

.footer-inner {
    padding: 12px 0;
    font-size: 13px;
    color: #6b7280;
}

/* Responsive */

@media (max-width: 900px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none; /* oddiy variant, keyin burger qo‘shsa bo‘ladi */
    }
}