/* Container styling */
.author-card {
    direction: rtl;
    /* Sets Right-to-Left for Arabic text */
    max-width: 900px;
    margin: 20px auto;
    background: #ffffff;
    padding: 20px;
    font-family: 'Cairo', sans-serif;
    /* Recommended Arabic font */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Section Title */
.author-header {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: right;
}

/* Flex layout for image and text */
.author-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Circular Image Container */
.author-image-container {
    flex-shrink: 0;
}

.author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ddd;
}

/* Text details */
.author-details {
    flex-grow: 1;
}

.author-name {
    color: #4da9d0;
    /* Blue color from screenshot */
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-bio {
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
    text-align: justify;
}

/* Responsive: Stack vertically on mobile */
@media (max-width: 600px) {
    .author-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-header {
        text-align: center;
    }

    .author-bio {
        text-align: center;
    }
}