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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.4;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
}

header {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #00a3e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111111;
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.post-card {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
}

.thumbnail-wrapper {
    position: relative;
    flex-shrink: 0;
}

.post-card img {
    width: 120px;
    height: 75px;
    object-fit: cover;
    border-radius: 12px;
    background-color: #f0f0f0;
}

.post-info {
    display: flex;
    flex-direction: column;
}

.post-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.3;
}

.post-meta {
    font-size: 12px;
    color: #757575;
}

/* Style Detail Artikel & Lainnya */
.back-link {
    display: inline-block;
    margin-bottom: 15px;
    color: #00a3e0;
    text-decoration: none;
    font-size: 14px;
}

.single-post-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.single-post-meta {
    font-size: 13px;
    color: #757575;
    margin-bottom: 20px;
}

.featured-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.post-content {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 30px;
    margin-bottom: 25px;
}

.post-content p {
    margin-bottom: 15px;
}

.other-posts-section {
    margin-top: 25px;
}
