/**
 * Single Post Styles - Foxiz MorningNews Style
 *
 * @package Informativo_Angolano
 * @since 1.0.0
 */

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
:root {
    --primary-color: #e63946;
    --primary-dark: #d62839;
    --secondary-color: #1a1a2e;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* ==========================================================================
   SINGLE POST PAGE
   ========================================================================== */


/* Adjust main content area to account for hero section */
.single-post-page .main-content-area {
    padding-top: 40px;
}

@media (min-width: 768px) {
    .single-post-page .main-content-area {
        padding-top: 50px;
    }
}

@media (min-width: 992px) {
    .single-post-page .main-content-area {
        padding-top: 60px;
    }
}

/* Remove default breadcrumb spacing on single posts since breadcrumb is in hero */
.single-post-page .breadcrumb-section {
    display: none;
}

.single-post {
    margin: 0;
    padding: 0;
}


.single-hero-section {
    position: relative;
    height: 50vh;
    min-height: 350px;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .single-hero-section {
        height: 60vh;
        min-height: 450px;
    }
}

@media (min-width: 992px) {
    .single-hero-section {
        height: 65vh;
        min-height: 500px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.hero-post-info {
    max-width: 800px;
    padding: 30px 20px;
    color: var(--bg-white);
}

@media (min-width: 768px) {
    .hero-post-info {
        padding: 40px 40px;
    }
}

@media (min-width: 992px) {
    .hero-post-info {
        padding: 50px 60px;
    }
}

.hero-category {
    margin-bottom: 16px;
}

.hero-category a {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.hero-category a:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
}

.hero-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .hero-meta {
        font-size: 15px;
    }
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-meta-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Share Buttons in Hero */
.hero-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.share-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.share-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.share-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ==========================================================================
   POST HEADER (Modern Header - Unified Design)
   ========================================================================== */
.single-post-header {
    background: var(--bg-light);
    padding: 40px 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .single-post-header {
        padding: 50px 40px;
    }
}

@media (min-width: 992px) {
    .single-post-header {
        padding: 60px 60px;
    }
}

.post-header-container {
    max-width: 900px;
    margin: 0 auto;
}

.post-header-category {
    margin-bottom: 16px;
}

.post-header-category .category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.post-header-category .category-badge:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
}

.post-header-category .category-badge svg {
    width: 12px;
    height: 12px;
}

.single-post-header .entry-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .single-post-header .entry-title {
        font-size: 36px;
    }
}

@media (min-width: 992px) {
    .single-post-header .entry-title {
        font-size: 42px;
    }
}

/* ==========================================================================
   POST HEADER META - Organized Layout
   ========================================================================== */
.post-header-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 24px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 12px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.meta-item:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.meta-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.meta-item time,
.meta-item span {
    white-space: nowrap;
}

/* Author Meta Item */
.meta-author {
    padding: 6px 12px;
}

.meta-author .author-avatar {
    flex-shrink: 0;
}

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

.meta-author .author-details {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.meta-author .author-name {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-color);
}

.meta-author:hover .author-name {
    color: var(--primary-color);
}

/* Updated Info */
.post-header-updated {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(200, 16, 46, 0.08);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.post-header-updated svg {
    width: 14px;
    height: 14px;
    color: var(--primary-color);
}

/* Reading Progress Bar */
.reading-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--reading-progress-height, 4px);
    background: rgba(0, 0, 0, 0.1);
}

.reading-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.1s ease;
}

/* Responsive adjustments for meta */
@media (max-width: 576px) {
    .post-header-meta {
        gap: 8px 12px;
    }
    
    .meta-item {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .meta-author .author-avatar img {
        width: 24px;
        height: 24px;
    }
    
    .meta-author .author-name {
        font-size: 12px;
    }
}

/* Entry Meta (for fallback header) */
.entry-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.entry-meta a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.entry-meta a:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   MAIN CONTENT AREA
   ========================================================================== */
.main-content-area {
    padding: 40px 20px;
}

@media (min-width: 768px) {
    .main-content-area {
        padding: 50px 40px;
    }
}

@media (min-width: 992px) {
    .main-content-area {
        padding: 60px 0;
    }
}

.content-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .content-row {
        grid-template-columns: 15% 55% 24%;
        gap: 50px;
    }
}

/* ==========================================================================
   ARTICLE CONTENT
   ========================================================================== */
.primary-content {
    width: 100%;
}

.single-post-article {
    background: var(--bg-white);
}

.entry-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
}

@media (min-width: 768px) {
    .entry-content {
        font-size: 18px;
    }
}

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

.entry-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 40px 0 20px;
}

@media (min-width: 768px) {
    .entry-content h2 {
        font-size: 28px;
    }
}

.entry-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 32px 0 16px;
}

@media (min-width: 768px) {
    .entry-content h3 {
        font-size: 24px;
    }
}

.entry-content img {
    border-radius: var(--radius-md);
    margin: 30px 0;
    max-width: 100%;
    height: auto;
}

.entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px 24px;
    margin: 30px 0;
    background: var(--bg-light);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-light);
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 28px;
}

.entry-content li {
    margin-bottom: 10px;
}

/* First paragraph drop cap */
.entry-content > p:first-of-type::first-letter {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 0.9;
    float: left;
    margin: 4px 10px 0 0;
    color: var(--primary-color);
}

/* ==========================================================================
   ARTICLE FOOTER
   ========================================================================== */
