/* Author Bio Mobile Styles */

/* Mobile photo styles */
.josh-photo-mobile {
    border: 3px solid var(--green-field, #a2b72f);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Desktop photo styles */
.josh-photo-desktop {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Author bio card responsive adjustments */
@media (max-width: 768px) {
    .author-bio-card {
        padding: 1.5rem !important;
    }
    
    .author-bio-card h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .author-bio-card .credentials h5 {
        font-size: 1.1rem;
    }
    
    .author-bio-card .quote-box {
        padding: 1rem !important;
        font-size: 0.9rem;
    }
    
    .josh-photo-mobile {
        width: 70px !important;
        height: 70px !important;
    }
}

@media (max-width: 480px) {
    .josh-photo-mobile {
        width: 60px !important;
        height: 60px !important;
    }
    
    .author-bio-card h4 {
        font-size: 1.2rem !important;
    }
}