/* Foglalkozás Csempék - Frontend Stílusok */

.foglalkozas-csempek-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Alapértelmezett 3 oszlop */
    gap: 20px;
    margin: 30px auto;
    padding: 0 20px;
    max-width: 1400px;
    width: 100%;
    justify-items: center; /* Csempék középre igazítása az oszlopokon belül */
    box-sizing: border-box;
}

/* Tablet - max 3 oszlop */
@media (max-width: 1200px) {
    .foglalkozas-csempek-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 20px;
        max-width: 1000px;
    }
}

/* Mobil landscape - max 2 oszlop */
@media (max-width: 768px) and (orientation: landscape) {
    .foglalkozas-csempek-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
        max-width: 700px;
    }
}

/* Mobil portrait - 1 oszlop */
@media (max-width: 768px) and (orientation: portrait) {
    .foglalkozas-csempek-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
        max-width: 480px;
    }
}

/* Nagyon keskeny mobil - 1 oszlop */
@media (max-width: 480px) {
    .foglalkozas-csempek-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
        max-width: 100%;
    }
}

.foglalkozas-csempe {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Erősebb árnyék */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%; /* Grid oszlop teljes szélessége */
    max-width: 450px; /* Maximum szélesség */
}

.foglalkozas-csempe:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Még erősebb árnyék hover-nál */
}

.csempe-kep {
    width: 100%;
    overflow: hidden;
}

.csempe-kep img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.csempe-tartalom {
    padding: 20px;
}

.csempe-cim {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #333;
    text-align: center; /* Középre igazítás */
}

.csempe-idopont,
.csempe-helyszin,
.csempe-email,
.csempe-jelentkezes {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.csempe-email a {
    color: #0066cc;
    text-decoration: none;
}

.csempe-email a:hover {
    text-decoration: underline;
}

.csempe-miert-hasznos,
.csempe-mikor,
.csempe-hol {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.csempe-miert-hasznos strong,
.csempe-mikor strong,
.csempe-hol strong {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.csempe-miert-hasznos ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.csempe-miert-hasznos ul li {
    margin-bottom: 5px;
    color: #555;
}

.csempe-bovebben {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.bovebben-link {
    display: inline-block;
    padding: 8px 16px;
    background: #0066cc;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.bovebben-link:hover {
    background: #0052a3;
}

/* Lenyitható "További információk" rész */
.csempe-tovabbi-info {
    margin-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.tovabbi-info-toggle {
    width: 100%;
    padding: 12px;
    background: #f5f5f5;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.tovabbi-info-toggle:hover {
    background: #e8e8e8;
}

.tovabbi-info-toggle::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.tovabbi-info-toggle.active::after {
    transform: rotate(180deg);
}

.tovabbi-info-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
}

.tovabbi-info-content.active {
    max-height: 1000px;
    padding-top: 15px;
}

.csempe-linkek {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.csempe-link {
    display: inline-block;
    padding: 6px 12px;
    background: #f5f5f5;
    color: #0066cc !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.3s ease;
}

.csempe-link:hover {
    background: #e0e0e0;
}

/* Admin stílusok finomítása */
@media screen and (min-width: 783px) {
    .post-type-foglalkozas_csempe #post-body-content {
        margin-bottom: 20px;
    }
}

/* Responsive kép */
.csempe-kep img {
    max-width: 100%;
    height: auto;
}

/* Ha nincs kép */
.csempe-kep:empty {
    display: none;
}

/* Nyomtatási stílusok */
@media print {
    .foglalkozas-csempek-container {
        display: block;
    }
    
    .foglalkozas-csempe {
        page-break-inside: avoid;
        margin-bottom: 20px;
        box-shadow: none;
        border: 1px solid #000;
    }
}
