/* ========== FITNESS EDUCATION ELEMENTOR WIDGETS ========== */
/*
 * All visual properties use !important to override WordPress themes
 * and Elementor default styles that bleed into our widget markup.
 * Selectors are scoped to .fee-widget to avoid affecting anything
 * outside our own sections.
 */

/* --- CSS Variables --- */
.fee-widget {
    --fee-blue-primary: #0C71C3;
    --fee-blue-accent: #055BDC;
    --fee-blue-hero-start: #3B6EC9;
    --fee-blue-hero-end: #1A2B4A;
    --fee-dark: #333333;
    --fee-body-gray: #777777;
    --fee-light-gray-bg: #ECE7E7;
    --fee-white: #FFFFFF;
    --fee-star-orange: #FB8E28;
    --fee-black: #000000;
    --fee-max-width: 1100px;
    --fee-section-pad: 80px;
    --fee-font-heading: 'Poppins', sans-serif;
    --fee-font-body: -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* --- Global Reset (scoped) --- */
.fee-widget *,
.fee-widget *::before,
.fee-widget *::after {
    box-sizing: border-box !important;
}

.fee-widget img {
    max-width: 100% !important;
    display: block !important;
}

.fee-widget a:not(.fee-btn) {
    text-decoration: none !important;
    color: inherit !important;
}

.fee-widget .fee-container {
    max-width: var(--fee-max-width) !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* --- Common Typography --- */
.fee-widget h1,
.fee-widget h2,
.fee-widget h3,
.fee-widget h4 {
    font-family: var(--fee-font-heading) !important;
    color: var(--fee-dark) !important;
    line-height: 1.25 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.fee-widget h2 {
    font-size: clamp(26px, 4vw, 35px) !important;
    font-weight: 700 !important;
}

.fee-widget h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
}

.fee-widget p:not(.fee-section-subtitle) {
    margin: 0 !important;
}

.fee-widget .fee-section-heading {
    text-align: center !important;
    margin-bottom: 16px !important;
}

.fee-widget .fee-section-heading--accented {
    display: inline-block !important;
    border-left: 4px solid var(--fee-blue-primary) !important;
    padding-left: 16px !important;
    text-align: left !important;
}

.fee-widget .fee-section-subtitle {
    text-align: center !important;
    color: var(--fee-body-gray) !important;
    font-family: var(--fee-font-body) !important;
    font-size: 17px !important;
    line-height: 1.6 !important;
    margin: 0 auto 48px !important;
    max-width: 600px !important;
    padding: 0 !important;
}

/* --- Buttons --- */
.fee-widget .fee-btn {
    display: inline-block !important;
    font-family: var(--fee-font-heading) !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    letter-spacing: 0.3px !important;
    border-radius: 50px !important;
    padding: 13px 36px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    border: 2px solid transparent !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
    text-align: center !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.fee-widget .fee-btn--primary {
    background: var(--fee-blue-primary) !important;
    color: var(--fee-white) !important;
    border-color: var(--fee-blue-primary) !important;
}

.fee-widget .fee-btn--primary:hover {
    background: #0a60a8 !important;
    border-color: #0a60a8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(12, 113, 195, 0.35) !important;
    color: var(--fee-white) !important;
}

.fee-widget .fee-btn--outline {
    background: var(--fee-white) !important;
    color: var(--fee-blue-accent) !important;
    border-color: var(--fee-blue-primary) !important;
}

.fee-widget .fee-btn--outline:hover {
    background: var(--fee-blue-primary) !important;
    color: var(--fee-white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(12, 113, 195, 0.35) !important;
}

.fee-widget .fee-btn--dark {
    background: var(--fee-dark) !important;
    color: var(--fee-white) !important;
    border-color: var(--fee-dark) !important;
}

.fee-widget .fee-btn--dark:hover {
    background: #1a1a1a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
    color: var(--fee-white) !important;
}

.fee-widget .fee-btn--sm {
    padding: 10px 24px !important;
    font-size: 13px !important;
}

.fee-widget .fee-center-btn {
    text-align: center !important;
    margin-top: 48px !important;
}

/* ========== HERO ========== */
.fee-widget.fee-hero {
    background: linear-gradient(160deg, var(--fee-blue-hero-start) 0%, var(--fee-blue-hero-end) 100%) !important;
    padding: 72px 24px 0 !important;
    text-align: center !important;
    overflow: hidden !important;
    position: relative !important;
}

.fee-widget.fee-hero::before {
    content: '' !important;
    position: absolute !important;
    width: 600px !important;
    height: 600px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%) !important;
    top: -200px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.fee-hero .fee-container {
    max-width: 800px !important;
    position: relative !important;
    z-index: 1 !important;
}

.fee-hero__badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    margin-bottom: 28px !important;
    backdrop-filter: blur(8px) !important;
}

.fee-hero__badge span {
    font-family: var(--fee-font-heading) !important;
    font-size: 13px !important;
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500 !important;
}

.fee-hero__stars {
    display: flex !important;
    gap: 2px !important;
}

.fee-hero__stars svg {
    width: 18px !important;
    height: 18px !important;
    fill: var(--fee-star-orange) !important;
}

.fee-hero__badge .fee-hero__stars svg {
    width: 14px !important;
    height: 14px !important;
}

.fee-widget .fee-hero__content h1 {
    font-size: clamp(36px, 5vw, 52px) !important;
    font-weight: 800 !important;
    color: var(--fee-white) !important;
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
}

.fee-widget .fee-hero__content h2 {
    font-size: clamp(17px, 2.5vw, 20px) !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.8) !important;
    margin-bottom: 12px !important;
}

.fee-widget .fee-hero__content p {
    color: rgba(255,255,255,0.6) !important;
    max-width: 520px !important;
    margin: 0 auto 28px !important;
    font-size: 15px !important;
}

.fee-hero__buttons {
    display: flex !important;
    gap: 14px !important;
    justify-content: center !important;
    margin-bottom: 48px !important;
}

.fee-hero__buttons .fee-btn--primary {
    background: var(--fee-white) !important;
    color: var(--fee-blue-primary) !important;
    border-color: var(--fee-white) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

.fee-hero__buttons .fee-btn--primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2) !important;
}

.fee-hero__buttons .fee-btn--outline {
    background: transparent !important;
    color: var(--fee-white) !important;
    border-color: rgba(255,255,255,0.4) !important;
}

.fee-hero__buttons .fee-btn--outline:hover {
    background: rgba(255,255,255,0.1) !important;
    transform: translateY(-2px) !important;
    color: var(--fee-white) !important;
}

.fee-hero__video-wrap {
    max-width: 900px !important;
    margin: 0 auto !important;
}

.fee-hero__video-placeholder {
    background: linear-gradient(145deg, #2a4a7a, #1a2f55) !important;
    border-radius: 16px 16px 0 0 !important;
    aspect-ratio: 16/9 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-bottom: none !important;
    box-shadow: 0 -10px 60px rgba(0,0,0,0.3) !important;
    overflow: hidden !important;
}

.fee-hero__video-placeholder img,
.fee-hero__video-placeholder iframe {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.fee-hero__play-btn {
    width: 72px !important;
    height: 72px !important;
    background: var(--fee-white) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3) !important;
    position: absolute !important;
    z-index: 2 !important;
    border: none !important;
}

.fee-hero__play-btn:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4) !important;
}

