/* 
 * Single Post Specific Styles
 */

/* Content Typography */
.content-area {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-area h1,
.content-area h2,
.content-area h3,
.content-area h4,
.content-area h5,
.content-area h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Gemunu Libre', sans-serif;
}

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

.content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.content-area blockquote {
    border-left: 4px solid var(--cinelinux-highlight);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--cinelinux-light);
    background-color: rgba(96, 44, 185, 0.1);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

[data-bs-theme="light"] .content-area blockquote {
    color: var(--cinelinux-dark);
}

/* Entry Meta */
.entry-meta {
    font-size: 0.95rem;
    color: var(--bs-secondary);
}

.entry-meta i {
    color: var(--cinelinux-highlight);
}

/* Featured Image */
.single-featured-image {
    object-fit: cover;
    max-height: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Related Posts */
.related-posts-section {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme="light"] .related-posts-section {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.related-posts-section h3 {
    font-family: 'Gemunu Libre', sans-serif;
    color: var(--cinelinux-highlight);
}

/* Comments */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme="light"] .comments-area {
    border-top-color: rgba(0, 0, 0, 0.1);
}

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

.comment-body {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

[data-bs-theme="light"] .comment-body {
    background-color: rgba(0, 0, 0, 0.02);
}

.comment-author img {
    border-radius: 50%;
    margin-right: 1rem;
}

.comment-meta {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.reply {
    margin-top: 1rem;
}

.reply a {
    color: var(--cinelinux-highlight);
    text-decoration: none;
    font-weight: 600;
}

.comment-respond {
    margin-top: 2rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--bs-body-color);
    border-radius: 4px;
    margin-bottom: 1rem;
}

[data-bs-theme="light"] .comment-form input[type="text"],
[data-bs-theme="light"] .comment-form input[type="email"],
[data-bs-theme="light"] .comment-form input[type="url"],
[data-bs-theme="light"] .comment-form textarea {
    border-color: rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.comment-form input[type="submit"] {
    background-color: var(--cinelinux-highlight);
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.comment-form input[type="submit"]:hover {
    background-color: #4a2290;
}
