/* Additional custom styles for WordPress theme */

/* WordPress specific styles */
.wp-block-image {
    margin: 2rem 0;
}

.wp-block-quote {
    border-left: 4px solid #f97316;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.25rem;
    color: #64748b;
}

.wp-block-code {
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: #334155;
}

.wp-block-preformatted {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* WordPress Gallery */
.wp-block-gallery {
    display: grid;
    grid-gap: 1rem;
    margin: 2rem 0;
}

.wp-block-gallery.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.wp-block-gallery.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* WordPress Button */
.wp-block-button__link {
    background: #f97316;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.wp-block-button__link:hover {
    background: #ea580c;
    transform: scale(1.05);
}

/* WordPress Lists */
.wp-block-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.wp-block-list li {
    margin-bottom: 0.5rem;
    color: #475569;
}

/* WordPress Tables */
.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.wp-block-table th,
.wp-block-table td {
    border: 1px solid #e2e8f0;
    padding: 0.75rem;
    text-align: left;
}

.wp-block-table th {
    background: #f8fafc;
    font-weight: bold;
    color: #1e293b;
}

/* WordPress Video */
.wp-block-video {
    margin: 2rem 0;
}

.wp-block-video video {
    width: 100%;
    border-radius: 0.5rem;
}

/* WordPress Embed */
.wp-block-embed {
    margin: 2rem 0;
}

.wp-block-embed iframe {
    border-radius: 0.5rem;
}

/* WordPress Cover Block */
.wp-block-cover {
    border-radius: 0.5rem;
    overflow: hidden;
    margin: 2rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wp-block-gallery.columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wp-block-gallery.columns-2 {
        grid-template-columns: 1fr;
    }
}