.fee-hero__play-btn svg {
    width: 28px !important;
    height: 28px !important;
    fill: var(--fee-blue-primary) !important;
    margin-left: 4px !important;
}

/* ========== LOGO BAR ========== */
.fee-widget.fee-logo-bar {
    background: var(--fee-light-gray-bg) !important;
    padding: 40px 0 !important;
    border-top: 1px solid rgba(0,0,0,0.06) !important;
}

.fee-widget.fee-logo-bar h3 {
    text-align: center !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: var(--fee-dark) !important;
    margin-bottom: 28px !important;
}

.fee-logo-bar__logos {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
}

.fee-logo-bar__item {
    width: 120px !important;
    height: 50px !important;
    background: rgba(255,255,255,0.7) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: var(--fee-font-heading) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    color: var(--fee-body-gray) !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    overflow: hidden !important;
}

.fee-logo-bar__item img {
    max-height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
}

.fee-logo-bar__item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

/* ========== CHOOSE YOUR PATH ========== */
.fee-widget.fee-choose-path {
    padding: var(--fee-section-pad) 0 !important;
    background: var(--fee-white) !important;
}

.fee-path-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px !important;
}

.fee-path-card {
    background: var(--fee-white) !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 28px 24px !important;
    text-align: center !important;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    overflow: hidden !important;
}

.fee-path-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: var(--fee-blue-primary) !important;
    transform: scaleX(0) !important;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.fee-path-card:hover {
    border-color: var(--fee-blue-primary) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(12, 113, 195, 0.12) !important;
}

.fee-path-card:hover::before {
    transform: scaleX(1) !important;
}

.fee-path-card__icon {
    width: 48px !important;
    height: 48px !important;
    margin: 0 auto 16px !important;
    background: linear-gradient(135deg, rgba(12,113,195,0.1), rgba(12,113,195,0.05)) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.fee-path-card__icon svg {
    width: 24px !important;
    height: 24px !important;
    stroke: var(--fee-blue-primary) !important;
    fill: none !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.fee-widget .fee-path-card h3 {
    font-size: 16px !important;
    margin-bottom: 10px !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.fee-widget .fee-path-card p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: var(--fee-body-gray) !important;
    margin-bottom: 20px !important;
    flex: 1 !important;
}

.fee-path-card .fee-btn {
    align-self: center !important;
}

/* ========== COURSE FILTER ========== */
.fee-widget.fee-course-filter {
    padding: 64px 0 !important;
    background: var(--fee-light-gray-bg) !important;
}

.fee-widget.fee-course-filter .fee-section-heading {
    margin-bottom: 8px !important;
}

.fee-widget.fee-course-filter .fee-section-subtitle {
    margin-bottom: 36px !important;
}

.fee-filter-bar {
    background: var(--fee-white) !important;
    border-radius: 60px !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04) !important;
    max-width: 860px !important;
    margin: 0 auto 20px !important;
}

.fee-filter-bar__field {
    flex: 1 !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
}

.fee-filter-bar__field + .fee-filter-bar__field::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 1px !important;
    height: 32px !important;
    background: #e5e5e5 !important;
}

.fee-filter-bar__field select {
    width: 100% !important;
    font-family: var(--fee-font-heading) !important;
    font-size: 14px !important;
    padding: 14px 20px !important;
    border: none !important;
    background: transparent !important;
    color: var(--fee-dark) !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6' fill='%23999'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
}

.fee-filter-bar__field select:focus {
    outline: none !important;
}

.fee-filter-bar__field select option:disabled {
    color: #ccc !important;
}

.fee-filter-bar .fee-btn--primary {
    border-radius: 50px !important;
    padding: 14px 32px !important;
    white-space: nowrap !important;
}

.fee-filter-link {
    text-align: center !important;
}

.fee-filter-link a {
    font-family: var(--fee-font-heading) !important;
    font-size: 14px !important;
    color: var(--fee-blue-accent) !important;
    font-weight: 500 !important;
    transition: color 0.2s !important;
}

.fee-filter-link a:hover {
    color: var(--fee-blue-primary) !important;
}

.fee-filter-link a::after {
    content: ' \2192' !important;
}

/* ========== POPULAR CATEGORIES ========== */
.fee-widget.fee-categories {
    padding: var(--fee-section-pad) 0 !important;
    background: var(--fee-white) !important;
}

