/* Custom Single Post Layout */
.single-post-wrapper.pad-v {
    padding-top: 30px;
    padding-bottom: 50px;
}

/* Header & Title */
.fc-post-title {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

/* Meta Bar */
.fc-post-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.fc-meta-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.fc-post-cat {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}
.fc-post-cat:hover {
    text-decoration: underline;
}

.fc-meta-sep {
    color: #aaa;
}

/* Badge Ngày cập nhật */
.fc-updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #9d9d9d; /* Màu xám xanh giống ảnh */
    color: #ffffff;
    font-size: 12px;
    font-style: italic;
    padding: 3px 12px;
    border-radius: 4px;
    font-weight: 400;
}

/* Social Share Links */
.fc-share-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-share-label {
    color: #777;
    font-size: 13px;
}

.fc-share-icon {
    color: #555;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fc-share-icon:hover {
    color: var(--primary-color);
}

/* Đường gạch ngang phân cách */
.fc-header-divider {
    border: 0;
    height: 1px;
    background: #e5e5e5;
    margin: 10px 0 25px 0;
}

/* Stylings cho Bảng (Table) trong nội dung bài viết */
.fc-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
}

.fc-post-content table th,
.fc-post-content table td {
    border: 1px solid #1a1a1a; /* Viền đen rõ nét giống mẫu */
    padding: 10px 14px;
    text-align: left;
    vertical-align: middle;
}

.fc-post-content table th {
    background-color: #f9f9f9;
    font-weight: bold;
    color: #111;
}

.fc-post-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #111;
}

.fc-post-content p {
    line-height: 1.7;
    color: #333;
    font-size: 16px;
    margin-bottom: 18px;
}

/* Responsive di động */
@media (max-width: 767px) {
    .fc-post-title {
        font-size: 24px;
    }
    
    .fc-post-meta-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fc-meta-right {
        margin-top: 5px;
    }
}