/* BREAKING NEWS */

.breaking-news {
    background: var(--primary);
    color: var(--light);
    padding: 10px 0;
    overflow: hidden;
}

#ticker-container {
    font-size: .95rem;
    font-weight: 600;
    white-space: nowrap;
}

/* HERO SECTION */

.hero-section {
    padding: 30px 0;
    background: #fafafa;
}

/* HERO GRID */

.hero-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 25px;
}

/* HERO MAIN */

.hero-main-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-main-card img {
    width: 100%;
    height: 370px;
    object-fit: cover;
}

.hero-main-content {
    padding: 20px;
}

.hero-category {
    display: inline-block;
    background: rgba(122, 31, 31, .08);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 12px;
}

.hero-main-content p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* HERO SIDE */

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-side-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    min-height: 115px;
}

.hero-side-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .1);
}

.hero-side-card:hover h3 {
    color: var(--primary);
}

.hero-side-card a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    color: inherit;
}

.hero-side-card img {
    width: 140px;
    min-width: 140px;
    height: 125px;
    object-fit: cover;
    background: #eee;

}

.hero-side-content {
    flex: 1;
    padding: 12px 15px 12px 0;
}

.hero-side-content h3 {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 8px;
    font-weight: 700;
}

.hero-side-content p {
    color: var(--gray);
    font-size: .85rem;
    line-height: 1.5;
    margin-top: 5px;
}

/* PREMIUM HERO EFFECTS */

.hero-main-card {
    transition: .35s ease;
}

.hero-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.hero-main-card:hover .hero-title {
    color: var(--primary);
}

.hero-main-card img {
    transition: .5s ease;
}

.hero-main-card:hover img {
    transform: scale(1.03);
}

.hero-badge {
    display: inline-block;
    background: #d90429;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: .75rem;
    font-weight: 700;
    margin-right: 8px;
    text-transform: uppercase;
}

.hero-time {
    color: var(--gray);
    font-size: .85rem;
    margin-top: 12px;
    display: block;
}

/* MOBILE HERO */

@media (max-width: 992px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-main-card img {
        height: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }

}

@media (max-width: 576px) {

    .hero-section {
        padding: 15px 0;
    }

    .hero-main-card {
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .hero-main-card img {
        height: 240px;
    }

    .hero-main-content {
        padding: 12px 0;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        font-weight: 800;
    }

    .hero-main-content p {
        display: none;
    }

    .hero-side {
        display: none;
    }
}