.site-main {
    padding: 50px 100px;
}

.page-content {
    margin-top: 0px;
}

.section-title{
    margin: 20px 0;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    background-color: #1D2F3B;
    border-radius: 30px;
}

.staff-name{
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-top: 5px;
}

.staff-det{
    color: #939393;
}

.highlight > li{
    text-align: justify;
}

.highlight > li > i{
    font-size: 16px;
    color: #563A52;
}

.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* responsive columns */
    gap: 10px; /* spacing between items */
    padding: 30px;
}

.gallery-item{
    overflow: hidden;
    height: 250px;
}

.gallery-item > img{
    width: 100%;
    min-height: 250px;
    height: auto;
    transition: transform 0.5s ease;
}

.gallery-item > img:hover{
    transform: scale(1.2);
    cursor: pointer;
}

#imageModal {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
    padding-top: 60px;
}

#imageModal img {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 90%;
}

#imageModal span {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
}

.notification{
    padding: 10px;
}

.notification-item{
    padding: 10px;
    text-align: justify;
}

.notification-item > i{
    font-size: 16px;
    color: #1D2F3B;
}

@media (max-width: 768px) {
    .site-main {
        padding: 20px;
    }
    
}
