
.bloom-vo-inner {
    max-width: 1280px;
    margin: auto;
    text-align: center;
    padding: 40px 20px;
}

.bloom-video-overview h2 {
    font-family: ProximaNova-Bold;
    margin-bottom: 10px;
}

.vo-sub {
    max-width: 720px;
    margin: 0 auto 40px;
    color: #000;
}

.vo-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 51px;
	align-items: center;
}

.vo-video iframe {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    border: none;
}

.vo-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vo-point {
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 500;
    text-align: left;
}


.vo-point {
	position: relative;
	padding: 26px 26px 26px 55px;
	border-radius: 8px;
	color: #000000;
	font-weight: 600;
	font-size: 24px;
	line-height: 128%;
	letter-spacing: 0%;
	font-family: ProximaNova-semibold;
}
/* 🔹 diamond shape */
.vo-point::before {
	content: '';
	position: absolute;
	left: -12px;
	top: 50%;
	width: 25px;
	height: 25px;
	transform: translateY(-50%) rotate(45deg);
	border-radius: 2px;
}
/* colors */
.vo-0 {
    background: #F0FDF4;
}
.vo-0::before {
    background: #91CEA4;
}

.vo-1 {
    background: #EFF6FF;
}
.vo-1::before {
    background: #86AAD8;
}

.vo-2 {
    background: #FEFCE8;
}
.vo-2::before {
    background: #EBE28D;
}

.vo-3 {
    background: #FEF2F2;
}
.vo-3::before {
    background: #E06464;
}


/* mobile */
@media (max-width: 768px) {
    .vo-grid {
        grid-template-columns: 1fr;
    }

    .vo-video iframe {
        height: 240px;
    }
}

@media (max-width: 500px) {
.vo-point {
	font-size: 18px;
	
}
}