/* objects.css - стили для страницы объектов и партнёров */

.objects-page {
    background-color: #fcc200;
    padding: 60px 0;
}

.objects-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: 48px;
    color: #E63946;
    text-align: center;
    margin-bottom: 20px;
}

.objects-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.5;
}

.objects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.object-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.object-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.object-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #fafafa;
    border-radius: 12px;
    padding: 15px;
}

.object-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s;
}

.object-card:hover .object-logo img {
    filter: grayscale(0%);
}

.object-name {
    font-size: 16px;
    font-weight: 600;
    color: #292929;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .objects-page {
        padding: 40px 20px;
    }
    .objects-title {
        font-size: 32px;
    }
    .objects-description {
        font-size: 16px;
        padding: 0 15px;
    }
    .objects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .object-logo {
        height: 100px;
    }
}