.tf-grid-container {
    display: grid;
    grid-template-columns: 35% 30% 35%;
    width: 100%;
    margin: 0 auto;
    background-color: #000;
    line-height: 0;
}

.tf-item {
    position: relative;
	width: 100%;
    height: 23.802vw !important;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    box-sizing: border-box;
}

.tf-image-item {
    background-color: #f5f5f5;
}

.tf-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.tf-image-item:hover img {
    transform: scale(1.05);
}

.tf-text-item {
    background-color: #000;
    color: #fff;
    padding: 20% !important;
    align-items: center;
    justify-content: flex-start;
    line-height: normal;
}

.tf-text-inner {
    width: 100%;
}

.tf-title {
    margin-bottom: 1.2vw;
    color: #ffffff;
    text-transform: none;
}

.tf-desc {
    color: #d1d1d1;
    margin: 0;
}

@media (max-width: 767px) {
    .tf-grid-container {
        grid-template-columns: 50% 50%;
    }
	.tf-item::nth-child(3) {
		order: 1;
	}
	.tf-item::nth-child(6) {
		order: 2;
	}
	.tf-image-item {
	 height: 100% !important;
	}
	
	.tf-text-item {
     padding: 8% !important;
     height: 100% !important;
	 max-height: max-content !important;
	 align-items: center !important;
    }
	
	.tf-text-inner {
     height: auto !important;
    }

    .tf-title {
        margin-bottom: 10px;
		font-size: 4vw;
    }
}