/*
 * Universities CSS - Dedicated styles for university-related functionality
 * Extracted from modset.css for better organization and maintainability
 */

/* ========== UNIVERSITY SECTION ========== */
.university-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.university-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-large);
    padding: 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(75, 30, 30, 0.2);
}

.university-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: universityPulse 4s ease-in-out infinite;
}

.university-content {
    position: relative;
    z-index: 2;
}

.university-logo {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-medium);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.university-title {
    font-size: 2rem;
    font-weight: var(--font-weight-heavy);
    margin-bottom: 15px;
}

.university-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
}

.university-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: var(--radius-medium);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.university-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(227, 152, 35, 0.3);
}

@keyframes universityPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.2;
    }
}

/* ========== UNIVERSITIES PAGE STYLES ========== */
/* ========== UNIVERSITIES LISTING PAGE ========== */
.modern-category-banner {
    background: linear-gradient(135deg, #4b1e1e 0%, #6b2c2c 100%);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.modern-category-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #e39823;
}

.stat-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

.universities-section {
    padding: 80px 0;
}

.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.university-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.university-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.university-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.university-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.university-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.university-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.university-logo .logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.university-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4b1e1e, #6b2c2c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    flex-shrink: 0;
}

.university-basic-info {
    flex: 1;
}

.university-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.university-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    font-size: 14px;
    margin: 0;
}

.university-description {
    padding: 0 30px 20px;
    color: #666666;
    line-height: 1.6;
    font-size: 14px;
}

.university-footer {
    padding: 20px 30px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #4b1e1e;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.view-profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b1e1e;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.university-card:hover .view-profile-btn {
    color: #e39823;
    transform: translateX(5px);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.empty-state-wrapper i {
    font-size: 4rem;
    color: #cccccc;
    margin-bottom: 20px;
}

.empty-state-wrapper h4 {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 10px;
}

.empty-state-wrapper p {
    color: #666666;
    line-height: 1.6;
}

/* ========== UNIVERSITY PROFILE PAGE ========== */
.university-profile-header {
    background: linear-gradient(135deg, #4b1e1e 0%, #6b2c2c 100%);
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.university-profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
}

.university-info {
    position: relative;
    z-index: 2;
}

.university-logo-section {
    display: flex;
    align-items: center;
    gap: 25px;
}


.university-logo-placeholder-large {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.university-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #e39823, #ffffff);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(227, 152, 35, 0.5);
    transform-style: preserve-3d;
    position: relative;
}

.university-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, #4b1e1e, #6b2c2c, #e39823);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite reverse;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    transform: translateZ(-10px) scale(1.02);
    opacity: 0.7;
    filter: blur(1px);
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.university-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.university-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.university-contact a:hover {
    color: #e39823;
}

.university-stats {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
}

.stat-card i {
    font-size: 1.5rem;
    color: #e39823;
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.university-nav-section {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.university-nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 15px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: #4b1e1e;
    border-bottom-color: #e39823;
    text-decoration: none;
}

.university-content-section {
    padding: 60px 0;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.section-title i {
    color: #e39823;
}

.about-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.university-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 120px;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #4b1e1e;
    color: #ffffff;
    transform: translateX(5px);
    text-decoration: none;
}

.contact-item i {
    width: 20px;
    text-align: center;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    background: #f8f9fa;
}

.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.video-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.post-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.post-item:hover {
    transform: translateY(-5px);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 25px;
}

.post-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 14px;
}

.no-content-wrapper {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-content-wrapper i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-content {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 40px;
}

/* ========== UNIVERSITIES RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .category-stats {
        gap: 20px;
    }
    
    .universities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .university-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .university-basic-info {
        text-align: center;
    }
    
    .university-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .university-card:hover .view-profile-btn {
        transform: none;
    }
    
    /* University Profile Mobile */
    .university-logo-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .university-title {
        font-size: 2rem;
    }
    
    .university-stats {
        justify-content: center;
        margin-top: 30px;
    }
    
    .stat-card {
        min-width: 80px;
        padding: 15px;
    }
    
    .university-nav {
        justify-content: flex-start;
    }
    
    .photos-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        position: relative;
        top: auto;
        margin-top: 30px;
    }
    
    .contact-item:hover {
        transform: none;
    }
}
 
.university-profile-header {
    background: linear-gradient(135deg, #4b1e1e 0%, #6b2c2c 100%);
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.university-profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
}

.university-info {
    position: relative;
    z-index: 2;
}

.university-logo-section {
    display: flex;
    align-items: center;
    gap: 25px;
}



.university-logo-placeholder-large {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.university-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.university-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.university-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.university-contact a:hover {
    color: #e39823;
}

.university-stats {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
}

.stat-card i {
    font-size: 1.5rem;
    color: #e39823;
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.university-nav-section {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.university-nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 15px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: #4b1e1e;
    border-bottom-color: #e39823;
    text-decoration: none;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.section-title i {
    color: #e39823;
}

.about-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.university-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 120px;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #4b1e1e;
    color: #ffffff;
    transform: translateX(5px);
    text-decoration: none;
}

.contact-item i {
    width: 20px;
    text-align: center;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.video-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.post-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.post-item:hover {
    transform: translateY(-5px);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 25px;
}

.post-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 14px;
}

.no-content-wrapper {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-content-wrapper i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-content {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 40px;
}

@media (max-width: 768px) {
    .university-logo-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .university-title {
        font-size: 2rem;
    }
    
    .university-stats {
        justify-content: center;
        margin-top: 30px;
    }
    
    .stat-card {
        min-width: 80px;
        padding: 15px;
    }
    
    .university-nav {
        justify-content: flex-start;
    }
    
    .photos-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        position: relative;
        top: auto;
        margin-top: 30px;
    }
    
    html[dir="rtl"] .contact-item:hover {
        transform: translateX(-5px);
    }
}
 