/* ============================================================
   Uzletek1 — üzletek / bemutatótermek lista (Figma 664:15541)
   ============================================================ */

.uz1-section {
    padding: clamp(48px, 5vw, 80px) 0;
}

/* ---- Bejegyzés (egy üzlet) ---- */

.uz1-entry {
    border-bottom: 1px solid #9d9d9d;
    padding-bottom: 48px;
    margin-bottom: 24px;
}

.uz1-entry--last {
    border-bottom: none;
    padding-bottom: 0;
}

/* ---- Városnév cím ---- */

.uz1-city-title {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.0625rem);
    line-height: 1.2;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* ---- Háromoszlopos sor ---- */

.uz1-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* ---- Képek ---- */

.uz1-img-wrap {
    position: relative;
    height: 360px;
    overflow: hidden;
}

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

/* ---- "Továbi képek" gomb (kép 1 overlay) ---- */

.uz1-more-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1;
    padding: 8px 24px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.uz1-more-btn:hover {
    opacity: 0.85;
    text-decoration: none;
    color: #fff;
}

/* ---- Info oszlop ---- */

.uz1-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 360px;
}

.uz1-info__top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

/* ---- Cím (address) ---- */

.uz1-address {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2.1875rem);
    line-height: 1.2;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

/* ---- Törzsszöveg (nyitvatartás, elérhetőség) ---- */

.uz1-body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #000;
}

.uz1-body a{
    text-decoration: none !important;
    color: black;
}

.uz1-body a:hover {
    color: var(--primary);
}

.uz1-body p {
    margin-bottom: 0;
}

.uz1-body strong,
.uz1-body b {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

/* ---- Útvonaltervezés gomb ---- */

.uz1-route-btn {
    display: block;
    width: 100%;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1;
    text-align: center;
    padding: 12px 48px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.uz1-route-btn:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

/* ---- Tablet (991px) ---- */

@media (max-width: 991px) {
    .uz1-row {
        grid-template-columns: 1fr 1fr;
    }

    .uz1-info {
        grid-column: 1 / -1;
        min-height: auto;
    }
}

/* ---- Mobil (575px) ---- */

@media (max-width: 575px) {
    .uz1-row {
        grid-template-columns: 1fr;
    }

    .uz1-img-wrap {
        height: 240px;
    }

    .uz1-info {
        min-height: auto;
    }

    .uz1-entry {
        padding-bottom: 32px;
    }
}
