/* MEIST SEKTSIOON */
.lhk-about-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.lhk-about-content {
    display: grid;
    gap: 40px;
    margin-top: 30px;
}

.lhk-about-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.lhk-about-text h3 {
    color: #2c5aa0;
    margin: 30px 0 15px 0;
    font-size: 24px;
}

.lhk-about-text p {
    margin-bottom: 20px;
}

.lhk-about-text ul,
.lhk-about-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.lhk-about-text li {
    margin-bottom: 8px;
}

/* LOGODE GRID */
.lhk-about-logos {
    background: white;

    border-radius: 8px;

}

.lhk-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.lhk-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.lhk-logo-item:hover {
    transform: translateY(-5px);
}

.lhk-logo-link {
    display: block;
    transition: opacity 0.3s ease;
}

.lhk-logo-link:hover {
    opacity: 0.8;
}

.lhk-logo-image {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.lhk-logo-item:hover .lhk-logo-image {
    filter: grayscale(0%);
}

/* RESPONSIIVSUS */
@media (max-width: 768px) {
    .lhk-about-section {
        padding: 40px 0;
    }

    .lhk-about-content {
        gap: 30px;
    }

    .lhk-about-logos {
        padding: 30px 20px;
    }

    .lhk-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .lhk-logo-item {
        padding: 15px;
    }

    .lhk-logo-image {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .lhk-logos-grid {
        grid-template-columns: 1fr;
    }
}

/* ADMIN STIILID */
.lhk-wrap .lhk-logo-item {
    transform: none;
}

.lhk-wrap .lhk-logo-item:hover {
    transform: none;
}
