.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.top-stories {
    padding: 50px 0;
}

/* Header */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-head h2 {
    font-size: 32px;
    margin: 0;
}

.see-all {
    color: #007bff;
    text-decoration: none;
    font-size: 15px;
}

/* Grid */
.stories-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

/* Main story */
.main-story img {
    width: 100%;
    border-radius: 8px;
}

.main-story .tag {
    display: inline-block;
    margin-top: 15px;
    font-size: 13px;
    color: #007bff;
}

.main-story h3 {
    font-size: 26px;
    margin: 10px 0;
}

.main-story p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Make links clean */
.main-story,
.story-item {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Side stories */
.side-stories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-item {
    display: flex;
    gap: 15px;
}

.story-item img {
    width: 110px;
    height: 75px;
    object-fit: cover;
    border-radius: 6px;
}

.story-item .tag {
    font-size: 12px;
    color: #007bff;
}

.story-item h4 {
    font-size: 15px;
    margin: 6px 0 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .main-story h3 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .story-item {
        flex-direction: column;
    }

    .story-item img {
        width: 100%;
        height: auto;
    }
}