/* ============================================================
   PREMIUM CAMPUS SECTION
   ============================================================ */

/* Section Background */
.campus-section {
    background: linear-gradient(180deg, #f6f9ff 0%, #f9f6ff 100%);
    padding-top: 50px;
    padding-bottom: 30px;
}

/* Title Row */
.campus-title {
    color: #0a1a4a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 0;
}

/* CTA Button */
.campus-btn {
    background: #3B82F6;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: 0.25s ease;
}

.campus-btn:hover {
    background: #1E6FE3;
    color: #fff;
    transform: translateY(-3px);
}

/* Article Cards */
.campus-article img {
    border-radius: 10px;
    transition: 0.3s ease;
}

.campus-article img:hover {
    transform: scale(1.03);
}

.campus-article h3 {
    color: #0a1a4a;
    margin-top: 15px;
    font-weight: 700;
}

.campus-article p {
    color: #0a1a4a;
    margin-bottom: 0;
}

/* Mobile alignment */
@media (max-width: 768px) {
    .campus-title {
        text-align: center;
        margin-bottom: 15px;
    }

    .campus-btn {
        margin: auto;
    }

    .campus-article {
        text-align: center;
    }
}
