/* Intro Shortcode Block Styles */

.intro-shortcode-section {
    padding: var(--spacing-2xl) 0;
    background: #ffffff;
}

.intro-shortcode-wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.intro-text {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333;
}

.intro-text h2,
.intro-text h3,
.intro-text h4 {
    margin-bottom: 1rem;
    color: #000;
}

.shortcode-content {
    width: 100%;
}

.shortcode-content table {
    width: 100%;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .intro-shortcode-section {
        padding: var(--spacing-xl) 0;
    }
    
    .intro-text {
        font-size: 1rem;
    }
}

