/* Author Guidelines Page CSS - Matching About Page Interactivity */
.page-author-guidelines {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-color: #667eea;
    --primary-dark: #5568d3;
    --text-dark: #1a202c;
    --text-light: #718096;
    --white: #fff;
    --border-color: rgba(226, 232, 240, 0.8);
    --transition-smooth: all .3s cubic-bezier(.4, 0, .2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, #f8fafc 0%, #f0f4ff 100%);
}

/* Hero Section - Matching About Page */
.page-author-guidelines .guidelines-hero {
    background: var(--primary-gradient);
    padding: 100px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Floating background orb animation */
.page-author-guidelines .guidelines-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: guidelines-float 6s ease-in-out infinite;
}

.page-author-guidelines .guidelines-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: guidelines-float 8s ease-in-out infinite reverse;
}

@keyframes guidelines-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, -30px) scale(1.05);
    }
}

/* FadeInUp Animation */
@keyframes guidelines-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-author-guidelines .guidelines-hero .hero-content {
    position: relative;
    z-index: 2;
    animation: guidelines-fadeInUp 0.8s ease-out;
}

.page-author-guidelines .guidelines-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.page-author-guidelines .guidelines-hero .hero-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 48px;
    animation: guidelines-fadeInUp 0.6s ease-out, pulse-glow 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.page-author-guidelines .guidelines-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    animation: guidelines-fadeInUp 0.7s ease-out;
}

.page-author-guidelines .guidelines-hero .hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    animation: guidelines-fadeInUp 0.8s ease-out;
}

/* Breadcrumb - Matching Peer Review */
.page-author-guidelines .breadcrumb-section {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.page-author-guidelines .breadcrumb-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-author-guidelines .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-author-guidelines .breadcrumb a {
    color: #4a5568;
    text-decoration: none;
}

.page-author-guidelines .breadcrumb a:hover {
    color: #667eea;
}

.page-author-guidelines .breadcrumb .active {
    color: #667eea;
    font-weight: 600;
}

/* Intro Section - Matching Peer Review */
.page-author-guidelines .intro-section {
    padding: 60px 0;
    background: #f8fafc;
}

.page-author-guidelines .intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-author-guidelines .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.page-author-guidelines .intro-text h2 {
    font-size: clamp(26px, 4vw, 34px);
    color: #1a202c;
    margin-bottom: 20px;
}

.page-author-guidelines .intro-text .highlight {
    color: #667eea;
}

.page-author-guidelines .intro-text p {
    color: #1a202c;
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.page-author-guidelines .intro-text p strong {
    color: #5568d3;
    font-weight: 700;
}

.page-author-guidelines .intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.page-author-guidelines .intro-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.page-author-guidelines .intro-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.25);
}

/* Quick Links Section - Like COPE Section */
.page-author-guidelines .quick-links-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 60px 0;
}

.page-author-guidelines .quick-links-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-author-guidelines .quick-links-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.page-author-guidelines .quick-links-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #4dabf7;
}

.page-author-guidelines .quick-links-text h2 {
    font-size: clamp(24px, 4vw, 32px);
    color: white;
    margin-bottom: 15px;
}

.page-author-guidelines .quick-links-text p {
    color: #f0f0f0;
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
}

.page-author-guidelines .quick-links-text a {
    color: #4dabf7;
    font-weight: 700;
    text-decoration: underline;
}

.page-author-guidelines .download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
}

.page-author-guidelines .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-author-guidelines .download-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Guidelines Cards Section */
.page-author-guidelines .guidelines-cards-section {
    background: white;
    padding: 80px 0;
}

.page-author-guidelines .guidelines-cards-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-author-guidelines .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-author-guidelines .section-header h2 {
    font-size: clamp(28px, 4vw, 38px);
    color: #1a202c;
    margin-bottom: 15px;
}

.page-author-guidelines .section-header p {
    color: #4a5568;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Guideline Card */
.page-author-guidelines .guideline-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.page-author-guidelines .guideline-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.page-author-guidelines .guideline-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.page-author-guidelines .guideline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    flex-shrink: 0;
}

