.about_title {
    margin-inline: auto;
    width: 70%;
    margin-bottom: 3px;
    margin-top: 58px;
}

.about {
    width: 70%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: 75px;
}

br.mobile {
    display: none;
}

.about_item {
    background-color: #090911;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.about_name {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 15px 35px; /* Управляйте высотой здесь */
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    min-height: 80px;
    cursor: pointer;
}

.about_name:hover {
    color: #CCCCCC;
}

.about_text_container {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.about_text_container.is-open {
    grid-template-rows: 1fr;
}

.about_text {
    overflow: hidden;
    min-height: 0;
}

.about_text p {
    margin: 0;
    padding: 0 20px 20px 35px;
    font-size: 25px;
    font-weight: 400;
}

.about_text a {
    color: #001EE0;
}


.about_arrow {
    display: inline-block;
    transition: transform 0.75s ease;
}

.about_arrow.rotate {
    transform: rotate(90deg);
}

.triangle {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 30px solid #FFFFFF;
}

.about_name:hover .triangle{
    border-left-color: #CCCCCC;
}

@media (max-width: 768px) {
    .about {
        width: 90%;
        margin-bottom: 125px;
    }

    .about_title {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 18px;
        width: auto;
    }

    br.mobile {
        display: block;
    }

    .caption {
        font-size: 21px;
        margin-bottom: 15px;
    }

    .about_item {
        margin-bottom: 6px;
        background-color: #1D1D1D;
    }

    .about_empty_item {
        height: 125px;
    }

    .about_name {
        font-size: 18px;
        padding: 15px 10px;
        min-height: 17px;
        gap: 5px;
    }

    .about_text p {
        font-size: 15px;
        padding: 0 20px 20px 10px;
    }

    .about_text a {
        font-size: 15px;
        color: #001EE0;
    }

    .about_arrow svg {
        width: 8px;
        height: 10px;
    }
}
