/**
 * Jeet Author Box Styles
 */

.jeet-author-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: inherit;
    gap: 20px;
}

.jeet-author-box * {
    box-sizing: border-box;
}

/* Avatar */
.jab-avatar {
    flex-shrink: 0;
}

.jab-avatar img {
    border-radius: 50%;
    display: block;
    width: 96px;
    height: 96px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

/* Content */
.jab-content {
    flex: 1;
}

.jab-header {
    margin-bottom: 10px;
}

.jab-name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.2;
}

.jab-name a {
    text-decoration: none;
    color: inherit;
}

.jab-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.jab-bio p {
    margin: 0 0 10px;
}

.jab-bio p:last-child {
    margin-bottom: 0;
}

/* Social Icons */
.jab-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jab-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    /* Fallback if using text/icon fonts */
}

.jab-social-icon:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.1);
}

/* Themes */

/* Light Theme */
.jab-theme-light {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #333333;
}

.jab-theme-light .jab-name {
    color: #111;
}

/* Dark Theme */
.jab-theme-dark {
    background: #1f2937;
    color: #f3f4f6;
    border: 1px solid #374151;
}

.jab-theme-dark .jab-name {
    color: #ffffff;
}

.jab-theme-dark .jab-social-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.jab-theme-dark .jab-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Blue Theme */
.jab-theme-blue {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0c4a6e;
    border: 1px solid #bae6fd;
}

.jab-theme-blue .jab-name {
    color: #075985;
}

.jab-theme-blue .jab-avatar img {
    border-color: #ffffff;
}

/* Responsive */
@media (max-width: 600px) {
    .jeet-author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .jab-social-links {
        justify-content: center;
    }
}