/* Global Design System overrides */
.site-header, #masthead, .site-footer, #colophon, .aft-main-header, .aft-bottom-footer {
    display: none !important;
}

body {
    background-color: #ffffff;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.fmn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.fmn-global-header-c44ba466 {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 9999;
}
.fmn-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.fmn-logo strong {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
}
.fmn-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.fmn-nav a {
    color: #000;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}
.fmn-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.fmn-btn-subscribe {
    background: #ffb800;
    color: #000;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

/* Breaking News */
.fmn-breaking-news-c44ba466 {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    padding: 10px 0;
    font-size: 14px;
}
.fmn-breaking-label {
    background: #ffb800;
    color: #000;
    padding: 2px 8px;
    font-weight: 700;
    margin-right: 10px;
    border-radius: 2px;
}
.fmn-breaking-text {
    font-weight: 600;
}

/* Footer */
.fmn-global-footer-c44ba466 {
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    padding-top: 60px;
    margin-top: 60px;
}
.fmn-footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.fmn-footer-col {
    flex: 1;
    min-width: 200px;
}
.fmn-footer-col h3, .fmn-footer-col h4 {
    font-weight: 800;
    margin-bottom: 20px;
}
.fmn-footer-col ul {
    list-style: none;
    padding: 0;
}
.fmn-footer-col ul li {
    margin-bottom: 10px;
}
.fmn-footer-col a {
    color: #333;
    text-decoration: none;
}
.fmn-footer-bottom {
    border-top: 1px solid #eeeeee;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #666;
}

/* Category Page */
.fmn-category-page-c44ba466 {
    padding: 40px 20px;
}
.fmn-category-header {
    margin-bottom: 40px;
    border-bottom: 2px solid #000;
    padding-bottom: 20px;
}
.fmn-category-header h1 {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.fmn-category-layout {
    display: flex;
    gap: 40px;
}
.fmn-category-main {
    flex: 0 0 70%;
}
.fmn-category-sidebar {
    flex: 0 0 calc(30% - 40px);
}
.fmn-article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.fmn-article-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}
.fmn-article-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.fmn-article-content {
    padding: 20px;
}
.fmn-article-cat {
    color: #ffb800;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.fmn-article-content h2 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px;
}
.fmn-article-content h2 a {
    color: #000;
    text-decoration: none;
}
.fmn-article-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}
.fmn-article-excerpt {
    font-size: 14px;
    color: #444;
}

/* Sidebar Widgets */
.fmn-widget {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 30px;
}
.fmn-widget h3 {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.fmn-trending-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fmn-trending-widget li {
    font-weight: 700;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}
.fmn-market-item {
    font-weight: 700;
    margin-bottom: 10px;
}
.fmn-market-ticker-bottom {
    background: #000;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .fmn-category-layout {
        flex-direction: column;
    }
    .fmn-article-grid {
        grid-template-columns: 1fr;
    }
}