.fee-categories-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px !important;
    margin-bottom: 48px !important;
}

.fee-category-card {
    background: var(--fee-white) !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 0 !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
    text-decoration: none !important;
    display: block !important;
}

.fee-category-card:hover {
    border-color: var(--fee-blue-primary) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(12, 113, 195, 0.12) !important;
}

.fee-category-card__image {
    height: 140px !important;
    background: linear-gradient(135deg, #e8f0fb 0%, #dce5f4 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.fee-category-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.fee-category-card__image svg {
    width: 40px !important;
    height: 40px !important;
    stroke: var(--fee-blue-primary) !important;
    fill: none !important;
    stroke-width: 1.5 !important;
    opacity: 0.5 !important;
}

.fee-category-card__label {
    padding: 20px !important;
    text-align: center !important;
}

.fee-widget .fee-category-card__label h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
}

/* ========== POPULAR COURSES ========== */
.fee-widget.fee-popular-courses {
    padding: var(--fee-section-pad) 0 !important;
    background: var(--fee-light-gray-bg) !important;
}

.fee-courses-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px !important;
    margin-bottom: 48px !important;
}

.fee-courses-desc {
    text-align: center !important;
    max-width: 700px !important;
    margin: 0 auto 24px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--fee-body-gray) !important;
}

.fee-widget .fee-courses-desc p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--fee-body-gray) !important;
    margin-bottom: 12px !important;
}

.fee-courses-bullets {
    list-style: none !important;
    margin: 0 auto 40px !important;
    padding: 0 !important;
    max-width: 500px !important;
}

.fee-courses-bullets li {
    padding: 5px 0 !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: var(--fee-body-gray) !important;
}

.fee-courses-bullets li::before {
    content: '' !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    background: var(--fee-blue-primary) !important;
    border-radius: 50% !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 12px !important;
}

.fee-course-card {
    background: var(--fee-white) !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer !important;
}

.fee-course-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12) !important;
    border-color: transparent !important;
}

.fee-course-card__image {
    height: 180px !important;
    background: linear-gradient(145deg, #2a5fa8 0%, #1a3d6e 100%) !important;
    overflow: hidden !important;
}

.fee-course-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.fee-course-card__body {
    padding: 22px 20px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.fee-widget .fee-course-card__body h3 {
    font-size: 17px !important;
    margin-bottom: 8px !important;
}

.fee-course-card__price {
    font-family: var(--fee-font-heading) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--fee-blue-primary) !important;
    margin-bottom: 18px !important;
    margin-top: auto !important;
}

.fee-course-card__body .fee-btn {
    align-self: center !important;
}

/* ========== ABOUT SECTION ========== */
.fee-widget.fee-about-section {
    padding: var(--fee-section-pad) 0 !important;
}

.fee-about-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 56px !important;
    align-items: center !important;
}

.fee-about-grid--reverse {
    direction: rtl !important;
}

.fee-about-grid--reverse > * {
    direction: ltr !important;
}

.fee-widget .fee-about-text h2 {
    border-left: 4px solid var(--fee-blue-primary) !important;
    padding-left: 16px !important;
    margin-bottom: 20px !important;
    font-size: clamp(22px, 3vw, 30px) !important;
    text-align: left !important;
}

.fee-widget .fee-about-text p {
    margin-bottom: 16px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--fee-body-gray) !important;
}

.fee-about-text ul {
    list-style: none !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
}

.fee-about-text ul li {
    padding: 6px 0 !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: var(--fee-body-gray) !important;
}

.fee-about-text ul li::before {
    content: '' !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    background: var(--fee-blue-primary) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 12px !important;
}

.fee-about-image {
    border-radius: 12px !important;
    overflow: hidden !important;
    position: relative !important;
}

.fee-about-image img {
    width: 100% !important;
    border-radius: 12px !important;
}

.fee-about-image__placeholder {
    aspect-ratio: 4/3 !important;
    background: linear-gradient(145deg, #e8f0fb 0%, #c8d8ee 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
}

.fee-about-image__placeholder svg {
    width: 64px !important;
    height: 64px !important;
    stroke: var(--fee-blue-primary) !important;
    fill: none !important;
    stroke-width: 1 !important;
    opacity: 0.35 !important;
}

/* ========== EDUCATORS CAROUSEL ========== */
.fee-widget.fee-educators {
    padding: var(--fee-section-pad) 0 !important;
    background: var(--fee-light-gray-bg) !important;
}

.fee-educators-carousel {
    position: relative !important;
    overflow: hidden !important;
}

.fee-educators-track {
    display: flex !important;
    gap: 24px !important;
    width: 100% !important;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.fee-educator-card {
    background: var(--fee-white) !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    flex: 0 0 calc((100% - 48px) / 3) !important;
    transition: all 0.35s !important;
    text-align: center !important;
}

.fee-educator-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08) !important;
}

.fee-educator-card__photo {
    height: 220px !important;
    background: linear-gradient(145deg, #e0e8f5 0%, #ccd6e8 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.fee-educator-card__photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.fee-educator-card__photo svg {
    width: 56px !important;
    height: 56px !important;
    stroke: var(--fee-blue-primary) !important;
    fill: none !important;
    stroke-width: 1 !important;
    opacity: 0.35 !important;
}

.fee-educator-card__body {
    padding: 24px 20px !important;
}

.fee-widget .fee-educator-card__body h3 {
    font-size: 18px !important;
    margin-bottom: 2px !important;
}

.fee-educator-card__title {
    font-family: var(--fee-font-heading) !important;
    font-size: 14px !important;
    color: var(--fee-blue-primary) !important;
    font-weight: 500 !important;
    margin-bottom: 12px !important;
}

.fee-widget .fee-educator-card__body p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 18px !important;
    color: var(--fee-body-gray) !important;
}

