.mcw-tools-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	gap: 30px;
	justify-content: center;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.mcw-tool-item {
	margin: 0;
	background: rgba(17, 26, 53, 1);
	border-radius: 10px;
	padding: 10px 11px;
	display: flex;
	gap: 10px;
    align-items: center;
    box-shadow: 0px 1px 1px 0px rgba(207, 231, 255, 0.2) inset;

}

.mcw-tool-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.mcw-tool-icon {
    width: 42px;
    height: 42px;
}

.mcw-tool-image {
    width: fit-content;
    height: 32px !important;
    object-fit: contain;
    display: block;
}

.mcw-tool-icon-fallback {
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    color: #155DFC;
}

.mcw-tool-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: rgba(144, 161, 185, 1);
}

@media (max-width: 767px) {

    .mcw-tools-list {
        gap: 20px;
    }

    .mcw-tool-link {
        gap: 12px;
    }

    .mcw-tool-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .mcw-tool-title {
        font-size: 16px;
        line-height: 22px;
    }
}
