/* Editorial Board Page - Power of Knowledge */
.page-editorial {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-color: #667eea;
    --text-dark: #1a202c;
    --text-light: #718096;
    --border-color: rgba(226, 232, 240, 0.8);
    --transition-smooth: all .3s cubic-bezier(.4, 0, .2, 1);
    font-family: 'Inter', sans-serif
}

.page-editorial .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.page-editorial .page-hero {
    background: var(--primary-gradient);
    padding: 100px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden
}

.page-editorial .page-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px
}

.page-editorial .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 20px;
    opacity: .9
}

.page-editorial .breadcrumb a {
    color: #fff;
    text-decoration: none
}

.page-editorial .page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px
}

.page-editorial .page-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    opacity: .95;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7
}

.page-editorial .intro-section {
    padding: 80px 0;
    background: #fff
}

.page-editorial .intro-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(to bottom, #fff, #f8f9ff);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    text-align: center
}

.page-editorial .intro-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light)
}

.page-editorial .intro-text strong {
    color: var(--primary-color)
}

.page-editorial .intro-text a {
    color: var(--primary-color);
    font-weight: 600
}

.page-editorial .chief-editor-section {
    padding: 60px 0;
    background: #fff
}

.page-editorial .chief-editor-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, .3);
    color: #fff;
    position: relative;
    overflow: hidden
}

.page-editorial .chief-editor-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2
}

.page-editorial .chief-image {
    width: 280px;
    height: 280px;
    border-radius: 24px;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, .3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .3)
}

.page-editorial .chief-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.page-editorial .chief-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase
}

.page-editorial .chief-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 12px
}

.page-editorial .chief-title {
    font-size: 18px;
    opacity: .95;
    line-height: 1.7
}

.page-editorial .team-section {
    padding: 80px 0;
    background: #fff
}

.page-editorial .team-section:nth-child(even) {
    background: linear-gradient(to bottom, #fff, #f8f9ff)
}

.page-editorial .section-header {
    text-align: center;
    margin-bottom: 60px
}

.page-editorial .section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(102, 126, 234, .1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase
}

.page-editorial .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px
}

.page-editorial .section-intro {
    font-size: 18px;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8
}

.page-editorial .section-intro a {
    color: var(--primary-color);
    font-weight: 600
}

.page-editorial .content-card {
    background: linear-gradient(to bottom, #fff, #f8f9ff);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    transition: var(--transition-smooth)
}

.page-editorial .content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, .1);
    border-color: var(--primary-color)
}

.page-editorial .content-card h3 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px
}

.page-editorial .content-card h3 i {
    color: var(--primary-color)
}

.page-editorial .content-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px
}

.page-editorial .feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0
}

.page-editorial .feature-list li {
    background: rgba(102, 126, 234, .05);
    padding: 16px 20px 16px 50px;
    border-radius: 12px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    border: 1px solid rgba(102, 126, 234, .1);
    transition: var(--transition-smooth)
}

.page-editorial .feature-list li:hover {
    background: rgba(102, 126, 234, .08);
    transform: translateX(5px)
}

.page-editorial .feature-list li i {
    position: absolute;
    left: 16px;
    top: 18px;
    color: #10B981
}

.page-editorial .feature-list li strong {
    color: var(--text-dark)
}

.page-editorial .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px
}

.page-editorial .member-card {
    background: linear-gradient(to bottom, #fff, #f8f9ff);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition-smooth)
}

.page-editorial .member-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(102, 126, 234, .15)
}

.page-editorial .member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border-color);
    margin: 0 auto 20px;
    transition: var(--transition-smooth)
}

.page-editorial .member-card:hover .member-image {
    transform: scale(1.05);
    border-color: var(--primary-color)
}

.page-editorial .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.page-editorial .member-image .placeholder-icon {
    font-size: 48px;
    color: var(--primary-color);
    opacity: .5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(102, 126, 234, .1)
}

.page-editorial .member-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px
}

.page-editorial .member-designation {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6
}

.page-editorial .member-affiliation {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 8px
}

.page-editorial .international-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase
}

.page-editorial .managing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 60px
}

.page-editorial .managing-card {
    background: linear-gradient(to bottom, #fff, #f8f9ff);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth)
}

.page-editorial .managing-card:hover {
    background: rgba(102, 126, 234, .05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, .1);
    transform: translateY(-4px);
    border-color: var(--primary-color)
}

.page-editorial .managing-icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition-smooth)
}

.page-editorial .managing-card:hover .managing-icon {
    background: var(--primary-gradient);
    color: #fff
}

.page-editorial .managing-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark)
}

.page-editorial .info-box {
    background: rgba(6, 182, 212, .08);
    border: 2px solid rgba(6, 182, 212, .3);
    border-radius: 16px;
    padding: 28px;
    margin-top: 30px
}

.page-editorial .info-box-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px
}

.page-editorial .info-box-title i {
    color: #06B6D4
}

.page-editorial .info-box-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light)
}

.page-editorial .info-box-content a {
    color: var(--primary-color);
    font-weight: 600
}

.page-editorial .success-box {
    background: rgba(16, 185, 129, .08);
    border: 2px solid rgba(16, 185, 129, .3);
    border-radius: 16px;
    padding: 28px;
    margin-top: 30px
}

.page-editorial .success-box-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px
}

.page-editorial .success-box-title i {
    color: #10B981
}

.page-editorial .success-box-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light)
}

.page-editorial .cta-section {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden
}

.page-editorial .cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px
}

.page-editorial .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 24px
}

.page-editorial .cta-text {
    font-size: 20px;
    opacity: .95;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

main.page-editorial .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--primary-color);
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
}

main.page-editorial .cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .3)
}

@media(max-width:1024px) {
    .page-editorial .chief-editor-content {
        grid-template-columns: 1fr;
        text-align: center
    }

    .page-editorial .chief-image {
        margin: 0 auto;
        width: 220px;
        height: 220px
    }
}

@media(max-width:768px) {

    .page-editorial .team-grid,
    .page-editorial .managing-grid {
        grid-template-columns: 1fr
    }

    .page-editorial .intro-card {
        padding: 30px 20px
    }

    .page-editorial .chief-editor-card {
        padding: 40px 25px
    }
}