.fee-carousel-controls {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    margin-top: 32px !important;
}

.fee-widget .fee-carousel-btn {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    border: 2px solid #ddd !important;
    background: var(--fee-white) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s !important;
    padding: 0 !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-shadow: none !important;
}

.fee-widget .fee-carousel-btn:hover {
    border-color: var(--fee-blue-primary) !important;
    background: var(--fee-blue-primary) !important;
}

.fee-widget .fee-carousel-btn:hover svg {
    stroke: var(--fee-white) !important;
}

.fee-carousel-btn svg {
    width: 20px !important;
    height: 20px !important;
    stroke: var(--fee-dark) !important;
    fill: none !important;
    stroke-width: 2 !important;
}

/* ========== REVIEWS CAROUSEL ========== */
.fee-widget.fee-reviews {
    padding: var(--fee-section-pad) 0 !important;
    background: var(--fee-white) !important;
}

.fee-reviews-carousel {
    position: relative !important;
    overflow: hidden !important;
}

.fee-reviews-track {
    display: flex !important;
    gap: 24px !important;
    width: 100% !important;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.fee-review-card {
    background: var(--fee-white) !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 28px 24px !important;
    flex: 0 0 calc((100% - 72px) / 4) !important;
    text-align: center !important;
    transition: all 0.35s !important;
}

.fee-review-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06) !important;
}

.fee-review-stars {
    display: flex !important;
    justify-content: center !important;
    gap: 2px !important;
    margin-bottom: 16px !important;
}

.fee-review-stars svg {
    width: 18px !important;
    height: 18px !important;
    fill: var(--fee-star-orange) !important;
}

.fee-review-card__name {
    font-family: var(--fee-font-heading) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: var(--fee-dark) !important;
    margin-bottom: 10px !important;
}

.fee-widget .fee-review-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: var(--fee-body-gray) !important;
}

/* ========== CTA BANNER ========== */
.fee-widget.fee-cta-banner {
    background: linear-gradient(135deg, var(--fee-blue-hero-start) 0%, var(--fee-blue-hero-end) 100%) !important;
    padding: 64px 0 !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.fee-cta-banner::before {
    content: '' !important;
    position: absolute !important;
    top: -40% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 800px !important;
    height: 800px !important;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%) !important;
    border-radius: 50% !important;
}

.fee-widget.fee-cta-banner h2 {
    color: var(--fee-white) !important;
    margin-bottom: 12px !important;
    position: relative !important;
    z-index: 1 !important;
}

.fee-widget.fee-cta-banner p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 17px !important;
    margin-bottom: 8px !important;
    position: relative !important;
    z-index: 1 !important;
}

.fee-widget .fee-cta-approved {
    color: rgba(255,255,255,0.6) !important;
    font-size: 14px !important;
    margin-bottom: 32px !important;
    position: relative !important;
    z-index: 1 !important;
}

.fee-cta-banner__buttons {
    display: flex !important;
    gap: 16px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    position: relative !important;
    z-index: 1 !important;
}

.fee-cta-banner__buttons .fee-btn--primary {
    background: var(--fee-white) !important;
    color: var(--fee-blue-primary) !important;
    border-color: var(--fee-white) !important;
}

.fee-cta-banner__buttons .fee-btn--primary:hover {
    background: transparent !important;
    color: var(--fee-white) !important;
    border-color: var(--fee-white) !important;
}

.fee-cta-banner__buttons .fee-btn--outline {
    background: transparent !important;
    color: var(--fee-white) !important;
    border-color: rgba(255,255,255,0.5) !important;
}

.fee-cta-banner__buttons .fee-btn--outline:hover {
    background: var(--fee-white) !important;
    color: var(--fee-blue-primary) !important;
}

/* ========== FAQ ========== */
.fee-widget.fee-faq {
    padding: var(--fee-section-pad) 0 !important;
    background: var(--fee-white) !important;
}

.fee-faq-list {
    max-width: 760px !important;
    margin: 0 auto !important;
}

.fee-faq-item {
    border-bottom: 1px solid #e0e0e0 !important;
}

.fee-faq-item:first-child {
    border-top: 1px solid #e0e0e0 !important;
}

.fee-widget .fee-faq-question {
    width: 100% !important;
    background: none !important;
    border: none !important;
    padding: 22px 48px 22px 0 !important;
    text-align: left !important;
    cursor: pointer !important;
    font-family: var(--fee-font-heading) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--fee-dark) !important;
    position: relative !important;
    transition: color 0.2s !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.fee-widget .fee-faq-question:hover {
    color: var(--fee-blue-primary) !important;
}

.fee-widget .fee-faq-question:focus-visible {
    color: var(--fee-blue-primary) !important;
}

.fee-widget .fee-faq-question::after {
    content: '' !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    width: 12px !important;
    height: 12px !important;
    border-right: 2px solid var(--fee-body-gray) !important;
    border-bottom: 2px solid var(--fee-body-gray) !important;
    transform: translateY(-60%) rotate(45deg) !important;
    transition: transform 0.3s, border-color 0.3s !important;
    border-top: none !important;
    border-left: none !important;
    background: none !important;
}

.fee-widget .fee-faq-item.fee-active .fee-faq-question::after {
    transform: translateY(-30%) rotate(-135deg) !important;
    border-color: var(--fee-blue-primary) !important;
}

.fee-widget .fee-faq-item.fee-active .fee-faq-question {
    color: var(--fee-blue-primary) !important;
}

.fee-faq-answer {
    max-height: 0;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.fee-faq-answer__inner {
    padding: 0 0 22px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--fee-body-gray) !important;
}

/* ========== CEU HERO (SPLIT LAYOUT) ========== */
.fee-widget.fee-ceu-hero {
    background: linear-gradient(160deg, var(--fee-blue-hero-start) 0%, var(--fee-blue-hero-end) 100%) !important;
    padding: 100px 24px !important;
    position: relative !important;
    overflow: hidden !important;
}