.entry-footer {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.entry-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.entry-tags svg {
    color: var(--primary-color);
}

.entry-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-light);
    color: var(--text-color);
    font-size: 13px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.entry-tags a:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.entry-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.entry-share span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.entry-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.entry-share a:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.entry-share a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ==========================================================================
   AUTHOR BIO
   ========================================================================== */
.author-bio {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    align-items: flex-start;
}

@media (max-width: 576px) {
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
}

.author-avatar {
    flex-shrink: 0;
}

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

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.author-name a {
    color: var(--secondary-color);
    text-decoration: none;
}

.author-name a:hover {
    color: var(--primary-color);
}

.author-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================================================
   RELATED POSTS
   ========================================================================== */
.related-posts {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.related-posts .section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-posts .news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .related-posts .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .related-posts .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-card .news-content {
    padding: 20px;
}

.related-card .news-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.related-card .news-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.related-card .news-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.related-card .news-title a:hover {
    color: var(--primary-color);
}

.related-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================================================
   POST NAVIGATION
   ========================================================================== */
.post-navigation {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.post-navigation .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
    min-width: 250px;
}

.post-navigation a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.post-navigation a:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.nav-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: 50%;
    font-size: 18px;
}

.post-navigation a:hover .nav-arrow {
    background: rgba(255, 255, 255, 0.2);
}

.nav-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* ==========================================================================
   COMMENTS SECTION
   ========================================================================== */
.comments-section {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.comments-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.comment-body {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.comment-content {
    flex: 1;
}

.comment-author {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.comment-metadata {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.comment-metadata a {
    color: inherit;
    text-decoration: none;
}

.comment-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.reply {
    margin-top: 12px;
}

.reply a {
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.reply a:hover {
    color: var(--primary-dark);
}

.comment-respond {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.comment-reply-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-form textarea {
    min-height: 150px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: border-color var(--transition-fast);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.comment-form .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.comment-form .submit:hover {
    background: var(--primary-dark);
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */
.right-sidebar {
    display: none;
}

@media (min-width: 992px) {
    .right-sidebar {
        display: block;
    }
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* TOC Widget */
.toc-widget .table-of-contents {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
}

.toc-widget .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-widget .toc-item {
    margin-bottom: 8px;
}

.toc-widget .toc-link {
    display: block;
    padding: 10px 14px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.toc-widget .toc-link:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* ==========================================================================
   DARK MODE SUPPORT
   ========================================================================== */
body.dark-mode {
    --text-color: #e5e5e5;
    --text-light: #b0b0b0;
    --text-muted: #808080;
    --bg-light: #252525;
    --bg-white: #1a1a1a;
    --border-color: #333333;
    --secondary-color: #ffffff;
}

body.dark-mode .single-post-article {
    background: #252525;
}

body.dark-mode .entry-content {
    color: #e5e5e5;
}

body.dark-mode .entry-content h2,
body.dark-mode .entry-content h3 {
    color: #ffffff;
}

body.dark-mode .entry-content blockquote {
    background: #333;
    color: #b0b0b0;
}

body.dark-mode .entry-footer {
    border-color: #333;
}

body.dark-mode .author-bio {
    background: #252525;
}

body.dark-mode .related-posts {
    border-color: #333;
}

body.dark-mode .related-card {
    background: #252525;
    border-color: #333;
}

body.dark-mode .related-card .news-title a {
    color: #ffffff;
}

body.dark-mode .post-navigation {
    border-color: #333;
}

body.dark-mode .post-navigation a {
    background: #252525;
    color: #e5e5e5;
    border-color: #333;
}

body.dark-mode .comments-section {
    border-color: #333;
}

body.dark-mode .comment {
    border-color: #333;
}

body.dark-mode .comment-author {
    color: #ffffff;
}

body.dark-mode .comment-content p {
    color: #e5e5e5;
}

body.dark-mode .comment-respond {
    border-color: #333;
}

body.dark-mode .comment-form input,
body.dark-mode .comment-form textarea {
    background: #333;
    border-color: #444;
    color: #e5e5e5;
}

body.dark-mode .sidebar-widget {
    background: #252525;
    border-color: #333;
}

body.dark-mode .widget-title {
    color: #ffffff;
}

body.dark-mode .toc-widget .table-of-contents {
    background: #333;
}

body.dark-mode .toc-widget .toc-link {
    color: #e5e5e5;
}

body.dark-mode .toc-widget .toc-link:hover {
    background: #444;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 767px) {
    .single-hero-section {
        height: 45vh;
        min-height: 300px;
    }
    
    .hero-post-info {
        padding: 24px 16px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-meta {
        gap: 16px;
        font-size: 13px;
    }
    
    .single-post-header {
        padding: 30px 16px;
    }
    
    .single-title {
        font-size: 24px;
    }
    
    .entry-content {
        font-size: 16px;
    }
    
    .entry-content > p:first-of-type::first-letter {
        font-size: 2.5em;
    }
}

@media (max-width: 479px) {
    .single-hero-section {
        height: 40vh;
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .single-title {
        font-size: 20px;
    }
    
    .entry-content {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar img {
        width: 60px;
        height: 60px;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .single-hero-section,
    .breadcrumb-section,
    .entry-share,
    .author-bio,
    .related-posts,
    .sidebar,
    .post-navigation,
    .comments-section {
        display: none !important;
    }
    
    .single-post-article {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .entry-content {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .entry-content > p:first-of-type::first-letter {
        font-size: 2em;
    }
}

