.awards-section {
    width: 100%;
    padding: 50px 20px;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.awards-title {
    margin-bottom: 40px;
    font-size: 24px; /* за бажанням можна змінити */
    font-weight: 600;
}

.awards-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;

    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.awards-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    will-change: transform;
}

.award-item {
    flex: 0 0 auto !important;
    min-width: 120px;
}

.award-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

@media (max-width:1024px){ .award-logo { width:100px; height:100px; } }
@media (max-width:768px){ .award-logo { width:80px; height:80px; } }
@media (max-width:480px){ .award-logo { width:60px; height:60px; } }