.custom-single-wrapper {
    padding: 2rem 0;
}

.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.custom-entry-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.custom-entry-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.2;
}

.custom-entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.custom-entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-post-thumbnail {
    margin-bottom: 2rem;
    text-align: center;
}

.custom-post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.custom-entry-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.custom-entry-content p {
    margin-bottom: 1.5rem;
}

.custom-entry-content h2,
.custom-entry-content h3,
.custom-entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.custom-entry-content ul,
.custom-entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.custom-entry-content li {
    margin-bottom: 0.5rem;
}

.custom-entry-content a {
    color: #0073aa;
    text-decoration: underline;
}

.custom-entry-content a:hover {
    color: #005177;
}

.custom-entry-content blockquote {
    border-left: 4px solid #0073aa;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: #f9f9f9;
    font-style: italic;
}

.custom-entry-content blockquote p {
    margin-bottom: 0;
}

.custom-entry-content pre {
    background-color: #f5f5f5;
    padding: 1rem;
    overflow-x: auto;
    border-radius: 4px;
    font-family: monospace;
}

.custom-entry-content code {
    background-color: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: monospace;
}

.custom-entry-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.custom-tags-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.custom-tags-links a {
    display: inline-block;
    background-color: #f0f0f0;
    color: #555;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-tags-links a:hover {
    background-color: #0073aa;
    color: #fff;
}

.custom-edit-link {
    display: block;
    margin-top: 1rem;
}

.custom-page-links {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.post-navigation {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-title {
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
}

.nav-title:hover {
    color: #0073aa;
}
.custom-social-share {
        display: flex;
    }
    .custom-social-share h3 {
            font-size: 30px;
            font-weight: normal;
        }
    .social-share-icons {
        display: flex;
        align-items: center;
    
    }
        .social-share-icons a {
        margin-left: 10px;
        font-size: 30px;
        }
        .custom-entry-title a {
        font-size: 46px;
        font-weight: bold;
        }
    .custom-entry-content {
        font-size: 16px !important;
    }
    .custom-entry-meta span {
        color: #ffffff;
    }
    .custom-comments-link a {
            color: #ffffff !important;
    }
@media (max-width: 768px) {
    .custom-entry-title {
        font-size: 2rem;
    }
    
    .custom-entry-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .custom-container {
        padding: 0 0.5rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-next {
        text-align: left;
    }
}