/*
 Theme Name:   News Vibrant Child
 Theme URI:    https://example.com/news-vibrant-child/
 Description:  A child theme for the News Vibrant theme
 Author:       Your Name
 Author URI:   https://example.com
 Template:     news-vibrant
 Version:      1.0.0
*/

/* Import the parent theme's styles */
@import url("../news-vibrant/style.css");

/* Add your custom styles below */

#masthead .site-branding {text-align: center!important;}
#masthead .nv-header-ads-area {float: none!important; }

td {
    vertical-align: top!important;
}

.page-content, .entry-content, .entry-summary, p {
    font-size: initial;
}

/* CSS to hide the entry-title for post with ID "post-1915" */
        article#post-1915 .entry-title {
            display: none;
        }
.site-info {display: none;}


/* Main Section */
.college-about {
    padding: 60px 20px;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #0d3b66;
    margin: 0;
    font-weight: 700;
}

/* Intro Box */
.intro-box {
    background: #f5f8fc;
    padding: 20px;
    border-left: 5px solid #0d3b66;
    border-radius: 8px;
    margin-bottom: 30px;
}

/* Content */
.content-block {
    margin-bottom: 40px;
}

.content-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform .3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

/* Department List */
.department-list {
    margin-top: 20px;
    padding-left: 20px;
}

.department-list li {
    margin-bottom: 12px;
}

.department-list a {
    color: #0d3b66;
    text-decoration: none;
    font-weight: 600;
}

.department-list a:hover {
    color: #0056b3;
}

/* Mobile */
@media (max-width: 768px) {

    .college-about {
        padding: 40px 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-block p {
        font-size: 15px;
    }
}



.pdf-viewer {
    width: 100%;
    height: 80vh;
}

.pdf-viewer iframe {
    width: 100%;
    height: 100%;
    border: 0;
}