/* Berita Card Styles */
.berita-card {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.berita-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #18cbf4, #f4b518);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.berita-card:hover::before {
    transform: scaleX(1);
}

/* Category Badge */
.category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Read More Link */
.read-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #18cbf4;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #18cbf4;
    transition: width 0.3s ease;
}

.read-more:hover::after {
    width: 100%;
}

/* Featured Article */
.featured-article {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.featured-article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 50%);
    z-index: 1;
}

/* Hero section for berita page */
.berita-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
            center/cover no-repeat;
}
