.firma-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding: 50px;
    box-sizing: border-box;
    background: #fafafa;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;

}

.firma-left,
.firma-right {
    width: 50%;
}

.firma-title {
    margin-bottom: 20px;
}

.firma-opis p {
    line-height: 1.6;
    margin-bottom: 1em;
}

.firma-nap p {
    margin: 0 0 8px;
}

.firma-name {
    font-size: 18px;
}

.firma-mapa iframe {
    width: 100%;
    height: 300px;
    border: 0;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .firma-grid {
        flex-direction: column;
        padding: 25px;
    }

    .firma-left,
    .firma-right {
        width: 100%;
    }
}







/* =========================
   RESPONSYWNOŚĆ
   ========================= */

@media (max-width: 768px) {
    .firma-miasto {
        padding: 25px;
    }

    .firma-miasto-header h1 {
        font-size: 26px;
    }
}





/* =========================
   STRONA MIASTA – LISTA FIRM
   ========================= */

   .firma-miasto {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    margin-top:50px;
    box-sizing: border-box;
    background: #fafafa;
}

.firma-miasto-header {
    margin-bottom: 40px;
}

.firma-miasto-header h1 {
    font-size: 32px;
    margin: 0;
}

/* Lista firm – kafle */
.firma-miasto-lista {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Karta firmy */
.firma-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 25px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.firma-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* Nazwa firmy */
.firma-card-title {
    font-size: 18px;
    margin: 0;
}

.firma-card-title a {
    color: #000;
    text-decoration: none;
}

.firma-card-title a:hover {
    text-decoration: underline;
}

/* Brak firm */
.firma-miasto-empty {
    font-size: 18px;
    color: #666;
    margin-top: 30px;
}

/* =========================
   RESPONSYWNOŚĆ
   ========================= */

@media (max-width: 768px) {
    .firma-miasto {
        padding: 25px;
    }

    .firma-miasto-header h1 {
        font-size: 26px;
    }
}
