.blog-content {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.blog-header {
    text-align: center;
    padding: 60px 0 30px;
}
.blog-header h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}
.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}
.blog-tag {
    display: inline-block;
    background-color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}
.blog-featured-image {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-featured-image img,
.blog-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.blog-image {
    margin: 30px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.blog-text {
    max-width: 800px;
    margin: 0 auto;
}
.blog-text h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #222;
}
.blog-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
}
blockquote {
    background-color: #e9e5ff;
    border-left: 0;
    padding: 30px;
    margin: 30px 0;
    border-radius: 16px;
    position: relative;
    text-align: center;
}
blockquote > p {
    font-style: italic;
    font-size: 22px !important; 
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
.tweet-button {
    text-align: center;
}
.tweet-button a {
    display: inline-block;
    color: #6c63ff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
}
.tweet-button a:hover {
    color: #4b45b3;
}
.blog-tags {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.blog-tags span {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.blog-tags ul {
    display: flex;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}
.blog-tags li {
    margin-right: 10px;
    margin-bottom: 10px;
}
.blog-tags a {
    display: block;
    padding: 5px 12px;
    background-color: #f0f0f0;
    color: #555;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
}
.blog-tags a:hover {
    background-color: #0066cc;
    color: white;
}
.related-posts {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Kanit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.post-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.post-image {
    height: 200px;
    overflow: hidden;
}
.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.post-card:hover .post-image img {
    transform: scale(1.05);
}
.post-date {
    font-size: 14px;
    color: #777;
    padding: 15px 20px 0;
}
.post-card h3 {
    padding: 0 20px 20px;
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}
.post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-header h1 {
        font-size: 28px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