.fee-widget.fee-ceu-hero::before {
    content: '' !important;
    position: absolute !important;
    width: 600px !important;
    height: 600px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%) !important;
    top: -200px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.fee-ceu-hero .fee-container {
    position: relative !important;
    z-index: 1 !important;
}

.fee-ceu-hero__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 64px !important;
    align-items: center !important;
}

.fee-widget .fee-ceu-hero__content h1 {
    font-size: clamp(32px, 4.5vw, 46px) !important;
    font-weight: 800 !important;
    color: var(--fee-white) !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
}

/* description is handled by .fee-ceu-hero__desc */

.fee-ceu-hero__buttons {
    display: flex !important;
    gap: 16px !important;
    margin-bottom: 28px !important;
}

.fee-ceu-hero__buttons .fee-btn {
    white-space: nowrap !important;
}

.fee-ceu-hero__buttons .fee-btn--primary {
    background: var(--fee-white) !important;
    color: var(--fee-blue-primary) !important;
    border-color: var(--fee-white) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

.fee-ceu-hero__buttons .fee-btn--primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2) !important;
}

.fee-ceu-hero__buttons .fee-btn--outline {
    background: transparent !important;
    color: var(--fee-white) !important;
    border-color: rgba(255,255,255,0.4) !important;
}

.fee-ceu-hero__buttons .fee-btn--outline:hover {
    background: rgba(255,255,255,0.1) !important;
    transform: translateY(-2px) !important;
    color: var(--fee-white) !important;
}

.fee-ceu-hero__desc {
    color: rgba(255,255,255,0.75) !important;
    max-width: 480px !important;
    font-size: 15px !important;
    margin-bottom: 24px !important;
    line-height: 1.7 !important;
}

.fee-widget .fee-ceu-hero__desc p {
    color: rgba(255,255,255,0.75) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
}

.fee-ceu-hero__bullets {
    list-style: none !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
}

.fee-ceu-hero__bullets li {
    padding: 5px 0 !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: rgba(255,255,255,0.85) !important;
}

.fee-ceu-hero__bullets li::before {
    content: '' !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    background: rgba(255,255,255,0.15) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 12px !important;
}

.fee-ceu-hero__bundles-link {
    margin-bottom: 32px !important;
}

.fee-ceu-hero__bundles-link a {
    font-family: var(--fee-font-heading) !important;
    font-size: 14px !important;
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500 !important;
    transition: color 0.2s !important;
}

.fee-ceu-hero__bundles-link a:hover {
    color: var(--fee-white) !important;
}

.fee-ceu-hero__bundles-link a::after {
    content: ' \2192' !important;
}

.fee-ceu-hero__rating {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.fee-ceu-hero__rating-score {
    font-family: var(--fee-font-heading) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--fee-white) !important;
}

.fee-ceu-hero__rating-text {
    font-size: 13px !important;
    color: rgba(255,255,255,0.7) !important;
}

.fee-ceu-hero__image-placeholder {
    background: linear-gradient(145deg, #e8f0fb 0%, #c8d8ee 100%) !important;
    border-radius: 12px !important;
    aspect-ratio: 16/10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 60px rgba(0,0,0,0.3) !important;
    overflow: hidden !important;
}

.fee-ceu-hero__image-placeholder svg {
    width: 64px !important;
    height: 64px !important;
    stroke: var(--fee-blue-primary) !important;
    fill: none !important;
    stroke-width: 1 !important;
    opacity: 0.35 !important;
}

.fee-ceu-hero__image-placeholder img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* ========== CERT PROVIDERS ========== */
.fee-widget.fee-cert-providers {
    padding: var(--fee-section-pad) 0 !important;
    background: var(--fee-white) !important;
}

.fee-provider-cards {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px !important;
}

.fee-provider-card {
    background: var(--fee-white) !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 32px 20px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
    overflow: hidden !important;
}

.fee-provider-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: var(--fee-blue-primary) !important;
    transform: scaleX(0) !important;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.fee-provider-card:hover {
    border-color: var(--fee-blue-primary) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(12, 113, 195, 0.12) !important;
}

.fee-provider-card:hover::before {
    transform: scaleX(1) !important;
}

.fee-provider-card__icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: rgba(12, 113, 195, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.fee-provider-card__icon span {
    font-family: var(--fee-font-heading) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--fee-blue-primary) !important;
}

.fee-provider-card__icon--img {
    background: transparent !important;
}

.fee-provider-card__icon--img img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    border-radius: 50% !important;
}

.fee-widget .fee-provider-card h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.fee-provider-card .fee-btn {
    margin-top: auto !important;
}

/* ========== ALL COURSES (Filterable Grid) ========== */
.fee-widget.fee-all-courses {
    padding: var(--fee-section-pad) 0 !important;
    background: var(--fee-white) !important;
}

.fee-all-courses__layout {
    display: grid !important;
    grid-template-columns: 220px 1fr !important;
    gap: 40px !important;
}

.fee-widget .fee-all-courses__sidebar h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-family: var(--fee-font-heading) !important;
    color: var(--fee-dark) !important;
}

.fee-filter-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.fee-filter-list li {
    padding: 10px 16px !important;
    font-family: var(--fee-font-heading) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--fee-body-gray) !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    border-radius: 8px !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    user-select: none !important;
}

.fee-filter-list li::before {
    content: '' !important;
    width: 8px !important;
    height: 8px !important;
    background: #ddd !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    transition: all 0.25s ease !important;
}

.fee-filter-list li:hover {
    color: var(--fee-blue-primary) !important;
    background: rgba(12, 113, 195, 0.04) !important;
    border-color: rgba(12, 113, 195, 0.12) !important;
}

