/* Típusházak grid shortcode */
.tipushazak-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
        font-family: "Montserrat", Sans-serif;
    box-sizing: border-box;
}

.tipushaz-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.tipushaz-item:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.tipushaz-kep {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f2f2f2;
}

.tipushaz-kep .tipushaz-img,
.tipushaz-kep img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.tipushaz-item:hover .tipushaz-kep img {
    transform: scale(1.05);
}

.tipushaz-kep-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8, #cfcfcf);
}

.tipushaz-adatok {
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex: 1;
}

.tipushaz-leiras p.wp-block-paragraph {
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #191D24;
}

.tipushaz-leiras strong {
    font-weight: 600;
}

.tipushaz-cim {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: #1a1a1a;
    line-height: 1.3;
}

.tipushaz-elonyok {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.tipushaz-elonyok li {
    position: relative;
    padding: 6px 0 6px 22px;
    color: #191D24;
    line-height: 1.45;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
    font-weight: 400;
}

.tipushaz-elonyok li:last-child {
    border-bottom: none;
}

.tipushaz-elonyok li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 6px;
    color: #2e8b57;
    font-weight: 700;
}

.tipushaz-gomb {
    display: inline-block;
    text-align: center;
    padding: 12px 18px;
    background: #1f398a;
        border: 1px solid #1e3a8a;
    color: #fff !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: background .25s ease, transform .15s ease;
    margin-top: auto;
}

.tipushaz-gomb:hover,
.tipushaz-gomb:focus {
    background: transparent;
    text-decoration: none;
        border: 1px solid #1e3a8a;
    color: #1e3a8a !important;
}

.tipushaz-gomb:active {
    transform: translateY(1px);
}

.tipushazak-empty {
    text-align: center;
    padding: 30px;
    color: #777;
}

/* Reszponzív: 2 oszlop tablet, 1 oszlop mobil */
@media (max-width: 992px) {
    .tipushazak-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .tipushazak-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Kiemelt kártya */
.tipushaz-item.tipushaz-kiemelt {
    border: 2px solid #1e3a8a;
    box-shadow: 0 6px 22px rgba(30, 58, 138, 0.18);
}

.tipushaz-item.tipushaz-kiemelt:hover {
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.25);
}

.tipushaz-badge {
    background: #1e3a8a;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    padding: 11px 15px;
}