/* Authors Hero Section */
    .authors-hero {
        padding: 10rem 2rem 4rem;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .authors-hero h1 {
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
    }

    .authors-hero h1 .highlight {
        color: #17ef97;
    }

    .authors-hero p {
        font-size: 1.2rem;
        line-height: 1.6;
        margin: 0 auto 2rem;
        max-width: 800px;
        color: #f0f0f0;
    }

    /* Authors Grid Section */
    .authors-section {
        padding: 2rem 2rem 5rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .authors-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .author-card {
        background: linear-gradient(145deg, #0a0a0a, #161616);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        position: relative;
        border: 1px solid #222;
    }

    .author-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(23, 239, 151, 0.15);
        border-color: #17ef97;
    }

    .author-header {
        padding: 2rem;
        display: flex;
        align-items: center;
        gap: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .author-image {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #17ef97;
        transition: transform 0.3s ease;
    }

    .author-card:hover .author-image {
        transform: scale(1.05);
    }

    .author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author-title {
        flex: 1;
    }

    .author-title h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    .author-meta {
        display: flex;
        gap: 1.5rem;
        font-size: 0.9rem;
        color: #ccc;
    }

    .author-meta span {
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

    .author-meta .highlight {
        color: #17ef97;
        font-weight: 600;
    }

    .author-content {
        padding: 0 2rem 2rem;
    }

    .author-content p {
        margin-bottom: 1.2rem;
        color: #f0f0f0;
        line-height: 1.7;
    }

    .author-books {
        margin-top: 1.5rem;
    }

    .author-books h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #17ef97;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .books-list {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .book-item {
        background: rgba(255, 255, 255, 0.05);
        padding: 0.8rem 1rem;
        border-radius: 10px;
        transition: background 0.3s ease;
    }

    .book-item:hover {
        background: rgba(23, 239, 151, 0.1);
    }

    .tag-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .tag {
        background: rgba(23, 239, 151, 0.1);
        color: #17ef97;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        font-size: 0.8rem;
        transition: all 0.3s ease;
    }

    .tag:hover {
        background: #17ef97;
        color: #000;
    }

    .author-quote {
        padding: 1.5rem;
        margin-top: 1.5rem;
        border-left: 3px solid #17ef97;
        background: rgba(23, 239, 151, 0.05);
        border-radius: 0 10px 10px 0;
        font-style: italic;
        color: #e0e0e0;
    }

     /* Mobile Responsive */
    @media (max-width: 992px) {
        .authors-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }

    @media (max-width: 768px) {
        .author-header {
            flex-direction: column;
            text-align: center;
        }
        .author-meta {
            justify-content: center;
            flex-wrap: wrap;
        }
    }