.fc-home-wrap{
    max-width:1180px;
    margin:0 auto;
    padding:28px 16px 48px;
}

.fc-news-section{
    margin-bottom:44px;
}

.fc-section-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:2px solid #111;
    margin-bottom:18px;
    gap:16px;
}

.fc-section-head h2{
    font-size:24px;
    line-height:1.15;
    margin:0;
    padding-bottom:10px;
    text-transform:uppercase;
    font-weight:800;
    letter-spacing:-.02em;
}

.fc-section-more{
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    color:#046bd2;
    white-space:nowrap;
    transition:color .2s ease;
}

.fc-section-more:hover{
    color:#034f9d;
}

.fc-news-grid{
    display:grid;
    grid-template-columns:minmax(0,1.35fr) minmax(320px,.85fr);
    gap:18px;
}

.fc-card{
    background:#fff;
}

.fc-card a{
    text-decoration:none;
    color:inherit;
    transition:color .2s ease;
}

.fc-card a:hover h3{
    color:#046bd2;
}

.fc-card-image{
    display:block;
    overflow:hidden;
    background:#f3f3f3;
    border-radius:14px;
}

.fc-card-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .25s ease;
}

.fc-card:hover .fc-card-image img{
    transform:scale(1.035);
}

.fc-card-featured{
    grid-row:span 3;
}

.fc-card-featured .fc-card-image{
    aspect-ratio:16/9;
}

.fc-card-featured h3{
    font-size:28px;
    line-height:1.08;
    margin:9px 0 8px;
    font-weight:850;
    letter-spacing:-.03em;
    transition:color .2s ease;
}

.fc-card-featured p{
    font-size:15px;
    line-height:1.45;
    color:#555;
    margin:0 0 8px;
}

.fc-card-compact{
    display:grid;
    grid-template-columns:132px minmax(0,1fr);
    gap:12px;
    align-items:center;
    border-bottom:1px solid #e8e8e8;
    padding-bottom:12px;
}

.fc-card-compact .fc-card-image{
    aspect-ratio:4/3;
    border-radius:10px;
}

.fc-card-compact h3{
    font-size:16px;
    line-height:1.22;
    margin:4px 0 6px;
    font-weight:800;
    transition:color .2s ease;
}

.fc-card-cat{
    display:inline-block;
    font-size:11px;
    line-height:1;
    text-transform:uppercase;
    font-weight:800;
    color:#046bd2;
    letter-spacing:.03em;
}

.fc-card time{
    display:block;
    font-size:12px;
    color:#777;
}

.fc-card-placeholder{
    aspect-ratio:16/9;
    background:#eee;
}

.fc-card-compact .fc-card-placeholder{
    aspect-ratio:4/3;
}

@media(max-width:768px){

    .fc-home-wrap{
        padding:20px 14px 36px;
    }

    .fc-news-section{
        margin-bottom:34px;
    }

    .fc-section-head h2{
        font-size:20px;
    }

    .fc-news-grid{
        display:block;
    }

    .fc-card-featured{
        margin-bottom:14px;
    }

    .fc-card-featured h3{
        font-size:23px;
    }

    .fc-card-compact{
    display:grid;
    grid-template-columns:132px minmax(0,1fr);
    gap:10px;
    align-items:center;
    border-bottom:0;
    padding:2px 0;
}

.fc-card-compact + .fc-card-compact{
    margin-top:4px;
}

    .fc-card-compact h3{
        font-size:15px;
    }

    .fc-card-featured p{
        display:none;
    }

}