/**
 * Additional Custom Styles
 * Add your custom CSS here
 */

/* Single Post Styles */
.single-post .entry-header {
    margin-bottom: 30px;
}

.single-post .entry-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.single-post .entry-meta {
    font-size: 14px;
    color: #777;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.single-post .entry-meta span {
    margin-right: 20px;
}

.single-post .post-thumbnail {
    margin: 30px 0;
}

.single-post .post-thumbnail img {
    border-radius: 8px;
}

.single-post .entry-content {
    font-size: 18px;
    line-height: 1.8;
    margin: 30px 0;
}

.single-post .entry-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.single-post .entry-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.single-post .entry-content p {
    margin-bottom: 20px;
}

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

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

.single-post .video-embed {
    margin: 30px 0;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.single-post .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Comments Section */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e5e5e5;
}

.comments-title {
    font-size: 28px;
    margin-bottom: 30px;
}

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

.comment-body {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 20px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.comment-author img {
    border-radius: 50%;
}

.comment-content {
    margin: 15px 0;
}

/* Archive & Category Pages */
.page-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e5e5;
}

.page-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.archive-description {
    color: #666;
    font-size: 16px;
}

/* Pagination Styles */
.pagination {
    margin: 50px 0;
}

.pagination ul {
    display: flex;
    list-style: none;
    gap: 10px;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.pagination li a,
.pagination li.active {
    padding: 10px 15px;
    background: #f8f8f8;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.pagination li a:hover,
.pagination li.active {
    background: #4CAF50;
    color: white;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .single-post .entry-title {
        font-size: 28px;
    }
    
    .single-post .entry-content {
        font-size: 16px;
    }
    
    .single-post .entry-content h2 {
        font-size: 24px;
    }
    
    .single-post .entry-content h3 {
        font-size: 20px;
    }
}
