
/* 
 * Custom Styles for McLuhan Child Theme
 * Blog-specific enhancements
 */

/* Blog Post Customizations */
.entry-content {
    line-height: 1.7;
}

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

.entry-content h2, 
.entry-content h3, 
.entry-content h4 {
    margin-top: 2em;
    margin-bottom: 1em;
    color: #121212;
}

/* Featured Image Styling */
.post-thumbnail {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumbnail img {
    transition: transform 0.3s ease;
}

.post-thumbnail img:hover {
    transform: scale(1.02);
}

/* Category and Tag Styling */
.entry-categories a,
.entry-tags a {
    display: inline-block;
    background-color: #f0f0f0;
    color: #333;
    padding: 0.25em 0.75em;
    border-radius: 20px;
    font-size: 0.85em;
    margin-right: 0.5em;
    margin-bottom: 0.5em;
    text-decoration: none;
}

.entry-categories a:hover,
.entry-tags a:hover {
    background-color: #121212;
    color: #fff;
}

/* Author Box Styling */
.author-box {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #121212;
}

.author-box .author-avatar {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.author-box .author-info {
    overflow: hidden;
}

/* Related Posts Enhancement */
.related-posts h3 {
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.related-post-title {
    font-size: 1.1em;
    font-weight: 600;
}

/* Comment Section Improvements */
.comment-list {
    margin-top: 2rem;
}

.comment-author {
    font-weight: 600;
}

.comment-metadata {
    font-size: 0.85em;
    color: #777;
}

.comment-content {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Blog Archive Layout */
.archive-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.archive-title {
    font-size: 2em;
    margin-bottom: 0.5rem;
}

/* Search Results Enhancement */
.search-results .entry-title a {
    color: #121212;
}

.search-results .entry-title a:hover {
    color: #555;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .entry-content {
        font-size: 1.1em;
    }
    
    .author-box {
        padding: 1.5rem;
    }
    
    .post-thumbnail {
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 0;
    }
}

/* Custom Blog Elements */
.highlight-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
}

.pull-quote {
    font-size: 1.4em;
    font-style: italic;
    text-align: center;
    margin: 2rem 0;
    padding: 0 2rem;
    color: #555;
}

/* Social Sharing Buttons */
.social-share {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.social-share a {
    display: inline-block;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
}

.social-share a:hover {
    background-color: #121212;
    color: #fff;
}
