/**
* Theme Name: Purehearts Child
* Description: This is a child theme of Purehearts, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/theme-kalia">Theme Kalia</a>
* Template: purehearts
* Version: 2.5
*/

.rjs-home-video-section {
    max-width: 1300px;
    margin: 40px auto;
    padding: 20px;
}

.rjs-section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

#rjs-post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.rjs-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    transition: 0.3s;
}

.rjs-post-card:hover {
    transform: scale(1.03);
}

.rjs-thumb img {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.rjs-title {
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
}

#rjs-load-more {
    margin: 25px auto;
    display: block;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border: none;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
}

#rjs-load-more:hover {
    background: #333;
}

/* Mobile fix */
@media (max-width: 768px) {
    #rjs-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}







