/**
 * School Type - Post Pages Styles
 * Modern, wide layout with enhanced sidebar
 * 
 * @package WpIIET
 */

/* ============================================
   BREADCRUMB HERO SECTION
   ============================================ */
.school-post-hero {
    background: linear-gradient(135deg, var(--school-primary) 0%, var(--school-highlight) 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 2rem !important;
}

.school-post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.breadcrumb-hero-wrapper {
    position: relative;
    z-index: 2;
}

/* Modern Breadcrumb */
.school-breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin: 0 0.25rem;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.breadcrumb-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.breadcrumb-link i {
    font-size: 0.875rem;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    padding: 0.25rem 0.75rem;
}

/* ============================================
   MAIN CONTENT AREA - WIDER LAYOUT
   ============================================ */
.school-single-post-main {
    padding: 3rem 0;
    background: #f8f9fa;
}

/* Post Article */
.school-post-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Featured Image */
.school-post-featured-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--school-primary) 0%, var(--school-highlight) 100%);
}

.school-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.school-post-featured-image:hover img {
    transform: scale(1.05);
}

.featured-image-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
}

.post-category-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.post-category-badge .category-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--school-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.post-category-badge .category-link:hover {
    color: var(--school-highlight);
}

/* Post Header */
.school-post-header {
    padding: 3rem;
    border-bottom: 1px solid #f0f0f0;
}

.school-post-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.school-post-meta {
    margin-top: 1.5rem;
}

.meta-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: linear-gradient(135deg, var(--school-primary) 0%, var(--school-highlight) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.meta-item:hover .meta-icon,
.meta-item:hover .meta-label,
.meta-item:hover .meta-value {
    color: white;
}

.meta-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    color: var(--school-primary);
    font-size: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.meta-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.meta-value {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 600;
}

/* Post Content */
.school-post-content {
    padding: 3rem;
    font-size: 1.125rem;
    line-height: 1.9;
    color: #334155;
}

.school-post-content h1,
.school-post-content h2,
.school-post-content h3,
.school-post-content h4,
.school-post-content h5,
.school-post-content h6 {
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.school-post-content h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--school-primary);
    padding-bottom: 0.5rem;
}

.school-post-content p {
    margin-bottom: 1.5rem;
}

.school-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.school-post-content blockquote {
    border-right: 4px solid var(--school-primary);
    padding: 1.5rem;
    margin: 2rem 0;
    background: #f8f9fa;
    border-radius: 8px;
    font-style: italic;
    color: #475569;
}

