/* ==== Berita & Update Kampus ==== */

.gc-berita * {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.gc-berita {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
    border-top: 1px solid #F0F2F6;
    padding: 52px 32px;
}

.gc-berita-container{
    position:relative;
    z-index:1;
}

.gc-berita-container {
    max-width: 1180px;
    margin: 0 auto;
}

.gc-berita-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gc-berita-card {
    display: block;
    position: relative;
    text-decoration: none;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e8edf4;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gc-berita-card::before{
    content:"";
    position:absolute;
    top:0; left:0; right:0;
    height:4px;
    background: var(--gold, #5B4CE0);
    z-index: 2;
}

.gc-berita-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.gc-berita-img {
    height: 190px;
    border-radius: 11px 11px 0 0;
    border-radius: 12px;
    overflow: hidden;
}

.gc-berita-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gc-berita-body {
    padding: 20px 16px;
}

.gc-berita-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy, #171B2E);
    line-height: 1.4;
    margin: 0 0 8px;
}

.gc-berita-body p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #6B7280;
    margin: 0;
}

@media (max-width: 900px) {
    .gc-berita-grid {
        grid-template-columns: 1fr;
    }
}