.wayexpert-content {
    width: 100%;
    background-color: #f8f9fa;
    padding: 40px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.wayexpert-container {
    max-width: 1200px;
    width: 100%;
}

.wayexpert-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.wayexpert-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

/* Адаптивность для планшетов */
@media (max-width: 992px) {
    .wayexpert-content {
        padding: 30px 0;
    }
    
    .wayexpert-img {
        border-radius: 6px;
    }
    
    .wayexpert-placeholder {
        height: 300px;
        font-size: 16px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 576px) {
    .wayexpert-content {
        padding: 20px 0;
    }
    
    .wayexpert-container {
        padding: 0 15px;
    }
    
    .wayexpert-img {
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .wayexpert-placeholder {
        height: 250px;
        font-size: 14px;
        padding: 15px;
    }
}