:root {
    --fcf-blue: #002D56;
    --fcf-yellow: #FFD200;
    --fcf-red: #CE1126;
    --fcf-white: #ffffff;
    --fcf-black: #1a1a1a;
    --fcf-gray: #f4f4f4;
}

.fcf-news-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--fcf-black);
    max-width: 1200px;
    margin: 20px auto;
    transition: max-width 0.3s ease;
}

.fcf-news-container.fcf-fullwidth {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

/* Featured Section */
.fcf-featured-section {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
    background: var(--fcf-blue);
}

.fcf-featured-slide {
    height: 100%;
    position: relative;
}

.fcf-featured-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.fcf-featured-slide:hover .fcf-featured-image {
    transform: scale(1.05);
}

.fcf-scrim {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0, 45, 86, 0.95));
}

.fcf-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    z-index: 2;
    width: 100%;
}

.fcf-featured-title {
    margin: 15px 0 0;
    font-size: 32px;
    color: var(--fcf-white);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.fcf-featured-title a {
    color: inherit;
    text-decoration: none;
}

/* Sidebar Section */
.fcf-sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 5px;
}

.fcf-sidebar-section::-webkit-scrollbar {
    width: 4px;
}

.fcf-sidebar-section::-webkit-scrollbar-thumb {
    background: var(--fcf-blue);
    border-radius: 10px;
}

.fcf-sidebar-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    align-items: center;
}

.fcf-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.fcf-sidebar-thumb {
    flex: 0 0 100px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
}

.fcf-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fcf-sidebar-content {
    flex: 1;
}

.fcf-sidebar-title {
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.fcf-sidebar-title a {
    color: var(--fcf-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fcf-sidebar-title a:hover {
    color: var(--fcf-yellow);
}

/* Shared Components */
.fcf-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.fcf-badge {
    background: var(--fcf-white);
    color: var(--fcf-blue);
    padding: 4px 12px;
    border-radius: 4px;
    min-width: 140px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--fcf-red);
    transition: all 0.3s ease;
}

.fcf-featured-content .fcf-badge {
    background: var(--fcf-yellow);
    color: var(--fcf-blue);
    border-left: 4px solid var(--fcf-red);
}

.fcf-sidebar-item .fcf-badge {
    background: var(--fcf-white);
    color: var(--fcf-blue);
}

.fcf-sidebar-item:hover .fcf-badge {
    background: var(--fcf-yellow);
    transform: translateX(5px);
}

.fcf-date {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.fcf-sidebar-item .fcf-date {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 992px) {
    .fcf-news-container {
        grid-template-columns: 1fr;
    }

    .fcf-featured-section {
        height: 400px;
    }

    .fcf-sidebar-section {
        max-height: none;
    }
}

@media (max-width: 576px) {
    .fcf-featured-title {
        font-size: 24px;
    }

    .fcf-sidebar-thumb {
        flex: 0 0 80px;
        height: 60px;
    }
}