/* ====================================================
    Responsive
==================================================== */

/* ====================================================
    Equal-height Project Items (Home & Inner Page)
==================================================== */

/* ── Inner Projects Page (page-projects.php) ─────── */
/* Make each Bootstrap column a flex column so the
   article card stretches to the full row height.    */
.ltn__team-area .col-lg-4,
.ltn__team-area .col-sm-6 {
    display: flex;
    flex-direction: column;
}

.ltn__team-item.ltn__team-item-3 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Fix image height so all cards have a uniform image */
.ltn__team-item.ltn__team-item-3 .team-img {
    flex-shrink: 0;
    overflow: hidden;
}

.ltn__team-item.ltn__team-item-3 .team-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Push the info section to fill remaining space */
.ltn__team-item.ltn__team-item-3 .team-info {
    flex: 1;
}

/* ── Home Page Project Slider (front-page.php) ───── */
/* DO NOT alter display on .slick-track / .slick-slide —
   Slick manages those internally. Instead, just fix
   the image height so every card looks consistent.  */
.ltn__search-by-place-item {
    min-height: 440px;
}

.ltn__search-by-place-item .search-by-place-img {
    overflow: hidden;
}

.ltn__search-by-place-item .search-by-place-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}
/* Desktop 1200 - up */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* Normal desktop :992px. (Laptop 14") */
@media (min-width: 992px) and (max-width: 1199px) {
    /* Global */
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 22px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 18px;
    }
    h6 {
        font-size: 16px;
    }

}

 
/* Tablet device :768px. */
@media (min-width: 768px) and (max-width: 991px) {
    /* Global */
    body {
        font-size: 14px;
    }
    h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 18px;
    }
    h5 {
        font-size: 16px;
    }
    h6 {
        font-size: 15px;
    }
    p {
        font-size: 14px;
    }

}

 
/* small mobile :320px. */
@media (max-width: 767px) {
    /* Global */
    body {
        font-size: 14px;
    }
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 17px;
    }
    h5 {
        font-size: 16px;
    }
    h6 {
        font-size: 14px;
    }
    p {
        font-size: 14px;
    }

}
