/* Featured Post Styling (Index Page) */
@media (min-width: 768px) {
    .featured-post {
        flex-direction: row;
        align-items: stretch;
    }
    .featured-post .post-img-wrapper {
        width: 45%;
        height: auto;
    }
    .featured-post .post-img {
        border-radius: var(--radius-md) 0 0 var(--radius-md);
    }
    .featured-post .post-content {
        justify-content: center;
        padding: 3rem;
    }
    .featured-post .post-title {
        font-size: 1.75rem;
    }
}

/* Comment Form Styling (Post Details Page) */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

[data-theme="light"] .comment-form input[type="text"],
[data-theme="light"] .comment-form input[type="email"],
[data-theme="light"] .comment-form textarea {
    background: rgba(255, 255, 255, 0.5);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px var(--accent-glow);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 600px) {
    .comment-grid {
        grid-template-columns: 1fr !important;
    }
}
