/* =========================================================
   KE Projektai - Footer Styles
   ========================================================= */

.kep-footer {
    width: 100%;
    background-color: #f5f5f7;
    color: #3a3f4a;
    font-size: 15px;
    line-height: 1.6;
}

.kep-footer *,
.kep-footer *::before,
.kep-footer *::after {
    box-sizing: border-box;
}

.kep-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 40px;
    width: 100%;
}

.kep-footer__col {
    min-width: 0;
}

/* ---------- Logo ---------- */
.kep-footer__logo {
    display: inline-block;
    margin-bottom: 14px;
}

.kep-footer__logo img {
    display: block;
    height: auto;
    max-width: 100%;
}

.kep-footer__tagline {
    margin: 0;
    color: inherit;
    font-size: 14px;
}

/* ---------- Title ---------- */
.kep-footer__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: #0f1a2b;
}

/* ---------- Lists ---------- */
.kep-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kep-footer__list li {
    margin-bottom: 8px;
    color: inherit;
}

.kep-footer__list a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.kep-footer__list a:hover {
    color: #1e4ed8;
}

.kep-footer__nav li {
    margin-bottom: 6px;
}

/* ---------- Bottom Bar ---------- */
.kep-footer__bottom {
    max-width: 1280px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #d9dbe0;
    color: #6b7280;
    font-size: 14px;
    text-align: center;
}

.kep-footer__bottom p {
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .kep-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

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

    .kep-footer__title {
        font-size: 17px;
        margin-bottom: 12px;
    }
}
