.single-post {
    max-width: 1100px; /* Szersza zawartość */
    margin: 0 auto;
    padding: 150px 20px 50px;
}

.single-post article {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.post-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}


.post-meta {
    font-size: 16px;
    color: #777;
    text-align: center;
    margin-bottom: 25px;
}

.post-thumbnail {
    text-align: center;
    margin-bottom: 30px;
}

.post-thumbnail img {
    max-width: 100%;
    border-radius: 10px;
}

.post-content {
    font-size: 20px; /* Większa czcionka */
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 1000px; /* Szersza zawartość */
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .single-post {
        max-width: 95%;
    }

    .post-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .single-post {
        padding: 100px 15px 30px;
    }

    .post-title {
        font-size: 28px;
    }

    .post-content {
        font-size: 18px;
        max-width: 100%;
    }
}
.blog-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 20px 50px;
}

.blog-content h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
}

.posts-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dwie kolumny */
    gap: 30px;
}

article {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

article a {
	color: #479cd8;
}

article ul{
	list-style-type: disc;
	margin-left:30px;
}

article:hover {
    transform: translateY(-5px);
}

article h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

article h3 {
    font-size: 24px;
	margin-top:20px;
    margin-bottom: 10px;
}

article h2 a {
    text-decoration: none;
    color: #333;
}

article h2 a:hover {
    color: #0073e6;
}

.post-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.post-thumbnail {
    text-align: center;
    margin-bottom: 20px;
}

.post-thumbnail img {
    max-width: 100%;
    border-radius: 10px;
}

.post-excerpt {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    background: #0073e6;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.read-more:hover {
    background: #005bb5;
}

.pagination {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .posts-list {
        grid-template-columns: 1fr; /* Jedna kolumna na mniejszych ekranach */
    }
}