
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f4f7fb;
}

/* SECTION */
.campus-overview{
    width:100%;
    padding:90px 20px;
    background:#ffffff;
}

.overview-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* CONTENT */
.section-badge{
    display:inline-block;
    background:#dbeafe;
    color:#2563eb;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.overview-content h2{
    font-size:48px;
    color:#111827;
    line-height:1.2;
    margin-bottom:25px;
}

.overview-content p{
    font-size:17px;
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

/* FEATURES */
.overview-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:35px;
    margin-bottom:35px;
}

.feature-box{
    display:flex;
    gap:15px;
    background:#f8fafc;
    padding:18px;
    border-radius:18px;
    transition:0.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
    background:#eff6ff;
}

.feature-box i{
    font-size:30px;
}

.feature-box h4{
    color:#111827;
    margin-bottom:6px;
    font-size:18px;
}

.feature-box p{
    margin:0;
    font-size:14px;
    line-height:1.5;
}

/* BUTTON */
.overview-btn{
    display:inline-block;
    background:#2563eb;
    color:white;
    padding:14px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.overview-btn:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

/* IMAGES */
.image-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.img-box{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
    display:block;
}

.img-box:hover img{
    transform:scale(1.08);
}

/* LARGE IMAGE */
.large{
    grid-row:span 2;
    height:500px;
}

.image-grid .img-box:not(.large){
    height:240px;
}

/* RESPONSIVE */
@media(max-width:992px){

    .overview-container{
        grid-template-columns:1fr;
    }

    .overview-content{
        text-align:center;
    }

    .overview-features{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .campus-overview{
        padding:70px 15px;
    }

    .overview-content h2{
        font-size:34px;
    }

    .overview-content p{
        font-size:15px;
    }

    .image-grid{
        grid-template-columns:1fr;
    }

    .large{
        height:300px;
    }

    .image-grid .img-box:not(.large){
        height:220px;
    }
}
