.container {
    width: min(1200px, 92%);
    margin: auto;
}

.site-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 25px;
    font-weight: bold;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.site-content {
    min-height: 70vh;
}

.hero {
    padding: 100px 0;
    text-align: center;
    background: #111;
    color: #fff;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.latest-posts {
    padding: 60px 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.post-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
}

.post-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-content h2 {
    margin-bottom: 15px;
}

.post-content p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
}

.single-post,
.page-content {
    background: #fff;
    padding: 35px;
    margin: 50px 0;
    border-radius: 15px;
}

.single-content,
.page-content {
    line-height: 2;
}

.post-meta {
    color: #888;
    margin: 15px 0 25px;
}

.site-footer {
    background: #111;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

@media (max-width: 768px) {

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .site-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 35px;
    }
}

.developer-info-link {
    display: block;
    margin-top: 8px;
    font-size: 10px;
    color: #999;
}

.developer-info-link:hover {
    color: #fff;
}


.developer-info {
    margin-top: 30px;
    line-height: 2;
}

.developer-info h2 {
    margin-bottom: 15px;
}

.developer-info strong {
    direction: ltr;
    display: inline-block;
}