.mm-acc-service {
	width: 100%;
}

.mm-acc-item {
	border: 1px solid #e6e6e6;
	background: #fff;
	transition: background 0.5s ease;
	overflow: hidden;
	margin-bottom: 28px;
}

.mm-acc-item:last-child {
	margin-bottom: 0;
}

.mm-acc-item.mm-acc-open {
	background: linear-gradient(to right, #200001 0%, #490B00 100%);
}

.mm-acc-header {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 50px 48px;
	cursor: pointer;
	user-select: none;
	justify-content: space-between;
}

.mm-acc-num {
	font-size: 20px;
	font-weight: 600;
	color: #9a9a9a;
	flex-shrink: 0;
	transition: color 0.4s ease;
}

.mm-acc-item.mm-acc-open span.mm-acc-num {
	color: #FFFFFFC2 !important;
}

.mm-acc-item.mm-acc-open .mm-acc-num {
	color: rgba(255, 255, 255, 0.76);
}

.mm-acc-title {
	font-size: clamp(20px, 2.4vw, 34px) !important;
	font-weight: 600 !important;
	color: #242424;
	flex-shrink: 0;
	width: 430px;
	line-height: 1.25 !important;
	margin: 0;
	transition: color 0.4s ease;
	letter-spacing: -3px !important;
}

.mm-acc-item.mm-acc-open .mm-acc-title {
	color: #fff !important;
}

.mm-acc-desc {
	font-size: 20px;
	line-height: 26px;
	color: #56565f;
	flex: 1;
	transition: color 0.4s ease;
}

.mm-acc-desc p {
	margin: 0;
}

.mm-acc-item.mm-acc-open .mm-acc-desc {
	color: rgba(255, 255, 255, 0.75) !important;
}

.mm-acc-toggle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1.5px solid #B11F24;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.mm-acc-toggle::before,
.mm-acc-toggle::after {
	content: '';
	position: absolute;
	background: #B11F24;
	border-radius: 2px;
}

.mm-acc-toggle::before {
	width: 14px;
	height: 2px;
}

.mm-acc-toggle::after {
	width: 2px;
	height: 14px;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.mm-acc-item.mm-acc-open .mm-acc-toggle::after {
	transform: rotate(90deg);
	opacity: 0;
}

.mm-acc-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.55s cubic-bezier(.4, 0, .2, 1);
}

.mm-acc-item.mm-acc-open .mm-acc-panel {
	grid-template-rows: 1fr;
}

.mm-acc-panel-inner {
	overflow: hidden;
}

.mm-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding: 36px;
}

.mm-card {
	background: #fff;
	padding: 20px;
	padding-bottom: 30px;
}

.mm-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.mm-card-body {
	padding: 12px 0 0;
}

.mm-card-title {
	font-size: 20px;
	font-weight: 600;
	color: #242424;
	line-height: 26px;
	margin: 0 0 12px;
	/* min-height: 52px; */
	min-height: 80px;
}

.mm-card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.4px;
	color: #B11F24;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 18px;
}

.mm-card-link svg {
	width: 12px;
	height: 12px;
}

@media (max-width: 1024px) {
	.mm-acc-title {
		letter-spacing: -1px !important;
	}

	.mm-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	p.mm-card-title {
		min-height: 70px;
	}
}

@media (max-width: 900px) {

	.mm-acc-header {
		flex-wrap: wrap;
		gap: 10px 22px;
		padding: 34px 32px;
	}

	.mm-acc-title {
		width: auto;
	}

	.mm-acc-desc {
		flex-basis: 100%;
		order: 3;
	}

	.mm-acc-num {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.mm-acc-desc {
		font-size: 18px;
		line-height: 24px;
	}

	.mm-acc-title {
		width: 80%;
	}
	p.mm-card-title {
   min-height: 80px;
}

}

@media (max-width: 520px) {
	.mm-acc-header {
		padding: 26px 22px;
	}

	.mm-cards {
		grid-template-columns: 1fr;
		padding: 6px 22px 30px;
	}

	.mm-acc-toggle {
		width: 32px;
		height: 32px;
	}
	p.mm-card-title {
    min-height: 100%;
}
}

@media only screen and (min-width: 768px) and (max-width: 1740px) {
	.mm-acc-title {
		max-width: 31%;
	}
}

@media only screen and (min-width: 1741px) {
	.mm-acc-title {
		max-width: 21%;
	}
}

@media only screen and (min-width: 1366px) and (max-width: 1440px){
	.mm-card-title {
		min-height: 104px;
	}
}

@media only screen and (min-width: 1122px) and (max-width: 1261px){
	.mm-card-title {
		min-height: 104px;
	}
}

@media only screen and (min-width: 1025px) and (max-width: 1121px){
	.mm-card-title {
		min-height: 130px;
	}
}


@media only screen and (min-width: 901px) {
	.mm-acc-desc {
		margin-left: 70px;
	}
}