/**
 * Shortcode Section Styles
 * 
 * @package Ascend Health
 */

/* Section Base Styles */
.ascend-shortcode-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    z-index: 10;
}
.ascend-shortcode-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Padding Classes */
.ascend-shortcode-section.section-padding-default {
    padding: 40px 0;
}

.ascend-shortcode-section.section-padding-small {
    padding: 30px 0;
}

.ascend-shortcode-section.section-padding-medium {
    padding: 60px 0;
}

.ascend-shortcode-section.section-padding-large {
    padding: 90px 0;
}

.ascend-shortcode-section.section-padding-none {
    padding: 0;
}

/* Background Colors */
.ascend-shortcode-section.bg-white {
    background-color: #fff;
}

.ascend-shortcode-section.bg-cream {
    background-color: var(--Color-Palette-Cream);
}

.ascend-shortcode-section.bg-copper {
    background-color: var(--Color-Palette-Copper);
    color: #fff;
}

.ascend-shortcode-section.bg-olive {
    background-color: var(--Color-Palette-Olive);
    color: #fff;
}

.ascend-shortcode-section.bg-dark-chocolate {
    background-color: var(--Color-Palette-Dark-Chocolate);
    color: #fff;
}

.ascend-shortcode-section.bg-khaki {
    background-color: var(--Color-Palette-Khaki);
}

.ascend-shortcode-section.bg-random-color {
    background-color: var(--Color-Palette-Random-Color);
}

.ascend-shortcode-section.bg-random-color-two {
    background-color: var(--Color-Palette-Random-Color-Two);
}
/* Container Widths */
.ascend-shortcode-section .container-narrow {
    max-width: 980px;
    margin: 0 auto;
}

.ascend-shortcode-section .container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

/* Content Alignment */
.ascend-shortcode-section .shortcode-section-content.align-left {
    text-align: left;
}

.ascend-shortcode-section .shortcode-section-content.align-center {
    text-align: center;
}

.ascend-shortcode-section .shortcode-section-content.align-right {
    text-align: right;
}

/* Section Title */
.ascend-shortcode-section .section-title {
    font-family: 'Baskerville', serif;
    margin-bottom: 20px;
    color: inherit;
}

/* Section Description */
.ascend-shortcode-section .section-description {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ascend-shortcode-section .shortcode-section-content.align-left .section-description {
    margin-left: 0;
}

.ascend-shortcode-section .shortcode-section-content.align-right .section-description {
    margin-right: 0;
}

/* Shortcode Container */

/* Responsive Styles */
@media (max-width: 768px) {
    .ascend-shortcode-section.section-padding-default,
    .ascend-shortcode-section.section-padding-medium {
        padding: 20px 0;
    }
    
    .ascend-shortcode-section.section-padding-large {
        padding: 20px 0;
    }
    
    .ascend-shortcode-section .section-title {
        font-size: 26px;
    }
}
