/* Entrefios - Single Post Styles */
article.blog-content {
    max-width: 720px;
}

/* Headings */
article.blog-content h1,
article.blog-content h2,
article.blog-content h3,
article.blog-content h4,
article.blog-content h5,
article.blog-content h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.6em;
    margin-bottom: 0.5em;
    color: #2D2D2D;
}
article.blog-content h1 { font-size: 2rem; }
article.blog-content h2 { font-size: 1.6rem; }
article.blog-content h3 { font-size: 1.35rem; }
article.blog-content h4 { font-size: 1.15rem; }
article.blog-content h5 { font-size: 1rem; }
article.blog-content h6 { font-size: 0.95rem; }

/* Paragraphs */
article.blog-content p {
    margin-bottom: 1em;
    line-height: 1.8;
}

/* Lists */
article.blog-content ul,
article.blog-content ol {
    margin-bottom: 1em;
    padding-left: 1.6em;
}
article.blog-content li {
    margin-bottom: 0.4em;
    line-height: 1.7;
}
article.blog-content ul li {
    list-style-type: disc;
}
article.blog-content ol li {
    list-style-type: decimal;
}

/* Links */
article.blog-content a {
    color: #c87089;
    text-decoration: underline;
}
article.blog-content a:hover {
    color: #a5566e;
}

/* Blockquote */
article.blog-content blockquote {
    border-left: 4px solid #c87089;
    padding: 0.6em 1.2em;
    margin: 1.8em 0;
    background: #fdf7f9;
    font-style: italic;
    color: #666;
    border-radius: 0 6px 6px 0;
}

/* Images */
article.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1em 0;
    display: block;
}

/* Tables */
article.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
    overflow-x: auto;
    display: block;
}
article.blog-content table th,
article.blog-content table td {
    padding: 0.6em 1em;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}
article.blog-content table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #2D2D2D;
}
article.blog-content table tr:nth-child(even) td {
    background: #fafafa;
}

/* Code */
article.blog-content pre {
    background: #f4f4f4;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 1em 1.2em;
    overflow-x: auto;
    margin-bottom: 1.2em;
    font-size: 0.9em;
    line-height: 1.6;
}
article.blog-content code {
    background: #f4f4f4;
    border-radius: 3px;
    padding: 0.15em 0.45em;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.88em;
    color: #c87089;
}
article.blog-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Horizontal rule */
article.blog-content hr {
    border: none;
    border-top: 2px solid #eee;
    margin: 2em 0;
}

/* Strong / em */
article.blog-content strong {
    font-weight: 700;
}
article.blog-content em {
    font-style: italic;
}

/* Social share mobile */
@media (max-width: 767px) {
    .ef-social-share {
        position: static;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        padding: 20px 0;
        border-top: 1px solid #eee;
        margin-top: 20px;
    }
}