.fee-filter-list li:hover::before {
    background: var(--fee-blue-primary) !important;
    transform: scale(1.2) !important;
}

.fee-filter-list li.fee-filter-active {
    color: var(--fee-blue-primary) !important;
    font-weight: 600 !important;
    background: rgba(12, 113, 195, 0.08) !important;
    border-color: rgba(12, 113, 195, 0.2) !important;
}

.fee-filter-list li.fee-filter-active::before {
    background: var(--fee-blue-primary) !important;
    box-shadow: 0 0 0 3px rgba(12, 113, 195, 0.15) !important;
    transform: scale(1.2) !important;
}

/* --- Filter animation --- */
.fee-filter-item {
    transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.fee-filter-item.fee-filter-fading {
    opacity: 0 !important;
    transform: scale(0.95) !important;
}

.fee-filter-item.fee-filter-hidden {
    display: none !important;
}

.fee-all-courses__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px !important;
}

.fee-all-courses .fee-course-card__image {
    height: 150px !important;
}

.fee-all-courses .fee-course-card__body {
    padding: 18px 16px !important;
}

.fee-widget .fee-all-courses .fee-course-card__body h3 {
    font-size: 15px !important;
}

.fee-all-courses .fee-course-card__price {
    font-size: 18px !important;
    margin-bottom: 14px !important;
}

/* ========== CE INFO ========== */
.fee-widget.fee-ce-info {
    padding: var(--fee-section-pad) 0 !important;
    background: var(--fee-light-gray-bg) !important;
}

.fee-ce-info__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 56px !important;
    align-items: start !important;
}

.fee-widget .fee-ce-info__text h2 {
    font-family: var(--fee-font-heading) !important;
    border-left: 4px solid var(--fee-blue-primary) !important;
    padding-left: 16px !important;
    margin-bottom: 20px !important;
    font-size: clamp(22px, 3vw, 30px) !important;
    text-align: left !important;
}

.fee-widget .fee-ce-info__text p {
    margin-bottom: 20px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--fee-body-gray) !important;
}

.fee-ce-info__text ul {
    list-style: none !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
}

.fee-ce-info__text ul li {
    padding: 4px 0 !important;
    font-size: 14px !important;
    color: var(--fee-body-gray) !important;
}

.fee-ce-info__text ul li::before {
    content: '\2022 ' !important;
    color: var(--fee-blue-primary) !important;
    font-weight: bold !important;
    margin-right: 6px !important;
}

.fee-ce-info__keywords {
    font-size: 13px !important;
    color: #999 !important;
    line-height: 1.6 !important;
}

.fee-ce-info__features {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.fee-feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.fee-feature-item__icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    background: var(--fee-blue-primary) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.fee-feature-item__icon svg {
    width: 20px !important;
    height: 20px !important;
    stroke: var(--fee-white) !important;
    fill: none !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.fee-feature-item span {
    font-family: var(--fee-font-heading) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--fee-dark) !important;
}

.fee-ce-info__buttons {
    display: flex !important;
    gap: 14px !important;
    margin-top: 28px !important;
    flex-wrap: wrap !important;
}

/* ========== CEU TABLE ========== */
.fee-widget.fee-ceu-table-section {
    padding: var(--fee-section-pad) 0 !important;
    background: var(--fee-white) !important;
}

.fee-ceu-table-wrap {
    max-width: 860px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
}

.fee-ceu-table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-family: var(--fee-font-body) !important;
    font-size: 15px !important;
}

.fee-ceu-table thead th {
    font-family: var(--fee-font-heading) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: var(--fee-dark) !important;
    text-align: left !important;
    padding: 16px 20px !important;
    background: var(--fee-light-gray-bg) !important;
    border-bottom: 2px solid #ddd !important;
}

.fee-ceu-table tbody td {
    padding: 16px 20px !important;
    border-bottom: 1px solid #e8e8e8 !important;
    color: var(--fee-body-gray) !important;
}

.fee-ceu-table tbody tr:hover {
    background: rgba(12, 113, 195, 0.03) !important;
}

.fee-ceu-table tbody td:first-child {
    font-family: var(--fee-font-heading) !important;
    font-weight: 600 !important;
    color: var(--fee-dark) !important;
}

