/**
 * Content tables (.cover-table) — card layout + site palette.
 */
.site-theme .cover-table,
.site-theme .text_container .cover-table {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 32px 0;
	overflow-anchor: none;
	overflow-x: clip !important;
	width: 100%;
}

.site-theme .cover-table__shell {
	max-width: 900px;
	overflow: hidden;
	overflow-anchor: none;
	transition: max-height 0.32s ease;
	width: 100%;
}

.site-theme .cover-table table,
.site-theme .text_container .cover-table table {
	background: var(--container-table-odd-row-background-color);
	border: 1px solid var(--container-table-border-color);
	border-collapse: separate !important;
	border-spacing: 0;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(8, 6, 28, 0.45);
	display: table;
	margin: 0 auto !important;
	overflow: hidden;
	table-layout: fixed;
	text-align: left;
	width: 100%;
}

.site-theme .cover-table thead th,
.site-theme .cover-table table tr.cover-table__header th,
.site-theme .text_container .cover-table thead th,
.site-theme .text_container .cover-table table tr.cover-table__header th {
	background: var(--container-table-header-background-color) !important;
	border: none !important;
	color: var(--container-table-header-text-color) !important;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.3;
	padding: 14px 16px;
	text-transform: uppercase;
	vertical-align: middle;
}

.site-theme .cover-table tbody td,
.site-theme .text_container .cover-table tbody td {
	background: var(--container-table-odd-row-background-color) !important;
	border: none !important;
	border-bottom: 1px solid var(--container-table-border-color) !important;
	color: var(--container-table-text-color);
	font-size: var(--container-font-size, 16px);
	line-height: 1.5;
	padding: 14px 16px;
	vertical-align: middle;
	word-break: break-word;
}

.site-theme .cover-table tbody tr:hover td,
.site-theme .text_container .cover-table tbody tr:hover td {
	background: #1d1a47 !important;
}

.site-theme .cover-table tbody tr:nth-child(even) td,
.site-theme .text_container .cover-table tbody tr:nth-child(even) td {
	background: var(--container-table-even-row-background-color) !important;
}

.site-theme .cover-table tbody.cover-table__more tr:last-child td,
.site-theme .text_container .cover-table tbody.cover-table__more tr:last-child td,
.site-theme .cover-table:not(.cover-table--collapsible) tbody tr:last-child td,
.site-theme .text_container .cover-table:not(.cover-table--collapsible) tbody tr:last-child td {
	border-bottom: none !important;
}

.site-theme .cover-table th,
.site-theme .cover-table td,
.site-theme .text_container .cover-table th,
.site-theme .text_container .cover-table td {
	border-left: none !important;
	border-right: none !important;
}

.site-theme .cover-table__toggle {
	display: none;
	margin-top: 16px;
	max-width: 900px;
	text-align: center;
	width: 100%;
}

.site-theme .cover-table__toggle-btn {
	background: var(--container-button-background-color);
	border: none;
	border-radius: 6px;
	color: var(--container-button-text-color);
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	padding: 10px 28px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.site-theme .cover-table__toggle-btn:hover,
.site-theme .cover-table__toggle-btn:focus-visible {
	background: var(--container-button-hover-background-color);
	color: var(--container-button-hover-text-color);
	outline: none;
}

@media only screen and (max-width: 767px) {
	.site-theme .cover-table,
	.site-theme .text_container .cover-table {
		align-items: stretch;
		overflow-x: clip !important;
		width: 100%;
	}

	.site-theme .cover-table:not(.cover-table--collapsible),
	.site-theme .text_container .cover-table:not(.cover-table--collapsible) {
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch;
	}

	.site-theme .cover-table--collapsible .cover-table__shell {
		overflow-x: hidden;
	}

	.site-theme .cover-table--collapsible.is-expanded .cover-table__shell {
		-webkit-overflow-scrolling: touch;
		overflow-x: auto;
	}

	.site-theme .cover-table--collapsible.is-expanded .cover-table__shell table {
		min-width: min(100%, 520px);
		width: max(100%, 520px);
	}

	.site-theme .cover-table table,
	.site-theme .text_container .cover-table table {
		max-width: 100% !important;
		width: 100% !important;
	}

	.site-theme .cover-table thead th,
	.site-theme .cover-table tbody td,
	.site-theme .text_container .cover-table thead th,
	.site-theme .text_container .cover-table tbody td {
		font-size: 14px;
		line-height: 1.4;
		padding: 12px 14px;
	}

	.site-theme .cover-table--collapsible .cover-table__toggle {
		display: block;
	}
}

@media only screen and (min-width: 768px) {
	.site-theme .cover-table__shell {
		max-height: none !important;
		transition: none;
	}
}
