.elementor-14034 .elementor-element.elementor-element-467f264{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-c068f26 *//* --- CMA ENRICHMENT ACTIVITIES STYLES --- */
:root {
    --cma-primary: #1A365D;    /* Deep Navy Blue */
    --cma-secondary: #F59E0B;  /* Golden Yellow/Orange */
    --cma-bg: #F8FAFC;         /* Light Gray Background */
    --cma-card-bg: #FFFFFF;    /* White Card Background */
    --cma-text-main: #334155;  /* Dark Gray Text */
    --cma-text-muted: #475569; /* Medium Gray Text */
}

.cma-enrichment-wrapper {
    font-family: 'Poppins', 'Roboto', sans-serif;
    background-color: var(--cma-bg);
    padding: 50px 20px;
    color: var(--cma-text-main);
    line-height: 1.7;
}

.cma-enrichment-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.cma-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.cma-page-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--cma-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cma-page-header .divider {
    height: 4px;
    width: 60px;
    background-color: var(--cma-secondary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Intro Text Styles */
.cma-intro-content {
    background: var(--cma-card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 50px;
    text-align: center;
}

.cma-intro-content p {
    margin-bottom: 15px;
    color: var(--cma-text-muted);
    font-size: 17px;
}

.cma-intro-content .highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--cma-primary);
    margin-top: 20px;
}

/* Core Pillars Grid Styles */
.cma-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.cma-pillar-card {
    background: var(--cma-card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid var(--cma-secondary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cma-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cma-pillar-icon {
    font-size: 45px;
    color: var(--cma-primary);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.cma-pillar-card:hover .cma-pillar-icon {
    color: var(--cma-secondary);
}

.cma-pillar-card h4 {
    color: var(--cma-primary);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cma-pillar-card p {
    font-size: 15px;
    color: var(--cma-text-muted);
    margin: 0;
}

/* Gallery Grid Styles */
.cma-gallery-section h3 {
    text-align: center;
    color: var(--cma-primary);
    font-size: 28px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--cma-secondary);
    display: inline-block;
    padding-bottom: 10px;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

.cma-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.cma-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    aspect-ratio: 16/9; /* Adjusted for wider screenshots/photos */
}

.cma-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.cma-gallery-item:hover img {
    transform: scale(1.08); /* Smooth zoom effect on hover */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .cma-intro-content { padding: 25px; }
    .cma-page-header h2 { font-size: 28px; }
    .cma-gallery-grid { grid-template-columns: 1fr; }
}/* End custom CSS */