.info-content {
	background-color: var(--white);

	th,td {
		border-bottom: 1px solid var(--white);
		font-size: clamp(1rem, 0.7778rem + 0.463vw, 1.125rem);	padding: 20px;

		@media(width < 768px) {
			padding: 15px 10px;
		}
	}

	tr:last-child {
		th,td {
			border-bottom: none;
		}
	}

	th {
		background-color: #DFEAF7;
		border-right: 1px solid var(--white);
		text-align: left;

		@media(width < 768px) {
			width: 140px;
		}
	}

	td {
		background-color: #E6EEF9;

		a {
			color: var(--color--primary);
			text-decoration: underline;
		}
	}
}