.chr-c386b2fb-container {
    display: flex;
    width: 100%;
    position: relative;
    gap: 20px;
}

.chr-c386b2fb-col {
    flex: 1;
    position: relative;
    aspect-ratio: auto;
    height: 700px; /* Updated height to 700px */
    overflow: hidden;
    cursor: pointer;
}

.chr-c386b2fb-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.chr-c386b2fb-desc {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.chr-c386b2fb-desc-inner {
	transform: translateY(20px);
	transition: transform 0.4s ease;
}

.chr-c386b2fb-col:hover .chr-c386b2fb-desc {
    opacity: 1;
}

.chr-c386b2fb-col:hover .chr-c386b2fb-desc-inner {
	transform: translateY(0);
}

.chr-c386b2fb-desc p {
    margin: 0 0 15px 0;
    color: inherit;
    line-height: 1.6;
}

.chr-c386b2fb-desc p:last-child {
	margin-bottom: 0;
}

.chr-c386b2fb-name-box {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 20px 40px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	transition: all 0.3s ease;
	z-index: 20;
}

@media (max-width: 1024px) {
    .chr-c386b2fb-col {
        height: auto;
        aspect-ratio: 4/5;
    }
}

@media (max-width: 767px) {
	.chr-c386b2fb-container {
		flex-direction: column;
	}
	.chr-c386b2fb-col {
		aspect-ratio: 1/1;
        height: auto;
	}
}