/* /Components/ChatWidget.razor.rz.scp.css */
/* =============================================================================
   Chat Widget Styles - Copilot-style floating chat assistant
   ============================================================================= */

.chat-widget[b-xiqh8rcmzb] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Floating Action Button */
.chat-fab[b-xiqh8rcmzb] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0078d4 0%, #004578 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 120, 212, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.chat-fab:hover[b-xiqh8rcmzb] {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(0, 120, 212, 0.5);
}

.chat-fab.hidden[b-xiqh8rcmzb] {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.fab-badge[b-xiqh8rcmzb] {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #d13438;
    color: white;
    font-size: 11px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Chat Panel */
.chat-panel[b-xiqh8rcmzb] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 600px;
    max-height: calc(100vh - 100px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
    overflow: hidden;
}

.chat-panel.open[b-xiqh8rcmzb] {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Chat Header */
.chat-header[b-xiqh8rcmzb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, #0078d4 0%, #004578 100%);
    color: white;
}

.chat-header-info[b-xiqh8rcmzb] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.assistant-avatar[b-xiqh8rcmzb] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.assistant-info[b-xiqh8rcmzb] {
    display: flex;
    flex-direction: column;
}

.assistant-name[b-xiqh8rcmzb] {
    font-weight: 600;
    font-size: 16px;
}

.assistant-status[b-xiqh8rcmzb] {
    font-size: 12px;
    opacity: 0.9;
}

.chat-header-actions[b-xiqh8rcmzb] {
    display: flex;
    gap: 8px;
}

.header-btn[b-xiqh8rcmzb] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.header-btn:hover[b-xiqh8rcmzb] {
    background: rgba(255, 255, 255, 0.25);
}

/* Messages Area */
.chat-messages[b-xiqh8rcmzb] {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #f5f5f5;
}

.message[b-xiqh8rcmzb] {
    display: flex;
    gap: 10px;
    max-width: 90%;
}

.message.user[b-xiqh8rcmzb] {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message.assistant[b-xiqh8rcmzb] {
    align-self: flex-start;
}

.message-avatar[b-xiqh8rcmzb] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0078d4 0%, #004578 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-content[b-xiqh8rcmzb] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message-bubble[b-xiqh8rcmzb] {
    padding: 12px 16px;
    border-radius: 16px;
    line-height: 1.5;
    font-size: 14px;
}

.message.user .message-bubble[b-xiqh8rcmzb] {
    background: #0078d4;
    color: white;
    border-bottom-right-radius: 4px;
}

.message.assistant .message-bubble[b-xiqh8rcmzb] {
    background: white;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Markdown Styles inside message bubbles */
.message-bubble p[b-xiqh8rcmzb] {
    margin: 0 0 8px 0;
}

.message-bubble p:last-child[b-xiqh8rcmzb] {
    margin-bottom: 0;
}

.message-bubble ul[b-xiqh8rcmzb],
.message-bubble ol[b-xiqh8rcmzb] {
    margin: 8px 0;
    padding-left: 20px;
}

.message-bubble li[b-xiqh8rcmzb] {
    margin: 4px 0;
}

.message-bubble a[b-xiqh8rcmzb] {
    color: #0078d4;
    text-decoration: none;
}

.message-bubble a:hover[b-xiqh8rcmzb] {
    text-decoration: underline;
}

.message.user .message-bubble a[b-xiqh8rcmzb] {
    color: #b3d9ff;
}

.message-bubble strong[b-xiqh8rcmzb] {
    font-weight: 600;
}

.message-bubble code[b-xiqh8rcmzb] {
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
}

.message-bubble blockquote[b-xiqh8rcmzb] {
    margin: 8px 0;
    padding: 8px 12px;
    border-left: 3px solid #0078d4;
    background: rgba(0, 120, 212, 0.05);
}

.message-bubble h1[b-xiqh8rcmzb],
.message-bubble h2[b-xiqh8rcmzb],
.message-bubble h3[b-xiqh8rcmzb] {
    margin: 12px 0 8px 0;
    font-weight: 600;
}

.message-bubble h1[b-xiqh8rcmzb] { font-size: 18px; }
.message-bubble h2[b-xiqh8rcmzb] { font-size: 16px; }
.message-bubble h3[b-xiqh8rcmzb] { font-size: 15px; }

/* Typing Indicator */
.typing-indicator[b-xiqh8rcmzb] {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-indicator span[b-xiqh8rcmzb] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0078d4;
    animation: typing-b-xiqh8rcmzb 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1)[b-xiqh8rcmzb] { animation-delay: 0s; }
.typing-indicator span:nth-child(2)[b-xiqh8rcmzb] { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3)[b-xiqh8rcmzb] { animation-delay: 0.4s; }

@keyframes typing-b-xiqh8rcmzb {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-8px); opacity: 1; }
}

/* Citations */
.message-citations[b-xiqh8rcmzb] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.citations-label[b-xiqh8rcmzb] {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.citation-link[b-xiqh8rcmzb] {
    font-size: 11px;
    color: #0078d4;
    text-decoration: none;
    background: #e6f2ff;
    padding: 2px 8px;
    border-radius: 12px;
    transition: background 0.2s;
}

.citation-link:hover[b-xiqh8rcmzb] {
    background: #cce5ff;
    text-decoration: underline;
}

/* Feedback */
.message-feedback[b-xiqh8rcmzb] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feedback-label[b-xiqh8rcmzb] {
    font-size: 11px;
    color: #666;
}

.feedback-btn[b-xiqh8rcmzb] {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.feedback-btn:hover[b-xiqh8rcmzb] {
    border-color: #0078d4;
    color: #0078d4;
}

.feedback-btn.active[b-xiqh8rcmzb] {
    background: #e6f2ff;
    border-color: #0078d4;
    color: #0078d4;
}

/* Follow-up Suggestions */
.follow-up-suggestions[b-xiqh8rcmzb] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.suggestion-chip[b-xiqh8rcmzb] {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #0078d4;
    background: white;
    color: #0078d4;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.suggestion-chip:hover[b-xiqh8rcmzb] {
    background: #0078d4;
    color: white;
}

/* Input Area */
.chat-input-area[b-xiqh8rcmzb] {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid #eee;
}

.chat-input-container[b-xiqh8rcmzb] {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    background: #f5f5f5;
    border-radius: 24px;
    padding: 8px 8px 8px 16px;
}

.chat-input-container textarea[b-xiqh8rcmzb] {
    flex: 1;
    border: none;
    background: transparent;
    resize: none;
    font-size: 14px;
    line-height: 1.5;
    max-height: 120px;
    padding: 6px 0;
    font-family: inherit;
}

.chat-input-container textarea:focus[b-xiqh8rcmzb] {
    outline: none;
}

.chat-input-container textarea[b-xiqh8rcmzb]::placeholder {
    color: #888;
}

.send-btn[b-xiqh8rcmzb] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #0078d4;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.send-btn:hover:not(:disabled)[b-xiqh8rcmzb] {
    background: #005a9e;
}

.send-btn:disabled[b-xiqh8rcmzb] {
    background: #ccc;
    cursor: not-allowed;
}

.spinner[b-xiqh8rcmzb] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-xiqh8rcmzb 0.8s linear infinite;
}

@keyframes spin-b-xiqh8rcmzb {
    to { transform: rotate(360deg); }
}

.chat-disclaimer[b-xiqh8rcmzb] {
    text-align: center;
    font-size: 11px;
    color: #888;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 480px) {
    .chat-widget[b-xiqh8rcmzb] {
        bottom: 16px;
        right: 16px;
    }

    .chat-panel[b-xiqh8rcmzb] {
        width: calc(100vw - 32px);
        height: calc(100vh - 100px);
        bottom: 70px;
        right: 0;
    }

    .chat-fab[b-xiqh8rcmzb] {
        width: 56px;
        height: 56px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-gotrrtnh4b] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-gotrrtnh4b] {
    flex: 1;
}

.sidebar[b-gotrrtnh4b] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-gotrrtnh4b] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-gotrrtnh4b]  a, .top-row[b-gotrrtnh4b]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-gotrrtnh4b]  a:hover, .top-row[b-gotrrtnh4b]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-gotrrtnh4b]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-gotrrtnh4b] {
        justify-content: space-between;
    }

    .top-row[b-gotrrtnh4b]  a, .top-row[b-gotrrtnh4b]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-gotrrtnh4b] {
        flex-direction: row;
    }

    .sidebar[b-gotrrtnh4b] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-gotrrtnh4b] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-gotrrtnh4b]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-gotrrtnh4b], article[b-gotrrtnh4b] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-fqd0b6sg2l] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-fqd0b6sg2l] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-fqd0b6sg2l] {
    font-size: 1.1rem;
}