.fee-ceu-table .fee-btn--sm {
    padding: 8px 20px !important;
    font-size: 12px !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .fee-path-cards { grid-template-columns: repeat(3, 1fr) !important; }
    .fee-courses-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .fee-educator-card { flex: 0 0 calc((100% - 24px) / 2) !important; }
    .fee-review-card { flex: 0 0 calc((100% - 24px) / 2) !important; }
    /* CEU sections */
    .fee-ceu-hero__grid { gap: 32px !important; }
    .fee-provider-cards { display: flex !important; flex-wrap: wrap !important; justify-content: center !important; }
    .fee-provider-card { width: calc((100% - 40px) / 3) !important; }
    .fee-categories-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .fee-all-courses__grid { grid-template-columns: repeat(2, 1fr) !important; }
    .fee-search-results__grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .fee-widget { --fee-section-pad: 56px; }

    .fee-widget h2 { font-size: clamp(22px, 5vw, 30px) !important; }

    .fee-widget.fee-hero { padding: 48px 20px 0 !important; }
    .fee-hero .fee-container { max-width: 100% !important; }
    .fee-widget .fee-hero__content h1 { font-size: clamp(28px, 6vw, 42px) !important; }
    .fee-widget .fee-hero__content h2 { font-size: clamp(15px, 3vw, 18px) !important; }
    .fee-widget .fee-hero__content p { font-size: 14px !important; }
    .fee-hero__buttons { flex-direction: column !important; align-items: center !important; gap: 10px !important; }
    .fee-hero__buttons .fee-btn { width: 100% !important; max-width: 280px !important; text-align: center !important; }
    .fee-hero__badge { padding: 6px 14px !important; }
    .fee-hero__badge span { font-size: 12px !important; }
    .fee-hero__play-btn { width: 56px !important; height: 56px !important; }
    .fee-hero__play-btn svg { width: 22px !important; height: 22px !important; }

    .fee-widget.fee-logo-bar { padding: 28px 0 !important; }
    .fee-widget.fee-logo-bar h3 { font-size: 15px !important; margin-bottom: 20px !important; padding: 0 16px !important; }
    .fee-logo-bar__logos { gap: 16px !important; }
    .fee-logo-bar__item { width: 100px !important; height: 44px !important; font-size: 11px !important; }

    .fee-path-cards { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
    .fee-path-card { padding: 22px 16px !important; }
    .fee-widget .fee-path-card h3 { font-size: 15px !important; min-height: auto !important; }
    .fee-widget .fee-path-card p { font-size: 13px !important; }

    .fee-filter-bar {
        border-radius: 16px !important;
        flex-direction: column !important;
        padding: 16px !important;
        gap: 0 !important;
    }
    .fee-filter-bar__field + .fee-filter-bar__field::before {
        width: 100% !important; height: 1px !important; top: 0 !important; left: 0 !important; transform: none !important;
    }
    .fee-filter-bar__field select { padding: 16px 20px !important; }
    .fee-filter-bar .fee-btn--primary { width: 100% !important; text-align: center !important; margin-top: 8px !important; }

    .fee-categories-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
    .fee-category-card__image { height: 110px !important; }
    .fee-category-card__label { padding: 16px !important; }
    .fee-widget .fee-category-card__label h3 { font-size: 16px !important; }

    .fee-courses-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
    .fee-course-card__image { height: 150px !important; }
    .fee-course-card__body { padding: 16px !important; }
    .fee-widget .fee-course-card__body h3 { font-size: 15px !important; }
    .fee-course-card__price { font-size: 18px !important; margin-bottom: 12px !important; }

    .fee-about-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .fee-about-grid--reverse { direction: ltr !important; }
    .fee-widget .fee-about-text h2 { font-size: clamp(20px, 4vw, 26px) !important; }
    .fee-widget .fee-about-text p { font-size: 14px !important; }
    .fee-about-text ul li { font-size: 14px !important; }

    .fee-educator-card { flex: 0 0 100% !important; }
    .fee-educator-card__photo { height: 180px !important; }

    .fee-review-card { flex: 0 0 100% !important; }

    .fee-widget.fee-cta-banner { padding: 48px 0 !important; }
    .fee-widget.fee-cta-banner p { font-size: 15px !important; }

    .fee-widget .fee-section-subtitle { font-size: 15px !important; margin: 0 auto 32px !important; }

    .fee-widget .fee-btn { padding: 12px 28px !important; font-size: 13px !important; }
    .fee-widget .fee-btn--sm { padding: 10px 20px !important; font-size: 12px !important; }

    .fee-widget .fee-carousel-btn { width: 42px !important; height: 42px !important; }
    .fee-carousel-btn svg { width: 18px !important; height: 18px !important; }

    /* CEU sections */
    .fee-widget.fee-ceu-hero { padding: 48px 20px !important; }
    .fee-ceu-hero__grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .fee-ceu-hero__content { text-align: center !important; }
    .fee-widget .fee-ceu-hero__content p { margin-left: auto !important; margin-right: auto !important; }
    .fee-widget .fee-ceu-hero__content h1 { font-size: clamp(28px, 6vw, 42px) !important; }
    .fee-ceu-hero__buttons { justify-content: center !important; flex-direction: column !important; align-items: center !important; gap: 10px !important; }
    .fee-ceu-hero__buttons .fee-btn { width: 100% !important; max-width: 280px !important; text-align: center !important; }
    .fee-ceu-hero__bundles-link { text-align: center !important; }
    .fee-ceu-hero__rating { justify-content: center !important; }

    .fee-provider-cards { grid-template-columns: repeat(2, 1fr) !important; }

    .fee-all-courses__layout { grid-template-columns: 1fr !important; gap: 24px !important; }
    .fee-filter-list { flex-direction: row !important; flex-wrap: wrap !important; gap: 8px !important; }
    .fee-filter-list li { padding: 8px 14px !important; font-size: 12px !important; }
    .fee-all-courses__grid { grid-template-columns: repeat(2, 1fr) !important; }
    .fee-search-results__grid { grid-template-columns: repeat(2, 1fr) !important; }

    .fee-ce-info__grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .fee-widget .fee-ce-info__text h2 { font-size: clamp(20px, 4vw, 26px) !important; }

    .fee-ceu-table thead th { padding: 12px 14px !important; font-size: 13px !important; }
    .fee-ceu-table tbody td { padding: 12px 14px !important; font-size: 14px !important; }
}

@media (max-width: 480px) {
    .fee-widget { --fee-section-pad: 40px; }
    .fee-widget .fee-container { padding: 0 16px !important; }

    .fee-widget.fee-hero { padding: 36px 16px 0 !important; }
    .fee-hero__badge { margin-bottom: 20px !important; }
    .fee-widget .fee-hero__content h1 { font-size: 26px !important; margin-bottom: 12px !important; }
    .fee-widget .fee-hero__content h2 { font-size: 15px !important; margin-bottom: 8px !important; }
    .fee-widget .fee-hero__content p { font-size: 13px !important; margin: 0 auto 20px !important; }
    .fee-hero__buttons { margin-bottom: 32px !important; }
    .fee-hero__video-placeholder { border-radius: 12px 12px 0 0 !important; }

    .fee-widget.fee-logo-bar h3 { font-size: 13px !important; line-height: 1.4 !important; }
    .fee-logo-bar__logos { gap: 10px !important; justify-content: center !important; }
    .fee-logo-bar__item { width: 88px !important; height: 38px !important; font-size: 10px !important; border-radius: 6px !important; }

    .fee-path-cards { grid-template-columns: 1fr !important; }
    .fee-path-card { padding: 20px 16px !important; }
    .fee-path-card__icon { width: 40px !important; height: 40px !important; margin: 0 auto 12px !important; }

    .fee-filter-bar { padding: 12px !important; border-radius: 12px !important; }
    .fee-filter-bar__field select { padding: 14px 16px !important; font-size: 13px !important; }

    .fee-categories-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
    .fee-courses-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
    .fee-course-card__image { height: 160px !important; }

    .fee-about-grid { gap: 24px !important; }
    .fee-widget .fee-about-text h2 { font-size: 20px !important; padding-left: 12px !important; }
    .fee-widget .fee-about-text p { font-size: 13px !important; line-height: 1.6 !important; }
    .fee-about-text ul li { font-size: 13px !important; gap: 8px !important; }
    .fee-about-text ul { margin: 0 0 20px !important; }

    .fee-educator-card__photo { height: 160px !important; }
    .fee-educator-card__body { padding: 18px 16px !important; }
    .fee-widget .fee-educator-card__body h3 { font-size: 16px !important; }
    .fee-widget .fee-educator-card__body p { font-size: 13px !important; }

    .fee-review-card { padding: 22px 18px !important; }
    .fee-review-card__name { font-size: 14px !important; }
    .fee-widget .fee-review-card p { font-size: 13px !important; }

    .fee-widget.fee-cta-banner { padding: 36px 0 !important; }
    .fee-widget.fee-cta-banner h2 { font-size: 22px !important; }
    .fee-widget.fee-cta-banner p { font-size: 14px !important; }
    .fee-widget .fee-cta-approved { font-size: 12px !important; }
    .fee-cta-banner__buttons { flex-direction: column !important; align-items: center !important; gap: 10px !important; }
    .fee-cta-banner__buttons .fee-btn { width: 100% !important; max-width: 260px !important; text-align: center !important; }

    .fee-widget .fee-faq-question { font-size: 14px !important; padding: 18px 40px 18px 0 !important; }
    .fee-faq-answer__inner { font-size: 13px !important; line-height: 1.6 !important; }

    .fee-widget .fee-section-heading { margin-bottom: 12px !important; }
    .fee-widget .fee-section-subtitle { font-size: 14px !important; margin: 0 auto 24px !important; }
    .fee-carousel-controls { gap: 12px !important; margin-top: 24px !important; }

    /* CEU sections */
    .fee-widget.fee-ceu-hero { padding: 36px 16px !important; }
    .fee-widget .fee-ceu-hero__content h1 { font-size: 26px !important; margin-bottom: 12px !important; }
    .fee-widget .fee-ceu-hero__content p { font-size: 13px !important; margin-bottom: 20px !important; }
    .fee-ceu-hero__buttons { margin-bottom: 16px !important; }

    .fee-provider-cards { grid-template-columns: 1fr !important; }

    .fee-all-courses__grid { grid-template-columns: 1fr !important; }
    .fee-search-results__grid { grid-template-columns: 1fr !important; }

    .fee-widget .fee-ce-info__text h2 { font-size: 20px !important; padding-left: 12px !important; }
    .fee-widget .fee-ce-info__text p { font-size: 13px !important; }
}

/* ========== COURSE SEARCH RESULTS ========== */
.fee-widget.fee-search-results {
    padding: var(--fee-section-pad) 0 !important;
    background: var(--fee-white) !important;
}

.fee-search-results__filters {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
    justify-content: center !important;
}

.fee-search-results__tag {
    display: inline-block !important;
    background: rgba(12, 113, 195, 0.08) !important;
    color: var(--fee-blue-primary) !important;
    font-family: var(--fee-font-heading) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
}

.fee-search-results__count {
    text-align: center !important;
    font-family: var(--fee-font-heading) !important;
    font-size: 14px !important;
    color: var(--fee-body-gray) !important;
    margin-bottom: 32px !important;
}

.fee-search-results__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
}

