/**
 * SCDEV Blog Composer Styles
 * 
 * @package SCDEV_Composer
 * @version 1.0.0
 */

/* ==========================================================================
   Blog Composer Specific Styles
   ========================================================================== */

.scdev-blog-composer {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Featured Image */
.featured-image-container {
    position: relative;
}

.btn-select-image {
    padding: 10px 20px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.btn-select-image:hover {
    background: #135e96;
}

.featured-image-preview {
    position: relative;
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.featured-image-preview img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
}

.btn-remove-image {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-remove-image:hover {
    background: #d63638;
    border-color: #d63638;
}

.btn-remove-image:hover .dashicons {
    color: #fff;
}

.btn-remove-image .dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: #d63638;
}

/* SEO Section */
.seo-section {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.seo-section h4 {
    margin: 0 0 20px;
    font-size: 16px;
    color: #1e1e1e;
}

/* Excerpt */
.blog-excerpt-input {
    resize: vertical;
    min-height: 80px;
}

/* Character Counters */
.character-count {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .scdev-blog-composer {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* No duplicate CSS rules found in this file. */
