  /* News Single Block Styles */
.news-single-block {
    margin: 1rem 0;
}

.news-single-placeholder,
.news-single-loading,
.news-single-error {
    padding: 2rem;
    text-align: center;
    border: 2px dashed #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    color: #666;
}

.news-single-preview {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.news-featured-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.news-title {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
}

.news-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
}

.news-date::before {
    content: "📅";
    margin-right: 0.25rem;
}

.news-author::before {
    content: "👤";
    margin-right: 0.25rem;
}

.news-category::before {
    content: "🏷️";
    margin-right: 0.25rem;
}

.news-content {
    padding: 1.5rem;
}

.news-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
}

.news-body {
    line-height: 1.7;
    color: #333;
}

.news-body p {
    margin-bottom: 1rem;
}

.news-body h1,
.news-body h2,
.news-body h3,
.news-body h4,
.news-body h5,
.news-body h6 {
    margin: 1.5rem 0 1rem 0;
    color: #333;
}

.news-body ul,
.news-body ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.news-body blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid #007cba;
    background-color: #f8f9fa;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-header {
        padding: 1rem;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .news-title {
        font-size: 1.25rem;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .news-featured-image {
        height: 200px;
    }
}

/* Editor Specific Styles */
.wp-block-news-client-news-single {
    max-width: 100%;
}

.wp-block-news-client-news-single .news-single-placeholder {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-block-news-client-news-single .news-single-loading {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}