/* ==========================================================================
   Section: About / How We Operate. Ported from about-styles.css.
   ========================================================================== */

.ops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.ops-cell {
	position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
	padding: 34px 30px; transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease;
	overflow: hidden; z-index: 0;
}
.ops-cell::after { content:''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad); transform: scaleY(0); transform-origin: top; transition: transform .4s ease; }
.ops-cell:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.ops-cell:hover::after { transform: scaleY(1); }
.ops-cell .num { font-family: var(--sans); font-weight: 700; font-size: 15px; color: #fff; background: var(--grad); width: fit-content; padding: 4px 11px; border-radius: 7px; margin-bottom: 18px; }
.ops-cell h3 { font-size: 21px; margin-bottom: 10px; }
.ops-cell p { font-size: 15.5px; color: var(--body); line-height: 1.6; }

@media (max-width: 1080px) {
	.ops-grid { grid-template-columns: 1fr; }
}
