.development-3fr {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 24px;
    align-items: stretch
}

@media screen and (max-width: 1024px) {
    .development-3fr {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width: 768px) {
    .development-3fr {
        margin-top: 40px;
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.development-3fr__item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%
}

@media screen and (max-width: 768px) {
    .development-3fr__item {
        gap: 16px
    }
}

.development-3fr__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.development-3fr__title {
    font-weight: 700
}

@media screen and (max-width: 768px) {
    .development-3fr__title {
    font-weight: 700;
    }
}

.development-3fr__text {
    min-height: 72px;
    align-items: start;
    margin-top: 12px;
    margin-bottom: 24px
}

@media screen and (max-width: 768px) {
    .development-3fr__text {
        min-height: auto;
        font-size: 0.875rem;
        margin-top: 8px;
        margin-bottom: 16px
    }
}

.development-3fr__img {
    width: 100%;
    aspect-ratio: 384/280
}

.development-3fr__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.development-3fr .button {
    margin-top: auto
}

.development-3fr .button__link {
    min-width: 100%
}