/*
 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
*/

.gp-related-posts {
    margin-top: 40px;
    padding: 20px;
    background: #f5f7fa;
    border-top: 2px solid #eee;
    border-radius: 10px;
}

.gp-related-posts h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    border-left: 4px solid #0073aa;
    padding-left: 10px;
}

.gp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.gp-related-post {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.gp-related-post:hover {
    transform: translateY(-5px);
}

.gp-related-post img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #eee;
}

.gp-related-post h5 {
    margin: 15px;
    font-size: 16px;
    color: #0073aa;
    text-align: center;
}

.gp-related-post h5:hover {
    text-decoration: underline;
}
