/**
 * Home Features
 *
 * Generated by Dreamz Page Builder on 2026-07-24.
 */

.home-features {
	background: var(--mist);
    border-bottom: 1px solid var(--mist-deep);
}
.feature_flex {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 0;
}
.feature-block{
	display: flex;
    align-items: center;
    gap: .7rem;
}
.feature-block .image_block{
	width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--white);
    display: grid;
    place-items: center;
    flex: none;
    box-shadow: var(--shadow-sm);
}
.feature-block .image_block img {
	width: 19px;
    height: 19px;
}
.feature_content {
	font-family: var(--font-inter);
}
.feature_content h3 {
	font-size: .86rem;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.3;
}
.feature_content p {
	display: block;
    font-weight: 400;
    color: var(--content);
    font-size: .78rem;
	margin-bottom: 0;
}
.image_block img {
    filter: brightness(0) saturate(100%) invert(31%) sepia(95%) saturate(1245%) hue-rotate(160deg) brightness(92%) contrast(101%);

}


@media (max-width: 880px) {
.feature_flex {

    grid-template-columns: repeat(2, 1fr);
  
}

}

