

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.blog-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.latest-post {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.latest-post-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.latest-post-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.latest-post-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.latest-post-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.latest-post-title a:hover {
    color: #ff6300;
}

.latest-post-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.latest-post-excerpt {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    font-size: 16px;
    color: hsl(204, 91%, 53%);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #333;
}

.other-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-post {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    width: calc(33.333% - 20px);
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post-content {
    padding: 20px;
}

.blog-post-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-post-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: #ff6300;
}

.blog-post-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.blog-post-excerpt {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .latest-post {
        flex-direction: column;
    }

    .blog-post {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .latest-post, .blog-post {
        width: 100%;
    }
}


.article {
    margin-bottom: 40px;
}

.article-title {
    font-size: 32px;
    color: #333;
    margin-top: 0;
    text-align: center;
}

.article-meta {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-bottom: 20px;
}

.article-content {
    text-align: justify;
}

.article-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 28px;
    }

    .article-meta {
        font-size: 12px;
    }
}