/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
/* Author Box Container */
.custom-author-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 25px;
    margin-top: 40px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Image/Avatar */
.cab-avatar img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

/* Content Area */
.cab-content {
    flex: 1;
}

.cab-content h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    font-family: inherit;
}

.cab-bio p {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Social Icons */
.cab-socials {
    display: flex;
    gap: 15px;
}

.cab-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f4f4f4;
    color: #666;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cab-socials a:hover {
    background: #222;
    color: #fff;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media screen and (max-width: 600px) {
    .custom-author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .cab-socials {
        justify-content: center;
    }
}

/* Related Posts Container */
.related-posts-container {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.related-posts-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}

/* Grid Layout */
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ৩টি কলাম */
    gap: 20px;
}

/* Card Style */
.related-post-card {
    display: block;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

/* Image Style */
.rp-thumb {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
}

/* Title Style */
.rp-content {
    padding: 15px;
}

.rp-content h4 {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #222;
    font-weight: 600;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .related-posts-grid {
        grid-template-columns: 1fr; /* মোবাইলে ১টি কলাম */
    }
    
    .rp-thumb {
        height: 200px;
    }
}