#fw-section-custom-html-6b0614c7-df43-4042-bfb2-f2cfab386e81 {

/* --- MISSION PAGE STYLES --- */

/* 1. The Master Container */
.ea-mission-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    color: #e0e0e0;
}

/* 2. The Side-by-Side Rows (UPDATED ALIGNMENT) */
.ea-mission-row {
    display: flex;
    align-items: flex-start; /* <-- THIS IS THE CHANGE. Aligns tops perfectly. */
    gap: 50px; 
    margin-bottom: 80px;
}

/* 3. The Reversal (Flips Image to the Left) */
.ea-mission-row.reverse {
    flex-direction: row-reverse;
}

/* 4. The Perfect Proportions */
.ea-text-block {
    flex: 1; 
}
.ea-image-block {
    flex: 0 0 300px; 
}

/* 5. Typography Formatting */
.ea-text-block h2, .ea-text-block h3 {
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: left;
}
.ea-text-block p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left;
}
.ea-text-block ul {
    padding-left: 0;
    list-style-type: none;
    margin: 0;
}
.ea-text-block li {
    margin-bottom: 15px;
    line-height: 1.5;
    text-align: left;
}

/* 6. Image Formatting */
.ea-image-block img {
    width: 100%; 
    height: auto;
    border-radius: 6px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* 7. Centered Bottom Row */
.ea-mission-row.centered {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}
.ea-mission-row.centered .ea-text-block {
    width: 100%;
}
.ea-mission-row.centered .ea-text-block h3,
.ea-mission-row.centered .ea-text-block p {
    text-align: center;
}

/* 8. Mobile Optimization */
@media (max-width: 768px) {
    .ea-mission-row, .ea-mission-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 60px;
    }
    .ea-image-block {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px; 
        margin: 0 auto;
    }
    .ea-text-block h2, .ea-text-block h3, .ea-text-block p, .ea-text-block li {
        text-align: center;
    }
    .ea-text-block ul {
        text-align: left;
    }
}
}













#fw-section-newsletter-d25f8461-a4e6-41aa-935a-d5378373fd89 {
--color-primary: #51514f;
--color-primary-rgb: 81, 81, 79;
--color-background: #373d42;
--color-background-rgb: 55, 61, 66;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-on-primary: #c0c0c0;
--color-on-primary-rgb: 192, 192, 192;
--color-product-image-background: #ffffff;
--color-background-brightness: 60;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #51514f;
--primary-btn-text: #c0c0c0;
--primary-btn-border-color: #ffffff;
--secondary-btn-bg: transparent;
--secondary-btn-text: #ffffff;
--secondary-btn-border-color: #ffffff;

}






































#fw-section-custom-html-e3dfbb1f-d493-48d9-be27-62d79ba9da90 {

/* --- PODCAST HUB STYLES --- */

/* 1. The Main Podcast Container */
.ea-podcast-container {
    max-width: 900px;
    margin: 0px auto 60px; 
    padding: 0 20px;
    color: #e0e0e0;
    text-align: center;
  /* CLICKABLE FIX: Puts the buttons "above" the invisible header area */
    position: relative !important;
    z-index: 99 !important;
}

/* 2. The Header Typography (UPDATED SIZE) */
.ea-podcast-header h2 {
    font-size: 2.2rem; /* Shrunk down from 2.8rem for a cleaner, balanced look */
    margin-bottom: 5px; 
    line-height: 1.2;
    text-transform: uppercase;
}
.ea-podcast-header h3 {
    color: #c0c0c0;
    margin-bottom: 40px; 
    font-weight: normal;
}
.ea-podcast-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 3. The Player Stage */
.ea-podcast-player {
    margin: 50px 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.03); 
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* 4. The Button Control Panel */
.ea-podcast-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; 
    
    /* THE FIX: "fit-content" shrinks the box to hug the buttons */
    width: fit-content; 
    margin: 20px auto 60px; /* 'auto' keeps the shrunk box centered */
    
    background: rgba(255, 255, 255, 0.03); 
    border-radius: 8px;
    padding: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* --- UNIFIED WHITE BADGE STYLE --- */
.ea-badge-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #ffffff;   /* All buttons are white now */
    border: 1px solid #d1d1d1;   
    border-radius: 8px;          
    padding: 8px 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 170px;            
}

.ea-badge-btn:hover {
    transform: translateY(-2px); 
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.badge-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-sub {
    font-size: 0.65rem;
    color: #666;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.badge-main {
    font-size: 0.95rem;
    color: #000;
    font-weight: bold;
    line-height: 1;
}

/* 5. Mobile Optimization */
@media (max-width: 768px) {
    .ea-podcast-header h2 { font-size: 1.8rem; }
    .ea-podcast-header h3 { font-size: 1.1rem; }

    .ea-podcast-buttons {
        flex-direction: column; 
        align-items: center;    
    }

    /* Force all badges to match width on mobile */
    .ea-badge-btn {
        width: 100%;            
        max-width: 320px;       
        box-sizing: border-box; 
        margin-bottom: 12px;   
        justify-content: center;
        padding-left: 0;
    }

    .ea-badge-btn .badge-text {
        align-items: flex-start; /* Keeps text aligned left relative to icon */
    }
}


}
#fw-section-custom-html-00f552e6-c526-4856-af70-cc1c595fbebf {

