/**
 * Author Info with Schema - Styles
 * Version: 1.3.0
 */

/* ============================================
   STYLE 1: SIMPLE LIST (DEFAULT)
   ============================================ */

.author-info-style-1 {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.author-info-style-1 .author-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.author-info-style-1 .author-info-list li {
    padding: 8px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #e8e8e8;
}

.author-info-style-1 .author-info-list li:last-child {
    border-bottom: none;
}

.author-info-style-1 .author-info-list li::before {
    content: "• ";
    color: #666;
    margin-right: 8px;
}

.author-info-style-1 strong {
    font-weight: 600;
    color: #333;
}

.author-info-style-1 .author-profile-link {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.author-info-style-1 .author-profile-link:hover {
    color: #005177;
    text-decoration: underline;
}

.author-info-style-1 .author-job-title {
    font-size: 14px;
    color: #777;
    padding-left: 20px;
}

/* ============================================
   STYLE 2: INLINE
   ============================================ */

.author-info-style-2 {
    padding: 15px 20px;
    margin: 20px 0;
    border-left: 4px solid #0073aa;
    background-color: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.author-info-style-2 .separator {
    color: #999;
    margin: 0 8px;
}

.author-info-style-2 strong {
    font-weight: 600;
    margin-right: 3px;
}

.author-info-style-2 .author-profile-link {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.author-info-style-2 .author-profile-link:hover {
    color: #005177;
    text-decoration: underline;
}

.author-info-style-2 em {
    color: #666;
    font-size: 13px;
}

/* ============================================
   STYLE 3: CARD/BOX
   ============================================ */

.author-info-style-3 {
    padding: 25px;
    margin: 20px 0;
    border: 2px solid #0073aa;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.author-info-style-3 .author-info-heading {
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073aa;
    font-size: 18px;
    font-weight: 600;
    color: #0073aa;
}

.author-info-style-3 .author-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.author-info-style-3 .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.author-info-style-3 .info-icon {
    font-size: 24px;
    line-height: 1;
}

.author-info-style-3 .info-content {
    flex: 1;
}

.author-info-style-3 .info-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.author-info-style-3 .info-value {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.author-info-style-3 .info-subtitle {
    font-size: 13px;
    color: #777;
    font-style: italic;
    margin-top: 4px;
}

.author-info-style-3 .author-profile-link {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.author-info-style-3 .author-profile-link:hover {
    color: #005177;
    text-decoration: underline;
}

/* ============================================
   STYLE 4: MINIMAL
   ============================================ */

.author-info-style-4 {
    padding: 12px 0;
    margin: 15px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.author-info-style-4 .author-profile-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.author-info-style-4 .author-profile-link:hover {
    color: #0073aa;
    text-decoration: underline;
}

.author-info-style-4 em {
    color: #888;
    font-size: 13px;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .author-info-style-1,
    .author-info-style-2,
    .author-info-style-3 {
        padding: 15px;
        margin: 15px 0;
    }
    
    .author-info-style-3 .author-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .author-info-style-2 {
        font-size: 13px;
    }
    
    .author-info-style-2 .separator {
        display: block;
        margin: 5px 0;
        visibility: hidden;
    }
    
    .author-info-style-2 span {
        display: block;
        margin: 5px 0;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .author-info-container {
        border: 1px solid #000;
        background-color: #fff;
        box-shadow: none;
    }
    
    .author-info-container .author-profile-link {
        color: #000;
        text-decoration: underline;
    }
    
    .author-info-style-3 {
        border-color: #000;
    }
    
    .author-info-style-3 .author-info-heading {
        border-bottom-color: #000;
        color: #000;
    }
}
