/* Posts Grid Shortcode CSS - A meglévő stílus alapján */

.posts-grid-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    font-family: "Poppins", Sans-serif;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
    padding: 0;
}

.posts-grid-item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.posts-grid-card {
    transition: box-shadow 0.3s ease;
    background: #f5f5f5;
    padding: 15px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    height: 100%;
}

.posts-grid-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.posts-grid-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0px;
}

.posts-grid-image a {
    display: block;
    text-decoration: none;
}

.posts-grid-image img {
    width: 100%;
    border-radius: 5px;
    display: block;
    margin-bottom: 10px;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.posts-grid-image:hover img {
    transform: scale(1.02);
}

.posts-grid-content {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

.posts-grid-header {
    margin-bottom: 10px;
}

.posts-grid-title {
    font-size: 1.2em;
    margin-bottom: 3px;
    text-align: left;
}

.posts-grid-title a {
    font-size: 23px;
    font-weight: 600;
    line-height: 30px;
    color: #131313;
    text-decoration: none;
    font-family: "Poppins", Sans-serif;
}

.posts-grid-title a:hover {
    text-decoration: underline;
}

.posts-grid-meta {
    display: flex;
    color: #636363;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Poppins", Sans-serif;
    flex-wrap: wrap;
    gap: 10px;
}

.posts-grid-meta time::after {
    content: "•";
    margin-left: 10px;
    margin-right: 10px;
    color: #636363;
}

.posts-grid-excerpt {
    color: #3B3B3B;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
    margin-bottom: 15px;
    flex: 1;
}

.posts-grid-excerpt p {
    margin-bottom: 0px;
}

.posts-grid-footer {
    margin-top: auto;
}

.posts-grid-readmore {
    background-color: #824f8c;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    font-size: 15px;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    font-family: "Poppins", Sans-serif;
}

.posts-grid-readmore:hover {
    background-color: #9d5ea7;
    transform: translateY(-2px);
}

/* Tablet és mobil nézet */
@media (max-width: 768px) {
    .posts-grid-container {
        padding: 15px 10px;
    }
    
    .posts-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    .posts-grid-content {
        padding: 15px;
    }
    
    .posts-grid-title a {
        font-size: 20px;
        line-height: 26px;
    }
    
    .posts-grid-meta {
        font-size: 12px;
    }
    
    .posts-grid-excerpt {
        font-size: 13px;
        line-height: 24px;
    }
    
    .posts-grid-readmore {
        font-size: 14px;
        height: 42px;
    }
}

/* Kisebb mobil eszközök */
@media (max-width: 480px) {
    .posts-grid-container {
        padding: 10px 5px;
    }
    
    .posts-grid {
        gap: 15px;
    }
    
    .posts-grid-card {
        padding: 12px;
    }
    
    .posts-grid-image img {
        height: 200px;
    }
    
    .posts-grid-content {
        padding: 15px;
    }
    
    .posts-grid-title a {
        font-size: 18px;
        line-height: 24px;
    }
    
    .posts-grid-meta {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .posts-grid-excerpt {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 12px;
    }
    
    .posts-grid-readmore {
        font-size: 13px;
        height: 40px;
    }
}

/* Elementor kompatibilitás */
.elementor-widget-container .posts-grid-container {
    margin: 0;
}

/* Hozzáférhetőség javítása */
@media (prefers-reduced-motion: reduce) {
    .posts-grid-card,
    .posts-grid-image img,
    .posts-grid-readmore {
        transition: none;
    }
    
    .posts-grid-card:hover {
        transform: none;
    }
    
    .posts-grid-image:hover img {
        transform: none;
    }
    
    .posts-grid-readmore:hover {
        transform: none;
    }
}

/* Fokusz állapotok akadálymentesítéshez */
.posts-grid-title a:focus,
.posts-grid-readmore:focus {
    outline: 2px solid #824f8c;
    outline-offset: 2px;
}

/* Kategória linkek stílusa ha vannak */
.posts-grid .post-categories a {
    color: #636363;
    text-decoration: none;
    font-family: "Poppins", Sans-serif;
}

.posts-grid .post-categories a:hover {
    text-decoration: underline;
}