/**
 * Zoobiznes — стили стандартных таблиц Gutenberg (.wp-block-table).
 * Не затрагивает таблицы внутри .zb-block (плашки «Как это посчитано» и т.п.).
 */

/* Карточка-обёртка + горизонтальный скролл на мобильных */
.wp-block-table {
	background-color: #FFFDF6;
	border: 1px solid #DEDEDE;
	border-radius: 8px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-top: 0;
	margin-bottom: 60px;
	width: 100%;
}

.wp-block-table .table-responsive {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* Ширина колонок по содержимому (не равные доли Gutenberg) */
.wp-block-table table,
.wp-block-table table.has-fixed-layout {
	width: max-content;
	min-width: 100%;
	table-layout: auto;
	border-collapse: collapse;
	text-align: left;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 1.45;
	color: #041A19;
	margin: 0;
	border: 0;
}

.wp-block-table table col {
	width: auto !important;
}

.wp-block-table table th,
.wp-block-table table td {
	width: auto !important;
}

/* Шапка — перебиваем .entry-content table th { background:#e9ecef } темы */
.entry-content .wp-block-table table th,
.wp-block-table table thead th,
.wp-block-table table th {
	background: #FAF4E3 !important;
	background-color: #FAF4E3 !important;
	font-family: 'JetBrains Mono', monospace;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #041A19;
	padding: 12px 16px;
	border: 0;
	border-bottom: 1px solid #DEDEDE;
	border-right: 1px solid #E0DACC;
	white-space: nowrap;
	vertical-align: top;
}

/* Ячейки данных */
.entry-content .wp-block-table table td,
.wp-block-table table td {
	padding: 13px 16px;
	border: 0;
	border-bottom: 1px solid #EAE5D8;
	border-right: 1px solid #EAE5D8;
	vertical-align: top;
	color: #072322;
	background: transparent !important;
}

/* Крайние ячейки — без правой/нижней рамки */
.wp-block-table table th:last-child,
.wp-block-table table td:last-child {
	border-right: none;
}

.wp-block-table table tr:last-child td {
	border-bottom: none;
}

/* Цифры / оценки — ставит JS (.col-data) */
.wp-block-table table .col-data {
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px;
	font-weight: 500;
	color: #041A19;
	white-space: nowrap;
}

/* Годы / даты — ставит JS (.col-year) */
.wp-block-table table .col-year {
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px;
	color: #656565;
	white-space: nowrap;
}

/* Ссылки */
.wp-block-table table a {
	color: #00A152;
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 500;
	transition: color 0.15s ease;
}

.wp-block-table table a:hover {
	color: #01503D;
}

/* Подпись таблицы Gutenberg */
.wp-block-table figcaption {
	padding: 10px 16px 12px;
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	line-height: 1.4;
	color: #656565;
	border-top: 1px solid #EAE5D8;
	text-align: left;
}
