/**
 * Foothills Educational Resources - Public Styles
 * v2.1.0 - Matching FCC "Our Values" aesthetic
 *
 * Palette (from Our Values page):
 *   Navy:       #0f1d29
 *   Deep Blue:  #14304f
 *   Sky:        #5391de
 *   Sky Light:  #7baeed
 *   Gold:       #c9a227
 *   Cream:      #f6f1eb
 *   Warm White: #faf8f5
 *   Slate:      #454F5E
 *   Ice:        #e8f3f8
 */

/* ============================================
   Variables & Reset
   ============================================ */
.fcr-wrapper {
    --navy: #0f1d29;
    --deep-blue: #14304f;
    --sky: #5391de;
    --sky-light: #7baeed;
    --gold: #c9a227;
    --cream: #f6f1eb;
    --warm-white: #faf8f5;
    --slate: #454F5E;
    --ice: #e8f3f8;
    --border: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 4px 30px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.07);
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.7;
    color: var(--navy);
    font-weight: 300;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

.fcr-wrapper *,
.fcr-wrapper *::before,
.fcr-wrapper *::after {
    box-sizing: border-box;
}

/* ============================================
   Header — Editorial Hero
   ============================================ */
.fcr-header {
    background: var(--navy);
    color: white;
    padding: 100px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fcr-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(83, 145, 222, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.fcr-header-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fcr-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.fcr-header-badge svg {
    opacity: 0.7;
}

.fcr-header-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
    color: #ffffff !important;
}

.fcr-header-subtitle {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

.fcr-header-accent {
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin: 32px auto 0;
    border-radius: 2px;
}

/* ============================================
   Filter Bar
   ============================================ */
.fcr-filter-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 100;
    transition: box-shadow 0.3s;
}

@media (min-width: 768px) {
    .fcr-filter-bar {
        position: sticky;
        top: 0;
    }
}

.fcr-filter-bar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.fcr-filter-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 40px;
    transition: padding 0.3s;
}

.fcr-filter-bar.scrolled .fcr-filter-content {
    padding: 12px 40px;
}

.fcr-mobile-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 24px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 100px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-bottom: 16px;
    transition: background 0.3s;
}

.fcr-mobile-toggle:hover {
    background: var(--deep-blue);
}

.fcr-filter-container {
    display: block;
}

.fcr-search-wrapper {
    position: relative;
    max-width: 480px;
    margin-bottom: 16px;
}

.fcr-filter-bar.scrolled .fcr-search-wrapper {
    max-width: 360px;
    margin-bottom: 10px;
}

.fcr-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate);
    pointer-events: none;
    opacity: 0.5;
}

.fcr-search-input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 300;
    background: var(--warm-white);
    color: var(--navy);
    transition: all 0.3s;
}

.fcr-search-input:focus {
    outline: none;
    background: white;
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(83, 145, 222, 0.12);
}

.fcr-filter-bar.scrolled .fcr-search-input {
    padding: 8px 12px 8px 40px;
    font-size: 14px;
}

.fcr-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fcr-filter-bar.scrolled .fcr-filters {
    gap: 6px;
}

.fcr-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fcr-filter-chip {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: white;
    color: var(--slate);
    cursor: pointer;
    transition: all 0.3s;
}

.fcr-filter-bar.scrolled .fcr-filter-chip {
    padding: 6px 16px;
    font-size: 13px;
}

.fcr-filter-chip:hover {
    background: var(--ice);
    border-color: var(--sky);
    color: var(--navy);
}