.fee-search-results__empty {
    text-align: center !important;
    padding: 60px 0 !important;
}

.fee-search-results__empty p {
    font-family: var(--fee-font-heading) !important;
    font-size: 16px !important;
    color: var(--fee-body-gray) !important;
}

.fee-course-card__cats {
    display: block !important;
    font-family: var(--fee-font-heading) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: var(--fee-blue-primary) !important;
    margin-bottom: 4px !important;
}

.fee-course-card__ceu {
    display: inline-block !important;
    font-family: var(--fee-font-heading) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: var(--fee-blue-primary) !important;
    background: rgba(12, 113, 195, 0.08) !important;
    padding: 3px 10px !important;
    border-radius: 12px !important;
    margin-bottom: 6px !important;
}

.fee-course-card__excerpt {
    font-family: var(--fee-font-body) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: var(--fee-body-gray) !important;
    margin: 0 0 8px !important;
}

@media (max-width: 360px) {
    .fee-widget .fee-hero__content h1 { font-size: 22px !important; }
    .fee-widget .fee-hero__content h2 { font-size: 14px !important; }
    .fee-hero__buttons .fee-btn { max-width: 100% !important; }
    .fee-ceu-hero__buttons .fee-btn { max-width: 100% !important; }
    .fee-cta-banner__buttons .fee-btn { max-width: 100% !important; }
    .fee-logo-bar__item { width: 76px !important; height: 34px !important; font-size: 9px !important; }
    .fee-widget .fee-btn { padding: 11px 22px !important; font-size: 12px !important; }
    .fee-widget .fee-btn--sm { padding: 9px 18px !important; font-size: 11px !important; }
    .fee-widget .fee-ceu-hero__content h1 { font-size: 22px !important; }
}
