/* ==========================================================================
   TEXT BLOCK / SINGLE POST CONTENT - YẾN SÀO YẾN LAN
   ========================================================================== */

.text-block {
    background-color: #ffffff;
    padding: 40px 0 60px;
}

.text-block__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.text-block__title {
    color: var(--text-heading, #2F2B29);
    font-family: var(--font-primary, 'Parastoo', serif);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.35;
}

.text-block__meta-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--color-neutral, #EFE8DF);
    font-family: var(--font-secondary, 'Be Vietnam Pro', sans-serif);
    font-size: 14px;
    color: var(--text-grey, #777777);
}

.text-block__meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.text-block__meta-left a {
    color: var(--color-accent-2, #8A5038);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.text-block__meta-left a:hover {
    text-decoration: underline;
}

.text-block__meta-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.text-block__meta-right a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.text-block__meta-right a:hover {
    transform: translateY(-2px);
}

.text-block__wysiwyg {
    line-height: 1.85;
    color: var(--text-body, #5C5752);
    font-family: var(--font-secondary, 'Be Vietnam Pro', sans-serif);
    font-size: 16px;
}

.text-block__wysiwyg p {
    margin-bottom: 20px;
}

.text-block__wysiwyg img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
    display: block;
}

.text-block__wysiwyg h2,
.text-block__wysiwyg h3,
.text-block__wysiwyg h4 {
    color: var(--text-heading, #2F2B29);
    font-family: var(--font-primary, 'Parastoo', serif);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.text-block__wysiwyg h2 {
    font-size: 26px;
}

.text-block__wysiwyg h3 {
    font-size: 22px;
}

.text-block__wysiwyg h4 {
    font-size: 18px;
}

.text-block__wysiwyg blockquote {
    border-left: 4px solid var(--color-accent-2, #8A5038);
    padding: 15px 20px;
    margin: 25px 0;
    background-color: var(--color-bg-main, #FFF5E8);
    font-style: italic;
    color: var(--text-heading, #2F2B29);
}

.text-block__wysiwyg ul,
.text-block__wysiwyg ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.text-block__wysiwyg li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .text-block__meta-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .text-block__title {
        font-size: 24px;
    }
}
