/* Receptek Galéria - Masonry Layout */
.receptek-galeria {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Grid helyett CSS Column-t használunk a valódi Masonry hatáshoz */
.receptek-grid {
    column-count: 3; /* 3 oszlop desktopon */
    column-gap: 20px;
}

.recept-card {
    position: relative;
    display: inline-block; /* Fontos: ez akadályozza meg a szétcsúszást column nézetben */
    width: 100%;
    margin-bottom: 20px; /* Távolság a kártyák között függőlegesen */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    overflow: hidden;
    background: #fff; /* Háttérszín, ha a kép nem töltene be azonnal */
    
    /* Megakadályozza, hogy a kártya kettétörjön két oszlop között */
    break-inside: avoid; 
    -webkit-column-break-inside: avoid;
}

.recept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2; /* Hover esetén kerüljön előtérbe */
}

.recept-card img {
    width: 100%;
    height: auto; /* Eredeti arány megtartása - NINCS CROP */
    display: block;
}

.recept-placeholder {
    width: 100%;
    padding-bottom: 75%; /* Fallback magasság */
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.recept-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* Erősebb sötétítés alul, hogy bármilyen képen olvasható legyen a szöveg */
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    padding: 30px 15px 15px;
    color: white;
}

.recept-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5); /* Olvashatóság javítása */
}

.recept-eloado {
    margin: 0;
    font-size: 13px;
    opacity: 0.95;
    color: #ffffff;
    font-weight: 500;
}

/* Single Recept Oldal - Változatlan, csak a biztonság kedvéért itt hagyjuk */
.recept-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.recept-meta {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.recept-featured-image {
    margin-bottom: 30px;
    text-align: center;
}

.recept-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.recept-section {
    margin-bottom: 30px;
}

.recept-section h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.recept-section ul,
.recept-section ol {
    margin-left: 20px;
    line-height: 1.8;
}

.recept-section li {
    margin-bottom: 8px;
}

.recept-section p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

/* Reszponzív nézetek Masonry-hoz */
@media (max-width: 900px) {
    .receptek-grid {
        column-count: 2; /* Tableten 2 oszlop */
        column-gap: 15px;
    }
}

@media (max-width: 600px) {
    .receptek-grid {
        column-count: 1; /* Mobilon 1 oszlop */
    }
    
    .recept-overlay h3 {
        font-size: 15px;
    }
    
    .recept-single {
        padding: 15px;
    }
}