/* ===== Inner Pages Shared Styles ===== */

.page-banner {
    background: var(--brand-blue);
    padding: 30px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-banner h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.page-banner .breadcrumb {
    font-size: 13px;
    opacity: 0.8;
}

.page-banner .breadcrumb a {
    color: #fff;
    text-decoration: underline;
}

/* Page Content */
.page-content {
    padding: 35px 0 50px;
    background: #fff;
    min-height: 400px;
}

.page-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-light-gray);
}

.page-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-blue);
    margin: 20px 0 10px;
}

.page-content p {
    font-size: 15px;
    color: #555;
    line-height: 28px;
    margin-bottom: 14px;
}

.page-content ul.content-list {
    padding-left: 20px;
    margin-bottom: 15px;
}

.page-content ul.content-list li {
    font-size: 14px;
    color: #555;
    line-height: 30px;
    list-style: disc;
    padding-left: 5px;
}

.page-content img.content-img {
    max-width: 100%;
    border-radius: 15px;
    margin: 15px 0;
    border: 1px solid #e9e9e9;
}

/* Two column layout */
.page-row {
    display: flex;
    gap: 30px;
}

.page-main {
    flex: 2;
}

.page-sidebar {
    flex: 1;
    max-width: 320px;
}

.sidebar-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-blue);
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand-blue);
}

.sidebar-card ul li {
    display: block;
    margin-bottom: 0;
}

.sidebar-card ul li a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.sidebar-card ul li a:hover {
    color: var(--brand-blue);
    padding-left: 18px;
    background: #f8f9fa;
}

/* Table styling for inner pages */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
}

.data-table th {
    background: var(--brand-blue);
    color: #fff;
    padding: 12px 15px;
    text-align: left;
    font-weight: 500;
}

.data-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #e9e9e9;
    color: #555;
}

.data-table tr:hover td {
    background: #f8fbff;
}

.data-table a {
    color: var(--brand-blue);
    font-weight: 500;
}

.data-table a:hover {
    text-decoration: underline;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 20px 0;
}

.contact-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e9e9e9;
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.contact-card i {
    font-size: 32px;
    color: var(--brand-blue);
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    line-height: 22px;
}

/* Department cards grid */
.dept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.dept-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.dept-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: var(--brand-blue);
}

.dept-card i {
    font-size: 36px;
    color: var(--brand-blue);
    margin-bottom: 12px;
}

.dept-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.dept-card p {
    font-size: 13px;
    color: #888;
    margin-bottom: 0;
}

/* Notification list styling */
.notification-list {
    margin: 15px 0;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.notification-item:hover {
    background: #f8fbff;
}

.notification-item .notif-date {
    min-width: 55px;
    text-align: center;
    background: rgba(11,78,160,0.08);
    border-radius: 8px;
    padding: 6px 8px;
}

.notification-item .notif-date .day {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-blue);
    display: block;
}

.notification-item .notif-date .month {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.notification-item .notif-text a {
    font-size: 14px;
    color: #444;
    line-height: 22px;
}

.notification-item .notif-text a:hover {
    color: var(--brand-blue);
}

.notification-item .notif-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 10px;
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-row {
        flex-direction: column;
    }
    .page-sidebar {
        max-width: 100%;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .dept-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-banner h1 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .dept-grid {
        grid-template-columns: 1fr;
    }
}
