/*!
Theme Name: Kava Child
Theme URI:
Author: Zemez
Author URI:
Description: Kava child theme.
Template: kava
Version: 1.0.1
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kava-child
*/


/* Post Gallery Section */
.post-gallery-section {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.post-gallery-title {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}

.post-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.post-gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    line-height: 0;
}

.post-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .post-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .post-gallery-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .post-gallery-grid {
        grid-template-columns: 1fr;
    }
    .post-gallery-item img {
        height: auto;
    }
}