/* Post Tags */
.school-post-tags {
    padding: 2rem 3rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.tags-title {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-item {
    display: inline-block;
    background: white;
    color: var(--school-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--school-primary);
}

.tag-item:hover {
    background: linear-gradient(135deg, var(--school-primary) 0%, var(--school-highlight) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Social Share */
.school-post-share {
    padding: 2rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
}

.share-title {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-twitter {
    background: #1da1f2;
    color: white;
}

.share-whatsapp {
    background: #25d366;
    color: white;
}

.share-linkedin {
    background: #0077b5;
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Author Bio */
.school-author-bio {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.author-avatar img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 4px solid var(--school-primary);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.author-info {
    flex: 1;
}

.author-name {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.author-description {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.author-social {
    display: flex;
    gap: 0.75rem;
}

.author-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: var(--school-primary);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social-link:hover {
    background: linear-gradient(135deg, var(--school-primary) 0%, var(--school-highlight) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Post Navigation */
.school-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.nav-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.nav-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    text-decoration: none;
    color: #1e293b;
}

.nav-previous .nav-link {
    flex-direction: row;
}

.nav-next .nav-link {
    flex-direction: row-reverse;
    text-align: left;
}

.nav-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--school-primary) 0%, var(--school-highlight) 100%);
    color: white;
    border-radius: 12px;
    font-size: 1.25rem;
}

.nav-content {
    flex: 1;
}

.nav-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

/* Related Posts */
.school-related-posts {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.related-title {
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-post-card {
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--school-primary);
}

.related-post-thumbnail {
    height: 180px;
    overflow: hidden;
}

.related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-thumbnail img {
    transform: scale(1.1);
}

.related-post-content {
    padding: 1.25rem;
}

.related-post-title {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.related-post-title a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: var(--school-primary);
}

.related-post-meta {
    font-size: 0.875rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   ENHANCED SIDEBAR
   ============================================ */
.school-sidebar-wrapper {
    position: sticky;
    top: 2rem;
}

.school-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.school-widget {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.school-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.widget-header {
    background: linear-gradient(135deg, var(--school-primary) 0%, var(--school-highlight) 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.widget-icon {
    font-size: 1.25rem;
}

.widget-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.widget-content {
    padding: 1.5rem;
}

/* Quick Links */
.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li {
    margin-bottom: 0.75rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-link:hover {
    background: linear-gradient(135deg, var(--school-primary) 0%, var(--school-highlight) 100%);
    color: white;
    transform: translateX(-5px);
    border-color: var(--school-primary);
}

.quick-link i {
    color: var(--school-primary);
    transition: color 0.3s ease;
}

.quick-link:hover i {
    color: white;
}

.link-count {
    margin-right: auto;
    background: rgba(59, 130, 246, 0.1);
    color: var(--school-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.quick-link:hover .link-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Latest News Widget */
.latest-news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.news-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.news-title a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--school-primary);
}

.news-meta {
    font-size: 0.75rem;
    color: #64748b;
}

/* Announcements Widget */
.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.announcement-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #fff7ed;
    border-radius: 12px;
    border-right: 4px solid var(--school-warning);
}

.announcement-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--school-warning);
    color: white;
    border-radius: 10px;
    font-size: 1.1rem;
}

.announcement-content {
    flex: 1;
}

.announcement-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
}

.announcement-title a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
}

.announcement-date {
    font-size: 0.75rem;
    color: #64748b;
}

/* Events Widget */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 12px;
    border-right: 4px solid var(--school-success);
}

.event-date {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--school-success);
    color: white;
    border-radius: 10px;
    text-align: center;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.event-content {
    flex: 1;
}

.event-title {
    margin: 0;
    font-size: 0.95rem;
}

.event-title a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
}

/* Contact Widget */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-item i {
    color: var(--school-primary);
    font-size: 1.25rem;
    width: 24px;
}

.contact-item span {
    color: #1e293b;
    font-weight: 500;
}

/* Search Widget */
.school-search-form {
    margin: 0;
}

.search-input-wrapper {
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: var(--school-primary);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.search-input {
    flex: 1;
    border: none;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    background: white;
    color: #1e293b;
}

.search-input:focus {
    outline: none;
}

.search-button {
    border: none;
    background: linear-gradient(135deg, var(--school-primary) 0%, var(--school-highlight) 100%);
    color: white;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    transform: scale(1.05);
}

.no-content {
    text-align: center;
    color: #64748b;
    padding: 2rem 1rem;
    font-style: italic;
}

/* ============================================
   ARCHIVE PAGE STYLES
   ============================================ */
.school-archive-hero {
    background: linear-gradient(135deg, var(--school-primary) 0%, var(--school-highlight) 100%);
    padding: 3rem 0;
    color: white;
    margin-top: 2rem !important;
}

.archive-hero-content {
    position: relative;
    z-index: 2;
}

.archive-header {
    margin-top: 2rem;
}

.archive-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.archive-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.school-archive-main {
    padding: 3rem 0;
    background: #f8f9fa;
}

.school-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.school-post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.school-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.post-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.school-post-card:hover .post-card-image img {
    transform: scale(1.1);
}

.post-card-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.post-card-category .category-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    color: var(--school-primary);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.post-card-content {
    padding: 1.75rem;
}

.post-card-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

.post-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-card-title {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    line-height: 1.4;
}

.post-card-title a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.post-card-title a:hover {
    color: var(--school-primary);
}

.post-card-excerpt {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--school-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    gap: 0.75rem;
    color: var(--school-highlight);
}

.post-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

.school-pagination {
    margin-top: 3rem;
}

.school-pagination .page-numbers {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.school-pagination .page-numbers a,
.school-pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0.5rem 1rem;
    background: white;
    color: var(--school-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.school-pagination .page-numbers a:hover,
.school-pagination .page-numbers .current {
    background: linear-gradient(135deg, var(--school-primary) 0%, var(--school-highlight) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.no-posts-message {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-posts-icon {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.no-posts-message h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.no-posts-message p {
    color: #64748b;
    margin-bottom: 2rem;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--school-primary) 0%, var(--school-highlight) 100%);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .school-post-title {
        font-size: 2.25rem;
    }
    
    .meta-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .school-single-post-main .col-lg-9 {
        margin-bottom: 2rem;
    }
    
    .school-sidebar-wrapper {
        position: static;
    }
    
    .school-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .school-post-title {
        font-size: 1.75rem;
    }
    
    .school-post-header,
    .school-post-content,
    .school-post-tags,
    .school-post-share {
        padding: 1.5rem;
    }
    
    .meta-group {
        grid-template-columns: 1fr;
    }
    
    .school-post-navigation {
        grid-template-columns: 1fr;
    }
    
    .school-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .archive-title {
        font-size: 2rem;
    }
    
    .school-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb-list {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