.fcr-filter-chip.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.fcr-favorites-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fcr-favorites-filter.active {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.fcr-favorites-filter.active svg {
    fill: currentColor;
}

.fcr-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.fcr-filter-bar.scrolled .fcr-controls {
    margin-top: 8px;
    padding-top: 8px;
}

.fcr-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fcr-sort-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fcr-sort-select {
    padding: 8px 28px 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: white;
    color: var(--slate);
    cursor: pointer;
    transition: border-color 0.2s;
}

.fcr-sort-select:focus {
    outline: none;
    border-color: var(--sky);
}

.fcr-view-switcher {
    display: flex;
    gap: 4px;
    background: var(--cream);
    padding: 4px;
    border-radius: 100px;
}

.fcr-view-button {
    padding: 8px;
    border: none;
    background: transparent;
    color: var(--slate);
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s;
    opacity: 0.5;
}

.fcr-view-button:hover {
    opacity: 0.8;
}

.fcr-view-button.active {
    background: white;
    color: var(--sky);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ============================================
   Main Content
   ============================================ */
.fcr-main {
    background: var(--warm-white);
    padding: 60px 40px 80px;
    min-height: 400px;
}

.fcr-main-content {
    max-width: 1100px;
    margin: 0 auto;
}

.fcr-results-count {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 32px;
    opacity: 0.6;
}

/* ============================================
   Loading & Empty States
   ============================================ */
.fcr-loading {
    text-align: center;
    padding: 60px 20px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    color: var(--slate);
}

.fcr-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    border: 3px solid var(--cream);
    border-top-color: var(--sky);
    border-radius: 50%;
    animation: fcr-spin 0.8s linear infinite;
}

@keyframes fcr-spin {
    to { transform: rotate(360deg); }
}

.fcr-empty-state {
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.fcr-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--sky);
    opacity: 0.4;
}

.fcr-empty-state h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 8px 0;
}

.fcr-empty-state p {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    color: var(--slate);
    margin: 0 0 28px 0;
}

.fcr-clear-filters {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 100px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.fcr-clear-filters:hover {
    background: white;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   Resources Grid
   ============================================ */
.fcr-resources-grid {
    display: grid;
    gap: 28px;
    margin-bottom: 40px;
}

.fcr-resources-grid[data-view="grid"] {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.fcr-resources-grid[data-view="list"] {
    grid-template-columns: 1fr;
}

.fcr-resources-grid[data-view="list"] .fcr-resource-card {
    display: flex;
}

.fcr-resources-grid[data-view="list"] .fcr-card-inner {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
}

.fcr-resources-grid[data-view="list"] .fcr-card-thumbnail,
.fcr-resources-grid[data-view="list"] .fcr-card-video {
    display: none;
}

.fcr-resources-grid[data-view="list"] .fcr-card-title {
    font-size: 22px;
}

.fcr-resources-grid[data-view="compact"] {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.fcr-resources-grid[data-view="compact"] .fcr-resource-card {
    box-shadow: none;
}

.fcr-resources-grid[data-view="compact"] .fcr-card-inner {
    padding: 20px;
}

.fcr-resources-grid[data-view="compact"] .fcr-card-thumbnail,
.fcr-resources-grid[data-view="compact"] .fcr-card-video,
.fcr-resources-grid[data-view="compact"] .fcr-card-description {
    display: none;
}

/* ============================================
   Resource Card — Editorial Style
   ============================================ */
.fcr-resource-card {
    position: relative;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fcr-resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.fcr-featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 100px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
}

.fcr-card-inner {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fcr-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
    gap: 8px;
}

.fcr-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 100px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid;
}

.fcr-type-icon {
    color: var(--sky);
    flex-shrink: 0;
    opacity: 0.5;
}

.fcr-card-thumbnail {
    margin: -32px -32px 24px -32px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.fcr-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s;
}

.fcr-resource-card:hover .fcr-card-thumbnail img {
    filter: brightness(1.05);
}

.fcr-card-video {
    margin: -32px -32px 24px -32px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    position: relative;
    background: #000;
}

.fcr-card-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.fcr-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.fcr-card-title a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: color 0.3s;
}

.fcr-card-title a:hover {
    color: var(--sky);
}

.fcr-card-source {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--sky);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

/* Gold accent bar */
.fcr-card-source::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 12px;
    border-radius: 2px;
}

.fcr-card-description {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 16px;
    flex-grow: 1;
}

.fcr-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.fcr-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--ice);
    color: var(--slate);
    border-radius: 100px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.fcr-meta-item svg {
    flex-shrink: 0;
    color: var(--sky);
    opacity: 0.6;
}

