:root {
    --primary: #b11226;
    --dark: #0f172a;
    --soft: #f8fafc;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #111;
}

.topbar {
    background: #fff;
    border-bottom: 3px solid var(--primary);
    padding: 14px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.topbar nav a {
    margin-left: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

.topbar nav a:hover {
    color: var(--primary);
}


.ticker {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 6px 0;
}


.hero-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.hero {
    position: relative;
    height: 460px;
    overflow: hidden;
}


.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .8));
}


.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    color: white;
}

.hero-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin: .6rem 0;
}

.hero-meta {
    font-size: 14px;
    opacity: .9;
}

.hero-tag {
    background: #b11226;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 50px;
    width: max-content;
}

.main-news {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.main-news img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.main-news .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .9));
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.main-news span {
    background: var(--primary);
    padding: 5px 14px;
    font-size: 12px;
    border-radius: 30px;
    display: inline-block;
}

.side-news {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.side-news img {
    width: 120px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
}

.side-news span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

.side-news h6 {
    font-weight: 700;
}


.section-title {
    border-left: 5px solid var(--primary);
    padding-left: 12px;
    margin-bottom: 20px;
    font-weight: 800;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: .3s;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.news-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.tag {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}


.footer {
    background: #020617;
    color: #cbd5f5;
    padding: 25px 0;
    margin-top: 50px;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 2rem 1rem;
}

.article {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.content {
    padding: 3rem;
    max-width: 880px;
    margin: auto;
}

.content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.3rem;
}

.content h2 {
    margin: 3rem 0 1rem;
    border-left: 5px solid var(--primary);
    padding-left: 12px;
}

.content img {
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}

/* Full width */
.img-full {
    width: 100%;
    margin: 2.5rem 0;
}

/* Float left */
.img-left {
    float: left;
    width: 42%;
    margin: .5rem 1.6rem 1rem 0;
}

/* Float right */
.img-right {
    float: right;
    width: 42%;
    margin: .5rem 0 1rem 1.6rem;
}

/* Small square */
.img-small {
    float: left;
    width: 170px;
    height: 170px;
    object-fit: cover;
    margin: .4rem 1.2rem .8rem 0;
}

.clear {
    clear: both;
}

@media(max-width:768px) {
    .hero {
        height: 320px;
    }

    .hero-overlay {
        padding: 1.8rem;
    }

    .hero-overlay h1 {
        font-size: 1.9rem;
    }

    .content {
        padding: 2rem 1.5rem;
    }

    .img-left,
    .img-right,
    .img-small {
        float: none;
        width: 100%;
        height: auto;
        margin: 1.5rem 0;
    }
}