/**
 * Simple Posts Grid CSS - Eredeti Half Slider stílus alapján
 */

/* Grid wrapper */
.simple-posts-grid-wrapper {
    width: 100%;
    padding: 20px 0;
}

span.simple-post-date {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ac9260;
    margin-bottom: 5px;
    font-family: "Manrope", Sans-serif;
}

.simple-posts-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1140px;
}

/* Bejegyzés kártya */
.simple-post-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.simple-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Bejegyzés kép */
.simple-post-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 10px;
}

.simple-post-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.simple-post-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.simple-post-card:hover .simple-post-image img {
    transform: scale(1.1);
}

/* Bejegyzés tartalom */
.simple-post-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    margin-top: 35px;
}

/* Kategória */
.simple-post-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ac9260;
    margin-bottom: 5px;
    font-family: "Manrope", Sans-serif;
}

/* Cím */
.simple-post-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    flex-grow: 1;
}

.simple-post-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "Manrope", Sans-serif;
    font-weight: 800;
    margin-bottom: 15px;
}

.simple-post-title a:hover {
    color: #4a9eff;
}

/* Excerpt */
.simple-post-excerpt {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffff;
    font-family: "Manrope", Sans-serif;
    width: 292px;
}

/* Hibaüzenet */
.simple-posts-grid-no-posts {
    text-align: center;
    padding: 60px 20px;
    background: #2d2d2d;
    border-radius: 20px;
    color: #888;
    font-size: 16px;
}

/* Responsive beállítások */
@media (max-width: 1200px) {
    .simple-posts-grid-container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .simple-posts-grid-wrapper {
        padding: 15px 0;
    }
    
    .simple-posts-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .simple-post-image {
        height: 340px;
    }
    
    .simple-post-content {
        padding: 20px;
    }
    
    .simple-post-title {
        font-size: 16px;
    }
    
    .simple-post-excerpt {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .simple-posts-grid-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .simple-post-image {
        height: 340px;
    }
    
    .simple-post-content {
        padding: 15px;
    }
    
    .simple-post-title {
        font-size: 14px;
    }
    
    .simple-post-excerpt {
        font-size: 13px;
    }
}

/* Accessibility */
.simple-post-title a:focus,
.simple-post-image a:focus {
    outline: 2px solid #4a9eff;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print stílusok */
@media print {
    .simple-posts-grid-wrapper {
        display: none;
    }
}