/**
 * Informasi Portal Styles
 * CSS khusus untuk halaman Posts Page (/informasi/)
 * 
 * @package Nexus
 * @version 1.0
 */

/* ========================================
   PORTAL HERO SECTION
   ======================================== */

.portal-hero {
    background: linear-gradient(135deg, #091a2e, #102b4f);
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.portal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.5), transparent);
}

.portal-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.portal-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portal-description {
    font-size: 1.1rem;
    color: #e8eef5;
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* ========================================
   RESPONSIVE PORTAL HERO
   ======================================== */

@media (max-width: 1400px) {
    .portal-title {
        font-size: 2rem;
    }
    
    .portal-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 1200px) {
    .portal-title {
        font-size: 1.85rem;
    }
    
    .portal-description {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .portal-hero {
        padding: 2.5rem 1rem;
    }
    
    .portal-title {
        font-size: 1.65rem;
    }
    
    .portal-description {
        font-size: 0.95rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .portal-hero {
        padding: 2rem 1rem;
    }
    
    .portal-title {
        font-size: 1.5rem;
        letter-spacing: 0.3px;
    }
    
    .portal-description {
        font-size: 0.9rem;
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .portal-hero {
        padding: 1.75rem 0.75rem;
    }
    
    .portal-title {
        font-size: 1.3rem;
        letter-spacing: 0.2px;
        margin-bottom: 0.75rem;
    }
    
    .portal-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .portal-hero {
        padding: 1.5rem 0.75rem;
    }
    
    .portal-title {
        font-size: 1.15rem;
    }
    
    .portal-description {
        font-size: 0.8rem;
    }
}
