/* 
 * Press & News Page Styles - Nexra Corppe
 * Standardized with Precision Corporate Theme
 */

.prs-hero { 
    background: #0f172a; 
    background-image: 
        linear-gradient(to right, rgba(15,23,42,0.93) 40%, rgba(15,23,42,0.72) 100%),
        url('/images/photos/office-optimized.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 12rem 0 8rem; 
    color: #fff; 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
    position: relative;
    z-index: 10;
}

.prs-hero h1 { 
    font-size: clamp(3rem, 5vw, 5rem); 
    font-weight: 800; 
    line-height: 1.05; 
    letter-spacing: -0.04em; 
    color: #f8fafc; 
    margin-bottom: 1.5rem; 
    max-width: 800px; 
}

.prs-hero p { 
    font-size: 1.25rem; 
    color: #94a3b8; 
    max-width: 600px; 
    line-height: 1.6; 
}

/* Sidebar Title/Small Title */
.p-sm { 
    font-size: 0.875rem; 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    color: #38bdf8; 
    font-weight: 700; 
    margin-bottom: 1.5rem; 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}

.p-sm::after { 
    content: ''; 
    height: 1px; 
    width: 40px; 
    background: #38bdf8; 
}

/* Main Layout */
.press-main { 
    background: #f8fafc; 
    padding: 6rem 0; 
}

.press-layout { 
    display: grid; 
    grid-template-columns: 3fr 9fr; 
    gap: 4rem; 
    align-items: flex-start; 
}

/* Sidebar */
.press-sidebar { 
    position: sticky; 
    top: 100px; 
}

.press-nav-title { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    color: #64748b; 
    font-weight: 700; 
    margin-bottom: 1.5rem; 
    border-bottom: 1px solid #e2e8f0; 
    padding-bottom: 0.75rem; 
}

.press-nav { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.press-nav li { 
    margin-bottom: 0.5rem; 
}

.press-nav a { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 0.75rem 1rem; 
    color: #475569; 
    font-size: 0.9rem; 
    font-weight: 500; 
    text-decoration: none; 
    border-left: 2px solid transparent; 
    transition: all 0.2s; 
}

.press-nav a:hover, 
.press-nav a.active { 
    color: #2563eb; 
    background: #fff; 
    border-left-color: #2563eb; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); 
}

/* Content Areas */
.press-category-section { 
    margin-bottom: 5rem; 
    padding-top: 2rem; 
    border-top: 1px solid #e2e8f0; 
}

.press-category-section:first-child { 
    border-top: none; 
    padding-top: 0; 
}

.press-cat-head { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    margin-bottom: 1.5rem; 
}

.press-cat-head i { 
    font-size: 1.75rem; 
    color: #2563eb; 
}

.press-cat-head h2 { 
    font-size: 1.75rem; 
    font-weight: 800; 
    color: #0f172a; 
    margin: 0; 
    letter-spacing: -0.02em; 
}

.press-cat-desc { 
    color: #64748b; 
    font-size: 1.05rem; 
    margin-bottom: 2.5rem; 
    line-height: 1.6; 
    max-width: 700px; 
}

/* Article Card */
.press-article-card { 
    background: #fff; 
    border: 1px solid #e2e8f0; 
    padding: 2rem; 
    margin-bottom: 1rem; 
    display: flex; 
    flex-direction: column; 
    transition: all 0.2s; 
    text-decoration: none; 
    border-left: 4px solid #fff; 
}

.press-article-card:hover { 
    border-color: #cbd5e1; 
    border-left-color: #38bdf8; 
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05); 
    transform: translateX(4px); 
}

.press-article-meta { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    color: #94a3b8; 
    font-weight: 600; 
    margin-bottom: 1rem; 
}

.press-article-meta span { 
    display: flex; 
    align-items: center; 
    gap: 0.4rem; 
}

.press-article-card h3 { 
    font-size: 1.25rem; 
    font-weight: 700; 
    color: #0f172a; 
    margin-bottom: 0.75rem; 
    line-height: 1.4; 
    transition: color 0.2s; 
}

.press-article-card:hover h3 { 
    color: #2563eb; 
}

.press-article-card p { 
    color: #475569; 
    font-size: 0.95rem; 
    line-height: 1.6; 
    margin-bottom: 0; 
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .press-layout { 
        gap: 2rem; 
    }
}

@media (max-width: 960px) {
    .prs-hero { padding: 8rem 0 4rem; }
    .press-main { padding: 4rem 0; }
    .press-layout { grid-template-columns: 1fr; gap: 3rem; }
    .press-sidebar { position: static; }
    .press-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .press-article-card:hover { transform: none; }
}

@media (max-width: 640px) {
    .press-nav { grid-template-columns: 1fr; }
    .press-article-meta { flex-wrap: wrap; gap: 0.5rem; }
    .press-cat-head h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .prs-hero h1 { font-size: 2.25rem; }
    .press-article-card { padding: 1.5rem; }
}
