.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 600px;
}

.about-us-grid__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.about-us-grid__item {
    position: relative;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    flex: 1 1 50%;
    min-height: 0;
    transition: flex 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-us-grid__column:hover .about-us-grid__item {
    flex: 0.6 1 0%;
}

.about-us-grid__column .about-us-grid__item:hover {
    flex: 1.4 1 0%;
}

.about-us-grid__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
}

.about-us-grid__image-cutout {
    position: absolute;
    bottom: 0;
    right: 60px;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 0% 0%, transparent 16px, #fff 16px);
    z-index: 3;
    transition: opacity 0.3s ease;
}

.about-us-grid__image-cutout-top {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 0% 0%, transparent 16px, #fff 16px);
    z-index: 3;
    transition: opacity 0.3s ease;
}

.about-us-grid__item:hover .about-us-grid__image-cutout,
.about-us-grid__item:hover .about-us-grid__image-cutout-top {
    opacity: 0;
}

.about-us-grid__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: inherit;
    background-position: inherit;
    background-image: inherit;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-us-grid__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 70%);
}

.about-us-grid__item:hover .about-us-grid__image::before {
    transform: scale(1.05);
}

.about-us-grid__content {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.about-us-grid__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.about-us-grid__arrow-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    overflow: visible;
}

.about-us-grid__arrow-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #fff;
    border-top-left-radius: 16px;
    transition: opacity 0.3s ease;
}

.about-us-grid__item:hover .about-us-grid__arrow-wrapper::before {
    opacity: 0;
}

.about-us-grid__arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #e63946;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.about-us-grid__item:hover .about-us-grid__arrow {
    width: 60px;
    height: 60px;
    border-radius: 0;
    border-bottom-right-radius: 4px;
    background: #e63946;
    transform: none;
}

.about-us-grid__arrow svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .about-us-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .about-us-grid__column {
        height: 400px;
    }

    .about-us-grid__title {
        font-size: 16px;
    }
}