.page-author-guidelines .guideline-card.success .guideline-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.page-author-guidelines .guideline-card.warning .guideline-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.page-author-guidelines .guideline-card h3 {
    font-size: 28px;
    color: #1a202c;
    font-weight: 700;
}

.page-author-guidelines .guideline-description {
    color: #1a202c;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.page-author-guidelines .guideline-description strong {
    color: #667eea;
    font-weight: 700;
}

/* Format Table */
.page-author-guidelines .format-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.page-author-guidelines .format-table th,
.page-author-guidelines .format-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.page-author-guidelines .format-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    font-size: 15px;
}

.page-author-guidelines .format-table td {
    color: #1a202c;
    font-size: 15px;
}

.page-author-guidelines .format-table tr:last-child td {
    border-bottom: none;
}

.page-author-guidelines .format-table tr:hover td {
    background: #f8fafc;
}

/* Step Items - Matching Peer Review */
.page-author-guidelines .step-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-author-guidelines .step-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.page-author-guidelines .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.page-author-guidelines .step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.page-author-guidelines .step-content p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}

/* Requirements List */
.page-author-guidelines .requirements-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-author-guidelines .requirement-item {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.page-author-guidelines .requirement-item h4 {
    font-size: 17px;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-author-guidelines .requirement-item h4 i {
    color: #10b981;
}

.page-author-guidelines .requirement-item p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    margin-left: 28px;
}

/* Info Box */
.page-author-guidelines .info-box {
    background: #e8f0fe;
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.page-author-guidelines .info-box h4 {
    font-size: 20px;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-author-guidelines .info-box h4 i {
    color: #667eea;
}

.page-author-guidelines .info-box p {
    color: #1a202c;
    font-size: 15px;
    line-height: 1.7;
}

.page-author-guidelines .info-box strong {
    color: #5568d3;
}

/* Warning Box */
.page-author-guidelines .warning-box {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.page-author-guidelines .warning-box h4 {
    font-size: 20px;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-author-guidelines .warning-box h4 i {
    color: #f59e0b;
}

.page-author-guidelines .warning-box p {
    color: #1a202c;
    font-size: 15px;
    line-height: 1.7;
}

/* CTA Section */
.page-author-guidelines .cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
}

.page-author-guidelines .cta-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-author-guidelines .cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.page-author-guidelines .cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.page-author-guidelines .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-author-guidelines main.page-author-guidelines .cta-btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.page-author-guidelines main.page-author-guidelines .cta-btn.primary {
    background: white;
    color: #667eea;
}

.page-author-guidelines main.page-author-guidelines .cta-btn.primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.page-author-guidelines main.page-author-guidelines .cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.page-author-guidelines main.page-author-guidelines .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .page-author-guidelines .intro-grid {
        grid-template-columns: 1fr;
    }

    .page-author-guidelines .intro-image {
        order: -1;
    }

    .page-author-guidelines .quick-links-content {
        flex-direction: column;
    }

    .page-author-guidelines .guideline-header {
        flex-direction: column;
        text-align: center;
    }

    .page-author-guidelines .step-item {
        flex-direction: column;
        text-align: center;
    }

    .page-author-guidelines .requirement-item p {
        margin-left: 0;
    }

    .page-author-guidelines main.page-author-guidelines .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   LEGACY STYLES - For existing HTML structure
   ============================================ */

/* Content Section - Modern Alternating Design */
.page-author-guidelines .content-section {
    background: white;
    border-radius: 24px;
    padding: 45px;
    margin-bottom: 30px;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Add decorative accent line */
.page-author-guidelines .content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px 0 0 4px;
}

.page-author-guidelines .content-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.12);
}

/* Alternating backgrounds for visual variety */
.page-author-guidelines .content-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.page-author-guidelines .content-section:nth-child(even) {
    background: linear-gradient(135deg, #fafbff 0%, #f0f4ff 100%);
}

.page-author-guidelines .content-section:nth-child(even)::before {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.page-author-guidelines .content-section .section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.page-author-guidelines .content-section .section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-author-guidelines .content-section .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
}

.page-author-guidelines .content-text {
    color: #1a202c;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-author-guidelines .content-text strong {
    color: #5568d3;
    font-weight: 700;
}

/* Download Box - Legacy */
.page-author-guidelines .download-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px 30px;
    margin: 25px 0;
}

.page-author-guidelines .download-box h3 {
    font-size: 20px;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-author-guidelines .download-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.page-author-guidelines .download-box .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.page-author-guidelines .download-box .download-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Structure Items - Legacy */
.page-author-guidelines .structure-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-author-guidelines .structure-item {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.page-author-guidelines .structure-item h4 {
    font-size: 17px;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-author-guidelines .structure-item p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}

/* Checklist - Legacy */
.page-author-guidelines .checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-author-guidelines .checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 10px;
}

.page-author-guidelines .checklist-item i {
    color: #10b981;
    font-size: 18px;
    margin-top: 2px;
}

.page-author-guidelines .checklist-item span {
    color: #1a202c;
    font-size: 15px;
    line-height: 1.6;
}

/* Note Box - Legacy */
.page-author-guidelines .note-box {
    background: #e8f0fe;
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.page-author-guidelines .note-box p {
    color: #1a202c;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.page-author-guidelines .note-box strong {
    color: #5568d3;
}

/* CTA Section - Legacy */
.page-author-guidelines .cta-section-bottom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.page-author-guidelines .cta-section-bottom .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-author-guidelines .cta-section-bottom h2 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.page-author-guidelines .cta-section-bottom p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .page-author-guidelines .content-section {
        padding: 25px;
    }

    .page-author-guidelines .content-section .section-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   CONTACT CARD SECTION
   ============================================ */
.page-author-guidelines .contact-card {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 2px solid #667eea;
    text-align: center;
}

.page-author-guidelines .contact-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.page-author-guidelines .contact-text {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-author-guidelines .contact-text strong {
    color: #667eea;
}

.page-author-guidelines .contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-author-guidelines .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
}

.page-author-guidelines .contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.page-author-guidelines .contact-btn i {
    font-size: 16px;
}

/* Guidelines List */
.page-author-guidelines .guidelines-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-author-guidelines .guidelines-list li {
    background: white;
    padding: 18px 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    font-size: 15px;
    line-height: 1.7;
    color: #1a202c;
}

.page-author-guidelines .guidelines-list li strong {
    color: #5568d3;
}

/* Warning Box Enhanced */
.page-author-guidelines .warning-box {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
}

.page-author-guidelines .warning-box-title {
    font-size: 18px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 10px;
}

.page-author-guidelines .warning-box-content {
    color: #78350f;
    font-size: 15px;
    line-height: 1.7;
}

/* Highlight content section variant */
.page-author-guidelines .content-section.highlight {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-color: #10b981;
}

.page-author-guidelines .content-section.highlight .section-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

@media (max-width: 768px) {
    .page-author-guidelines .contact-card {
        padding: 25px;
    }

    .page-author-guidelines .contact-buttons {
        flex-direction: column;
    }

    .page-author-guidelines .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ENHANCED INTERACTIVITY - Matching Peer Review
   ============================================ */

/* Feature Cards Grid */
.page-author-guidelines .features-section {
    background: white;
    padding: 80px 0;
}

.page-author-guidelines .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-author-guidelines .feature-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.page-author-guidelines .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.6s ease;
}

.page-author-guidelines .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.page-author-guidelines .feature-card:hover::before {
    left: 100%;
}

.page-author-guidelines .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    transition: transform 0.4s ease;
}

.page-author-guidelines .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.page-author-guidelines .feature-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-author-guidelines .feature-card p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}

/* Enhanced Format Table */
.page-author-guidelines .format-table tr {
    transition: all 0.3s ease;
}

.page-author-guidelines .format-table tbody tr:hover {
    background: linear-gradient(135deg, #f0f4ff 0%, #eef2ff 100%);
    transform: scale(1.01);
}

.page-author-guidelines .format-table tbody tr:hover td:first-child {
    color: #667eea;
    font-weight: 600;
}

/* Enhanced Section Icon Animation */
.page-author-guidelines .content-section .section-icon {
    transition: transform 0.4s ease;
}

.page-author-guidelines .content-section:hover .section-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Enhanced Structure Items */
.page-author-guidelines .structure-item {
    transition: all 0.3s ease;
}

.page-author-guidelines .structure-item:hover {
    transform: translateX(10px);
    border-left-width: 6px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

/* Enhanced Checklist Items */
.page-author-guidelines .checklist-item {
    transition: all 0.3s ease;
}

.page-author-guidelines .checklist-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.page-author-guidelines .checklist-item:hover i {
    transform: scale(1.2);
}

/* Enhanced Guidelines List */
.page-author-guidelines .guidelines-list li {
    transition: all 0.3s ease;
}

.page-author-guidelines .guidelines-list li:hover {
    transform: translateX(10px);
    border-left-color: #764ba2;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

/* Pulse Animation for Icons */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(102, 126, 234, 0);
    }
}

.page-author-guidelines .guidelines-hero .hero-icon {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Enhanced Quick Links Section */
.page-author-guidelines .quick-links-icon {
    transition: transform 0.4s ease;
}

.page-author-guidelines .quick-links-section:hover .quick-links-icon {
    transform: scale(1.15) rotate(-5deg);
}

.page-author-guidelines .download-btn {
    transition: all 0.3s ease;
}

.page-author-guidelines .download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced Guideline Card */
.page-author-guidelines .guideline-card {
    transition: all 0.4s ease;
}

.page-author-guidelines .guideline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(102, 126, 234, 0.18);
}

.page-author-guidelines .guideline-card .guideline-icon {
    transition: all 0.4s ease;
}

.page-author-guidelines .guideline-card:hover .guideline-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Step Items Enhanced */
.page-author-guidelines .step-item {
    transition: all 0.3s ease;
}

.page-author-guidelines .step-item:hover {
    transform: translateX(8px);
    border-left-width: 6px;
    background: linear-gradient(90deg, #ffffff 0%, #f8fafc 100%);
}

.page-author-guidelines .step-number {
    transition: transform 0.4s ease;
}

.page-author-guidelines .step-item:hover .step-number {
    transform: scale(1.15);
}

/* Requirement Items Enhanced */
.page-author-guidelines .requirement-item {
    transition: all 0.3s ease;
}

.page-author-guidelines .requirement-item:hover {
    transform: translateX(8px);
    border-left-color: #059669;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.1);
}

/* Contact Card Enhanced */
.page-author-guidelines .contact-card {
    transition: all 0.4s ease;
}

.page-author-guidelines .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

/* Contact Button Enhanced */
.page-author-guidelines .contact-btn {
    position: relative;
    overflow: hidden;
}

.page-author-guidelines .contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.page-author-guidelines .contact-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet - 992px */
@media (max-width: 992px) {
    .page-author-guidelines .guidelines-hero {
        padding: 80px 0 60px;
    }

    .page-author-guidelines .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-author-guidelines .guidelines-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-author-guidelines .content-section {
        padding: 40px 30px;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .page-author-guidelines .guidelines-hero {
        padding: 70px 0 50px;
    }

    .page-author-guidelines .guidelines-hero .hero-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .page-author-guidelines .guidelines-hero h1 {
        font-size: 28px;
    }

    .page-author-guidelines .guidelines-hero .hero-subtitle {
        font-size: 16px;
    }

    .page-author-guidelines .container {
        padding: 0 16px;
    }

    .page-author-guidelines .intro-section {
        padding: 50px 0;
    }

    .page-author-guidelines .intro-text h2 {
        font-size: 24px;
    }

    .page-author-guidelines .intro-text p {
        font-size: 15px;
    }

    .page-author-guidelines .quick-links-section {
        padding: 30px 0;
    }

    .page-author-guidelines .quick-links-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }

    .page-author-guidelines .download-buttons {
        flex-direction: column;
        width: 100%;
    }

    .page-author-guidelines .download-btn {
        width: 100%;
        justify-content: center;
    }

    .page-author-guidelines .guidelines-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-author-guidelines .guideline-card {
        padding: 25px 20px;
    }

    .page-author-guidelines .content-section {
        padding: 30px 20px;
        margin-bottom: 25px;
    }

    .page-author-guidelines .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .page-author-guidelines .section-icon {
        margin: 0 auto;
    }

    .page-author-guidelines .section-title {
        font-size: 22px;
    }

    .page-author-guidelines .content-text {
        font-size: 15px;
    }

    /* Table Responsive - Horizontal Scroll */
    .page-author-guidelines .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
    }

    .page-author-guidelines table {
        min-width: 500px;
        font-size: 13px;
    }

    .page-author-guidelines table th,
    .page-author-guidelines table td {
        padding: 12px 10px;
    }

    .page-author-guidelines .guidelines-list li {
        font-size: 14px;
        padding: 10px 0;
    }

    .page-author-guidelines .info-box,
    .page-author-guidelines .warning-box {
        padding: 20px;
    }

    .page-author-guidelines .info-box h4,
    .page-author-guidelines .warning-box h4 {
        font-size: 17px;
    }

    .page-author-guidelines .info-box p,
    .page-author-guidelines .warning-box p {
        font-size: 14px;
    }

    .page-author-guidelines .cta-section {
        padding: 50px 0;
    }

    .page-author-guidelines .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-author-guidelines .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .page-author-guidelines .contact-card {
        padding: 30px 20px;
    }

    .page-author-guidelines .contact-buttons {
        flex-direction: column;
    }

    .page-author-guidelines .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .page-author-guidelines .guidelines-hero {
        padding: 60px 0 40px;
    }

    .page-author-guidelines .guidelines-hero .hero-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .page-author-guidelines .guidelines-hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .page-author-guidelines .guidelines-hero .hero-subtitle {
        font-size: 14px;
    }

    .page-author-guidelines .container {
        padding: 0 12px;
    }

    .page-author-guidelines .intro-text h2 {
        font-size: 20px;
    }

    .page-author-guidelines .intro-text p {
        font-size: 14px;
    }

    .page-author-guidelines .guideline-card {
        padding: 20px 15px;
    }

    .page-author-guidelines .guideline-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .page-author-guidelines .guideline-card h3 {
        font-size: 16px;
    }

    .page-author-guidelines .guideline-card p {
        font-size: 13px;
    }

    .page-author-guidelines .content-section {
        padding: 25px 15px;
        margin-bottom: 20px;
    }

    .page-author-guidelines .section-title {
        font-size: 18px;
    }

    .page-author-guidelines .section-icon {
        width: 45px;
        height: 45px;
    }

    .page-author-guidelines .section-icon i {
        font-size: 20px !important;
    }

    .page-author-guidelines .content-text {
        font-size: 14px;
    }

    .page-author-guidelines table {
        font-size: 12px;
    }

    .page-author-guidelines table th,
    .page-author-guidelines table td {
        padding: 10px 8px;
    }

    .page-author-guidelines .guidelines-list li {
        font-size: 13px;
        padding: 8px 0;
        padding-left: 25px;
    }

    .page-author-guidelines .guidelines-list li::before {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }

    .page-author-guidelines .info-box,
    .page-author-guidelines .warning-box {
        padding: 15px;
        margin-top: 20px;
    }

    .page-author-guidelines .info-box h4,
    .page-author-guidelines .warning-box h4 {
        font-size: 15px;
    }

    .page-author-guidelines .info-box p,
    .page-author-guidelines .warning-box p {
        font-size: 13px;
    }

    .page-author-guidelines .cta-section {
        padding: 40px 0;
    }

    .page-author-guidelines .cta-content h2 {
        font-size: 22px;
    }

    .page-author-guidelines .cta-content p {
        font-size: 14px;
    }

    .page-author-guidelines .cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .page-author-guidelines .contact-card {
        padding: 25px 15px;
    }

    .page-author-guidelines .contact-title {
        font-size: 20px;
    }

    .page-author-guidelines .contact-text {
        font-size: 14px;
    }

    .page-author-guidelines .contact-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}