/* about.css — новый файл */

.about {
    padding: 60px 0;
    background: #f8fafc;
}

.about__title {
    font-size: 36px;
    margin-bottom: 12px;
    color: #2C3E50;
    text-align: center;
    font-weight: 700;
}

.about__text {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    text-align: center;
    margin: 0 auto 48px;
    max-width: 600px;
}

.about__gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.about__image {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 250px;
    height: 280px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 16px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid #e9edf2;
}

.about__image:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

/* Фоновые картинки PNG — оригинальные имена */
.about__image--nuc {
    background-image: url("../products/IntelNUC.png");
}

.about__image--t150 {
    background-image: url("../products/Dell PowerEdge T150.png");
}

.about__image--rack {
    background-image: url("../products/Dell EMC PowerEdge Rack G15.png");
}

/* Карточка поверх фона */
.about__card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    padding: 16px 18px;
    border-radius: 12px;
    width: 100%;
    opacity: .9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about__card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 2px;
    color: #1A2A3A;
}

.about__card-text {
    font-size: 13px;
    color: #555;
    margin: 4px 0 0;
    line-height: 1.4;
}

.about__badge {
    display: inline-block;
    background: #00D4AA;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.about__badge--blue {
    background: #1E4D6B;
}

.about__badge--green {
    background: #1a7a4a;
}

/* Адаптив */
@media (max-width: 992px) {
    .about__image {
        flex: 1 1 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .about {
        display: none;
    }
}

@media (max-width: 576px) {
    .about__image {
        flex: 1 1 100%;
        height: 220px;
    }
}