.bi[b-fqd0b6sg2l] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-fqd0b6sg2l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-fqd0b6sg2l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-fqd0b6sg2l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-fqd0b6sg2l] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-fqd0b6sg2l] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-fqd0b6sg2l] {
        padding-bottom: 1rem;
    }

    .nav-item[b-fqd0b6sg2l]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-fqd0b6sg2l]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-fqd0b6sg2l]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-fqd0b6sg2l] {
        display: none;
    }

    .collapse[b-fqd0b6sg2l] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-fqd0b6sg2l] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* =============================================================================
   CM Feira Style - Home Page
   ============================================================================= */

/* Root Variables - CM Feira Brand Colors */
:root[b-2g283g23ge] {
    --primary-color: #1a4d7c;
    --primary-dark: #0d3a5c;
    --secondary-color: #c9a227;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-lg: 16px;
}

*[b-2g283g23ge] {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body[b-2g283g23ge] {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container[b-2g283g23ge] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header[b-2g283g23ge] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.header-top[b-2g283g23ge] {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.header-top-content[b-2g283g23ge] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links[b-2g283g23ge] {
    display: flex;
    gap: 12px;
}

.social-links a[b-2g283g23ge] {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.social-links a:hover[b-2g283g23ge] {
    opacity: 1;
}

.header-top-links[b-2g283g23ge] {
    display: flex;
    gap: 20px;
}

.header-top-links a[b-2g283g23ge] {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.header-top-links a:hover[b-2g283g23ge] {
    opacity: 1;
}

.header-main[b-2g283g23ge] {
    padding: 16px 0;
}

.header-main-content[b-2g283g23ge] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo[b-2g283g23ge] {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
}

.logo img[b-2g283g23ge] {
    height: 50px;
    width: auto;
}

.logo-text[b-2g283g23ge] {
    display: flex;
    flex-direction: column;
}

.logo-title[b-2g283g23ge] {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.logo-subtitle[b-2g283g23ge] {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav ul[b-2g283g23ge] {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a[b-2g283g23ge] {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
}

.main-nav a:hover[b-2g283g23ge] {
    color: var(--primary-color);
}

.main-nav a[b-2g283g23ge]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.2s;
}

.main-nav a:hover[b-2g283g23ge]::after {
    width: 100%;
}

.search-btn[b-2g283g23ge] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--bg-light);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.search-btn:hover[b-2g283g23ge] {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero[b-2g283g23ge] {
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero[b-2g283g23ge]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-castle.jpg') center/cover;
    opacity: 0.3;
}

.hero-slide[b-2g283g23ge] {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content[b-2g283g23ge] {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
    width: 100%;
}

.hero-content h1[b-2g283g23ge] {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p[b-2g283g23ge] {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-btn[b-2g283g23ge] {
    display: inline-block;
    padding: 14px 36px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.hero-btn:hover[b-2g283g23ge] {
    background: #b8911e;
    transform: translateY(-2px);
}

/* Quick Links Section */
.quick-links[b-2g283g23ge] {
    padding: 60px 0;
    background: var(--white);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.quick-links-grid[b-2g283g23ge] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.quick-link-card[b-2g283g23ge] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.quick-link-card:hover[b-2g283g23ge] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.quick-link-card:hover .quick-link-icon[b-2g283g23ge] {
    background: var(--primary-color);
    color: var(--white);
}

.quick-link-icon[b-2g283g23ge] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.quick-link-card span[b-2g283g23ge] {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Section Styles */
.section-header[b-2g283g23ge] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-header h2[b-2g283g23ge] {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.see-all[b-2g283g23ge] {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.see-all:hover[b-2g283g23ge] {
    color: var(--primary-dark);
}

/* News Section */
.news-section[b-2g283g23ge] {
    padding: 60px 0;
    background: var(--bg-light);
}

.news-grid[b-2g283g23ge] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.news-card[b-2g283g23ge] {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.news-card:hover[b-2g283g23ge] {
    box-shadow: var(--shadow-lg);
}

.news-card.featured[b-2g283g23ge] {
    grid-row: span 2;
}

.news-image[b-2g283g23ge] {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
}

.news-card.featured .news-image[b-2g283g23ge] {
    height: 260px;
}

.news-image img[b-2g283g23ge] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content[b-2g283g23ge] {
    padding: 20px;
}

.news-category[b-2g283g23ge] {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.news-content h3[b-2g283g23ge] {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
    line-height: 1.4;
}

.news-card.featured .news-content h3[b-2g283g23ge] {
    font-size: 22px;
}

.news-content p[b-2g283g23ge] {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.news-date[b-2g283g23ge] {
    font-size: 12px;
    color: var(--text-light);
}

/* Events Section */
.events-section[b-2g283g23ge] {
    padding: 60px 0;
    background: var(--white);
}

.events-grid[b-2g283g23ge] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card[b-2g283g23ge] {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.event-card:hover[b-2g283g23ge] {
    background: var(--primary-color);
    color: var(--white);
}

.event-card:hover .event-date[b-2g283g23ge] {
    background: var(--white);
    color: var(--primary-color);
}

.event-date[b-2g283g23ge] {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.event-date .day[b-2g283g23ge] {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.event-date .month[b-2g283g23ge] {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-content h3[b-2g283g23ge] {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-location[b-2g283g23ge],
.event-time[b-2g283g23ge] {
    font-size: 13px;
    opacity: 0.8;
}

/* Footer */
.site-footer[b-2g283g23ge] {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid[b-2g283g23ge] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4[b-2g283g23ge] {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col ul[b-2g283g23ge] {
    list-style: none;
}

.footer-col ul li[b-2g283g23ge] {
    margin-bottom: 10px;
}

.footer-col a[b-2g283g23ge] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover[b-2g283g23ge] {
    color: var(--white);
}

.footer-col p[b-2g283g23ge] {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-bottom[b-2g283g23ge] {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p[b-2g283g23ge] {
    font-size: 13px;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
    .quick-links-grid[b-2g283g23ge] {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-grid[b-2g283g23ge] {
        grid-template-columns: 1fr;
    }

    .news-card.featured[b-2g283g23ge] {
        grid-row: auto;
    }

    .events-grid[b-2g283g23ge] {
        grid-template-columns: 1fr;
    }

    .footer-grid[b-2g283g23ge] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-main-content[b-2g283g23ge] {
        flex-wrap: wrap;
    }

    .main-nav[b-2g283g23ge] {
        display: none; /* Would need mobile menu */
    }

    .hero-content h1[b-2g283g23ge] {
        font-size: 32px;
    }

    .quick-links-grid[b-2g283g23ge] {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid[b-2g283g23ge] {
        grid-template-columns: 1fr;
    }
}
