/* Publishers Page Premium Styles */

/* Header Decoration */
.page-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, rgba(18, 88, 116, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    margin-bottom: 20px;
    position: relative;
}

.header-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.header-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.header-decoration {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Sections & Grid */
.role-section {
    margin-bottom: 80px;
    position: relative;
}

.role-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0.9;
}

.role-title::before,
.role-title::after {
    content: "";
    height: 1px;
    width: 60px;
    background: #e0e0e0;
    display: block;
}

.publisher-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 20px;
}

/* Premium Profile Card */
.profile-card {
    background: white;
    border-radius: 16px;
    /* Smooth corners */
    padding: 40px 30px;
    text-align: center;
    width: 100%;
    max-width: 340px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    /* Soft, deep shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    overflow: hidden;
}

/* Glass effect top decoration */
.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 88, 116, 0.15);
    /* Colored shadow on hover */
    border-color: rgba(18, 88, 116, 0.1);
}

.profile-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    border: 4px solid white;
    /* Clean border */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    /* Shadow specifically for the photo */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: #f8f8f8;
}

.profile-card:hover .profile-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.profile-designation {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.profile-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.profile-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(18, 88, 116, 0.2);
}

/* Reporters Section - Distinct Style */
.reporters-section {
    max-width: 800px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.reporters-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reporter-icon {
    font-size: 3rem;
    color: var(--primary-color);
    background: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.reporter-text {
    text-align: left;
}

.reporter-text h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.reporter-text p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Skeleton */
.skeleton-card {
    width: 300px;
    height: 350px;
    background: #f0f0f0;
    border-radius: 16px;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 1.8rem;
    }

    .reporters-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .reporter-text {
        text-align: center;
    }
}

/* Active Navigation State */
.active-nav {
    color: var(--secondary-color) !important;
    position: relative;
}

.active-nav::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}