/* ===== HERO NEWS ===== */
.hero-news {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-news::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
}

.hero-news .container {
    position: relative;
    z-index: 2;
}

/* ===== ARTICLE CARD ===== */
.article-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.article-image {
    height: 380px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== ARTICLE CONTENT ===== */
.article-body {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #444;
}

/* ===== SIDEBAR ===== */
.sidebar-card {
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.sidebar-card:hover {
    transform: translateY(-3px);
}

/* ===== SOCIAL BUTTONS ===== */
.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}