/* ======================= -------- Blog Block - Text -------- ========================== */
/* Table */
.table-cookie {
	margin: 5rem 0;
	display: table;
	width: 100%;
	font-size: clamp(1.4rem, 0.75vw, 1.8rem);
}

.table-cookie p {
	display: none;
}

.table-row {
	display: table-row;
}

.table-cell {
	display: table-cell;
	padding: 1rem;
	border-right: 1px solid var(--white);
	line-height: 1.8rem;
}

.sub-text.table-cell:last-of-type {
	border-right: 0;
}

.table-title .table-cell {
	background-color: #eee;
}

@media (max-width: 850px) {
	/* Table */
	.sub-text.table-cookie {
		margin: 3rem 0;
	}

	.table-cookie, .table-row {
		display: block;
	}

	.table-row {
		padding: 20px 0;
	}

	.table-row:last-child {
		border-bottom: 0;
	}

	.table-title {
		display: none;
	}

	.table-cell {
		padding: 0;
		display: flex;
		width: 100%;
		margin-bottom: 10px;
	}

	.table-cell:last-of-type {
		margin-bottom: 0;
	}

	.table-cell:before {
		display: block;
		font-weight: 700;
		min-width: 90px;
		width: 90px;
		margin-right: 10px;
	}

	.cell-cookie:before {
		content: 'Cookie:';
	}

	.cell-domain:before {
		content: 'Domain:';
	}

	.cell-type:before {
		content: 'Type:';
	}

	.cell-description:before {
		content: 'Description:';
	}

	.cell-duration:before {
		content: 'Duration:';
	}
}