/* --- PODCAST HUB STYLES --- */

/* 1. The Main Podcast Container */
.ea-podcast-container {
    max-width: 900px;
    margin: 0px auto 60px; 
    padding: 0 20px;
    color: #e0e0e0;
    text-align: center;
}

/* 2. The Header Typography (UPDATED SIZE) */
.ea-podcast-header h2 {
    font-size: 2.2rem; /* Shrunk down from 2.8rem for a cleaner, balanced look */
    margin-bottom: 5px; 
    line-height: 1.2;
    text-transform: uppercase;
}
.ea-podcast-header h3 {
    color: #c0c0c0;
    margin-bottom: 40px; 
    font-weight: normal;
}
.ea-podcast-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 3. The Player Stage */
.ea-podcast-player {
    margin: 50px 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.03); 
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* 4. The Button Layout */
.ea-podcast-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; 
    margin-top: 20px;
}

/* --- THE ESSENTIAL ATHLETE BUTTON FIX --- */
.ea-btn {
    position: relative; 
    z-index: 50; 
    background-color: #51514f;
    color: #c0c0c0;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    display: inline-block; 
}

.ea-btn:hover {
    background-color: #6b6b69;
    color: #ffffff;
}

/* 5. Mobile Optimization (NEW) */
@media (max-width: 768px) {
    .ea-podcast-header h2 {
        font-size: 1.8rem; /* Shrinks the title slightly more for phone screens */
    }
    .ea-podcast-header h3 {
        font-size: 1.1rem;
    }
}
}

#fw-section-newsletter-f840c159-b3e4-4a1d-90c8-1dc2476986a5 {
--color-primary: #51514f;
--color-primary-rgb: 81, 81, 79;
--color-background: #373d42;
--color-background-rgb: 55, 61, 66;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-on-primary: #c0c0c0;
--color-on-primary-rgb: 192, 192, 192;
--color-product-image-background: #ffffff;
--color-background-brightness: 60;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #51514f;
--primary-btn-text: #c0c0c0;
--primary-btn-border-color: #ffffff;
--secondary-btn-bg: transparent;
--secondary-btn-text: #ffffff;
--secondary-btn-border-color: #ffffff;

}






#fw-section-newsletter-1770069744 {
--color-primary: #51514f;
--color-primary-rgb: 81, 81, 79;
--color-background: #373d42;
--color-background-rgb: 55, 61, 66;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-on-primary: #c0c0c0;
--color-on-primary-rgb: 192, 192, 192;
--color-product-image-background: #ffffff;
--color-background-brightness: 60;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #51514f;
--primary-btn-text: #c0c0c0;
--primary-btn-border-color: #ffffff;
--secondary-btn-bg: transparent;
--secondary-btn-text: #ffffff;
--secondary-btn-border-color: #ffffff;

}







#fw-section-footer {
--color-primary: #51514f;
--color-primary-rgb: 81, 81, 79;
--color-background: #373d42;
--color-background-rgb: 55, 61, 66;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-on-primary: #FFFFFF;
--color-on-primary-rgb: 255, 255, 255;
--color-product-image-background: #ffffff;
--color-background-brightness: 60;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #51514f;
--primary-btn-text: #FFFFFF;
--primary-btn-border-color: #ffffff;
--secondary-btn-bg: transparent;
--secondary-btn-text: #ffffff;
--secondary-btn-border-color: #ffffff;

}

#fw-section-header {
--font-heading-scale: 1.0;
--font-body-scale: 1.8;
}
#fw-section-header {
--color-primary: #a0a02c;
--color-primary-rgb: 160, 160, 44;
--color-background: #373d42;
--color-background-rgb: 55, 61, 66;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-on-primary: #002cc0;
--color-on-primary-rgb: 0, 44, 192;
--color-product-image-background: #ffffff;
--color-background-brightness: 60;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #a0a02c;
--primary-btn-text: #002cc0;
--primary-btn-border-color: #ffffff;
--secondary-btn-bg: transparent;
--secondary-btn-text: #ffffff;
--secondary-btn-border-color: #ffffff;

}










#fw-section-password {
--font-heading-scale: 0.89;
--font-body-scale: 0.89;
}
#fw-section-password {
--color-primary: #51514f;
--color-primary-rgb: 81, 81, 79;
--color-background: #373d42;
--color-background-rgb: 55, 61, 66;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-on-primary: #c0c0c0;
--color-on-primary-rgb: 192, 192, 192;
--color-product-image-background: #ffffff;
--color-background-brightness: 60;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #51514f;
--primary-btn-text: #c0c0c0;
--primary-btn-border-color: #ffffff;
--secondary-btn-bg: transparent;
--secondary-btn-text: #ffffff;
--secondary-btn-border-color: #ffffff;

}