/* === Blog Detail === */
.blog-detail {
    padding-bottom: 40px;
}

.blog-detail__cover {
    width: 100%;
    max-height: 280px;
    overflow: hidden;
}

.blog-detail__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-detail__body {
    padding: 16px;
}

.blog-detail__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 10px 0 12px;
    color: var(--title-color, #222);
}

.blog-detail__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color, #eee);
}

.blog-detail__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--content-color, #444);
}

.blog-detail__text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 12px 0;
}

.blog-detail__text p {
    margin-bottom: 12px;
}

.blog-detail__text h2,
.blog-detail__text h3,
.blog-detail__text h4 {
    margin: 20px 0 8px;
    font-weight: 600;
    color: var(--title-color, #222);
}