.fcr-card-footer {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.fcr-favorite-btn {
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    color: var(--slate);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fcr-favorite-btn:hover {
    background: rgba(201, 162, 39, 0.08);
    border-color: var(--gold);
    color: var(--gold);
}

.fcr-favorite-btn.is-favorite {
    background: rgba(201, 162, 39, 0.08);
    border-color: var(--gold);
    color: var(--gold);
}

.fcr-open-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--navy);
    color: white;
    text-decoration: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.3s;
}

.fcr-open-btn:hover {
    background: white;
    color: var(--navy);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.fcr-open-btn svg {
    transition: transform 0.3s;
}

.fcr-open-btn:hover svg {
    transform: translateX(2px);
}

/* ============================================
   Pagination
   ============================================ */
.fcr-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.fcr-page-btn {
    padding: 10px 18px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: white;
    color: var(--slate);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s;
}

.fcr-page-btn:hover {
    background: var(--ice);
    border-color: var(--sky);
    color: var(--navy);
}

.fcr-page-btn.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

/* ============================================
   Footer
   ============================================ */
.fcr-footer {
    background: var(--navy);
    padding: 40px;
    position: relative;
}

.fcr-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky), var(--gold), var(--sky-light));
}

.fcr-footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.fcr-footer-content p {
    margin: 4px 0;
}

/* ============================================
   Preview Modal
   ============================================ */
.fcr-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.fcr-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fcr-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.fcr-modal-container {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
    animation: fcr-slideUp 0.3s ease;
}

.fcr-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    background: var(--cream);
}

.fcr-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--navy);
    margin: 0;
}

.fcr-modal-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--slate);
    transition: all 0.2s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fcr-modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--navy);
}

.fcr-modal-body {
    padding: 32px;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.fcr-modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    color: var(--slate);
}

.fcr-modal-loading p {
    margin-top: 20px;
}

.fcr-modal-content {
    display: grid;
    gap: 24px;
}

.fcr-modal-video {
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.fcr-modal-video iframe {
    width: 100%;
    height: 100%;
}

.fcr-modal-image {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
}

.fcr-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fcr-modal-description {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--slate);
}

.fcr-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.fcr-modal-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--slate);
}

.fcr-modal-meta-item svg {
    color: var(--sky);
}

.fcr-modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fcr-modal-actions {
    display: flex;
    gap: 12px;
    padding-top: 24px;
}

.fcr-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 100px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.fcr-modal-btn:hover {
    background: white;
    box-shadow: inset 0 0 0 1px var(--border);
}

@keyframes fcr-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fcr-slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .fcr-header {
        padding: 70px 24px 60px;
    }
    
    .fcr-mobile-toggle {
        display: flex;
        width: 100%;
        justify-content: center;
    }
    
    .fcr-filter-container.collapsed {
        display: none;
    }
    
    .fcr-filter-content {
        padding: 16px 24px;
    }
    
    .fcr-resources-grid[data-view="grid"] {
        grid-template-columns: 1fr;
    }
    
    .fcr-resources-grid[data-view="list"] .fcr-card-inner {
        flex-direction: column;
    }
    
    .fcr-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .fcr-sort-wrapper {
        width: 100%;
        justify-content: space-between;
    }
    
    .fcr-view-switcher {
        justify-content: center;
    }
    
    .fcr-main {
        padding: 40px 24px 60px;
    }
    
    .fcr-card-inner {
        padding: 24px;
    }
    
    .fcr-card-thumbnail,
    .fcr-card-video {
        margin: -24px -24px 20px -24px;
    }
    
    .fcr-modal-container {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .fcr-modal-header {
        padding: 16px 20px;
    }
    
    .fcr-modal-title {
        font-size: 20px;
    }
    
    .fcr-modal-body {
        padding: 20px;
        max-height: calc(100vh - 70px);
    }
    
    .fcr-modal-actions {
        flex-direction: column;
    }
    
    .fcr-modal-btn {
        width: 100%;
        justify-content: center;
    }
    
    .fcr-footer {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .fcr-header-title {
        font-size: 36px;
    }
    
    .fcr-header-subtitle {
        font-size: 14px;
    }
}
