.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.author-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    width: 100%;
}

.author-card {
    background-color: var(--background);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    list-style: none;
}

.author-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    object-fit: cover;
    margin: auto;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.author-bio {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 0;
}

.special-author {
    grid-column: 1 / -1;
    /* Span across all columns */
    padding: 20px;
    margin-bottom: 20px;
    /* Space below the card */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .author-card {
        padding: 15px;
    }

    .author-name {
        font-size: 18px;
    }

    .author-bio {
        font-size: 13px;
    }

    .special-author {
        padding: 15px;
    }
}