﻿@charset "utf-8";
/* IVF auxiliary styles */
.ivf-keyword-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	margin: 8px 0 22px;
}
.ivf-keyword-grid a {
	display: block;
	min-height: 58px;
	padding: 17px 10px;
	border: 1px solid #d7ece7;
	border-radius: 8px;
	background: #fff;
	color: #247f73;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	box-sizing: border-box;
	transition: all .2s ease;
}
.ivf-keyword-grid a:hover {
	border-color: #e88490;
	color: #d95c70;
	box-shadow: 0 6px 18px rgba(35, 150, 125, .12);
}
.ivf-keyword-summary {
	padding: 18px 22px;
	border-left: 4px solid #e88490;
	background: #f8fcfb;
	color: #666;
	line-height: 1.9;
}
@media only screen and (max-width: 768px) {
	.ivf-keyword-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 420px) {
	.ivf-keyword-grid {
		grid-template-columns: 1fr;
	}
}


