.about {
    color: #ffffff;
    overflow: hidden;
}

.about .container {
    position: relative;
}

/* Section text */

.about-text {
    width: 585px;
    display: flex;
    flex-direction: column;
    row-gap: 45px;
    z-index : 1;
}

.about-text-heading {
    height: 122px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background-image: url('/static/core/img/ui/about-highlight.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.about-text-paragraph {
    font-weight: 500;
}

.kambo-studio.text-highlight {
    position: relative;
    top: -107px;
    width: 585px;
    height: 121px;
}

/* About card */

.about-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-card {
    width: 100%; /* Занимает всю ширину ячейки grid */
    max-width: 288px; /* Сохраняет максимальную ширину карточки */
    height: 219px;

    z-index: 1;
    display: flex;
    flex-direction: column;

    background-color: #85848454;
    width: 288px;
    height: 219px;
    box-sizing: border-box;
    border-radius: 40px;
    backdrop-filter: blur(15.6px);

    border: 1px outset #c1c0c0;

    transition: transform 0.2s ease;

    padding: 27px 27px;
}

.about-card:hover {
    transform: scale(1.05);
}

.about-card-heading {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-card-text {
    font-size: 1.33rem;
    font-weight: 500;
}

/* About conent */

.about-content {
    display: flex;
    justify-content: space-between;
}

.about-background-img {
    z-index: 0;
    position: absolute;
    max-height: 100%;
    bottom: 4%;
    left: 82%;
}