body {
    font-family: 'Geist', sans-serif;
    background-color: #FFFFFF;
}

.blog-detail-container {
    max-width: 853px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 4px 12px;
    background: #EBF1FD;
    border-radius: 16px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1583D0;
    text-transform: uppercase;
}

.blog-title {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: #1D2939;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1D2939;
}

.post-date {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    color: #667085;
}

.blog-image {
    width: 100%;
    height: 452px;
    border-radius: 16px;
    margin-bottom: 32px;
    object-fit: cover;
}

.blog-content {
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #344054;
}

.blog-content h2 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #1D2939;
    margin: 40px 0 16px;
}

.blog-content p {
    margin-bottom: 24px;
}

.blog-content a {
    color: #1583D0;
    text-decoration: underline;
}

.blog-content blockquote {
    padding: 24px;
    background: #F9FAFB;
    border-left: 4px solid #1583D0;
    margin: 32px 0;
}

.quote-text {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 24px;
    font-style: italic;
    line-height: 32px;
    color: #1D2939;
    margin-bottom: 16px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    color: #667085;
}

.ceo-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Related Posts Section */
.related-posts-section {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid #EAECF0;
}

.section-title {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #1D2939;
    margin-bottom: 32px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.related-post-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-post-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

.related-post-title {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1D2939;
    line-height: 28px;
}

.read-more-link {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1583D0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more-link:hover {
    text-decoration: underline;
}
