/* ===============================
   HIGH PERFORMANCE DEVOPS
   =============================== */

   /* 🔹 GUTENBERG EDITOR FIX */

.wp-block-bloom-high-performance-devops {
	margin: 0 auto !important;
	width: 100%;
	/* max-width: 100%; */
}
.bloom-high-devops {
	padding: 60px 20px;
	background-color: #FAF7F7C4;
}
.hp-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 175px;
}

.hp-left h2 {
    margin-bottom: 12px;
    font-family: ProximaNova-Bold;
}

.hp-left p {
    color: #000;
    max-width: 520px;
}

.hp-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hp-right li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 14px;
	font-size: 0.95rem;
	font-size: 16px;
}

.hp-right li::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 5px;
	color: #2b7cff;
	font-weight: bold;
	background-image: url("https://devimages.bloomcs.com/devimagesassets/2026/01/Blue-Tick-Icon.png");
	z-index: 1;
	height: 15px;
	width: 15px;
	background-repeat: no-repeat;
}

.hp-left {
	max-width: 455px;
}
/* Responsive */
@media (max-width: 768px) {
    .hp-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
