

body{
    font-family: 'Montserrat', sans-serif;
}
    /* Author Box on Post Page */
.aam-post-author-box {
    margin: 30px 0;
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(182deg, #323232 -14.69%, #4E4E4E 116.96%), #FFF;
    
}

.aam-author-item {
    display: flex;
    align-items: center;
}

.aam-author-avatar {
    flex: 0 0 80px;
    margin-right: 20px;
}

.aam-author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.aam-author-info {
    flex: 1;
}

.aam-author-info h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.aam-author-info h4 a {
    color: #fbce58;
    text-decoration: none;
    font-family: "Montserrat", Sans-serif;
    font-size: 24px;
}








/* Author Hero Section */
.aam-author-hero {
    display: blcok;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    text-align: center;
}

.aam-author-avatar {
    flex: 0 0 150px;
    margin-right: 30px;
}

.aam-author-avatar img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.aam-author-info {
    flex: 1;
}

.aam-author-name-profile {
   background: linear-gradient(90deg, #fcfcfd 0%, #ffcb48 100%) !important;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2em !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 5px 0;
}

.aam-author-job-title {
   font-size: 20px;
    color: #fff;
    margin: 10px 0;
    font-family: "Montserrat", Sans-serif;
    font-weight: 500;
}

.aam-author-bio {
    color: #FFF;
    font-family: "Roboto", sans-serif;
    line-height: 1.4;
    font-size: 16px;
}

.aam-author-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.aam-author-social a {
    display:flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #0073aa;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.aam-author-social a:hover {
    background: #005a87;
    color: #fff;
}

/* Posts Grid */
.aam-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.aam-post-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.aam-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.aam-post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.aam-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.aam-post-item:hover .aam-post-thumbnail img {
    transform: scale(1.05);
}

.aam-post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.aam-post-title a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em;
    font-family: "Montserrat", Sans-serif !important;
    font-weight: 400;
}
.aam-post-title a:hover{
    color: #000 !important;
    text-decoration: none;
    font-weight: 600 !important;
    font-size: 16px !important;
    font-family: "Montserrat", Sans-serif !important;
}




.aam-post-date {
   font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    font-weight: 400;
}

.aam-post-excerpt {
	margin-bottom: 15px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em;
   font-weight: 400;
}

/* Posts Grid Column Variations */
.aam-columns-1 {
    grid-template-columns: 1fr;
}

.aam-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.aam-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.aam-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Author Profile Page */
.aam-author-profile {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.aam-posts-title {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.aam-author-not-found {
    text-align: center;
    padding: 60px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .aam-columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .aam-author-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .aam-author-avatar {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .aam-author-item {
        flex-direction: column;
        text-align: center;
    }
    
    .aam-author-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .aam-columns-3, .aam-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .aam-columns-2, .aam-columns-3, .aam-columns-4 {
        grid-template-columns: 1fr;
    }
    
    .aam-author-name {
        font-size: 2rem;
    }
    
    .aam-author-social {
        justify-content: center;
    }
}

/* Add these styles for SVG icons */

/* SVG Icon Styles */
.aam-social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    vertical-align: middle;
}

.aam-social-linkedin-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    vertical-align: middle;
}

.aam-social-linkedin-icon svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
    margin-top: -10px;
}


/* Add this to your styles.css if not already present */
.aam-post-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.aam-post-item.aam-animate {
    opacity: 1;
    transform: translateY(0);
}

.aam-author-name-with-social {
    display: flex;
   
}
.aam-author-info h4 a:hover{
    font-family: "Montserrat", Sans-serif;
    font-size: 24px;
}