/* Большие изображения с классом img-large */
.img-large,
img[alt*="banner"] {
	width: 100% !important;
	max-width: 800px !important;
	height: auto !important;
	display: block !important;
	margin: 2rem auto !important;
}

/* Маленькие изображения с классом img-small */
.img-small,
img[src*="fogsis-lmc-bracket"] {
	width: 250px !important;
	max-width: 250px !important;
	height: auto !important;
	display: inline-block !important;
	margin: 1rem !important;
}

/* ============================================
   ТАБЛИЦЫ
   ============================================ */

table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
	background: white;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

thead {
	background: #8ea7ad;
	color: rgb(0, 0, 0);
}

th {
	padding: 0.63rem;
	text-align: left;
	font-weight: 600;
	font-size: 0.675rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

td {
	padding: 0.63rem;
	border-bottom: 1px solid #e5e7eb;
}

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

tbody tr:hover {
	background: #f9fafb;
}

td:first-child {
	/*font-family: 'Courier New', monospace;*/
	font-weight: 500;
	color: #000000;
}

h1{
	font-weight: 100;
	color: #083c48;
	font-size: 2.93rem;
	margin-top: 0;
	margin-bottom: 0,63rem;
}

h3{
	font-weight: 700;
	color: #083c48;
	font-size: 1.33rem;
}


/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs-section {
	margin-top: 70px; /* Высота твоего header */
	background: #f9fafb;
	border-bottom: 1px solid #e5e7eb;
	padding: 0.5rem 0;
}


.breadcrumbs {
	font-size: 0.875rem;
}

.breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumb-item {
	display: flex;
	align-items: center;
}

.breadcrumb-item a {
	color: #6b7280;
	text-decoration: none;
	transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
	color: #0066cc;
}

.breadcrumb-item span {
	color: #1a1a1a;
	font-weight: 500;
}

.breadcrumb-item:not(:last-child)::after {
	content: '›';
	margin: 0 0.5rem;
	color: #9ca3af;
	font-size: 1.25em;
}

@media (max-width: 768px) {
	.breadcrumbs-section {
		padding: 0.5rem 0;
	}
	
	.breadcrumbs {
		font-size: 0.8rem;
	}
	
	.breadcrumb-item:not(:last-child)::after {
		margin: 0 0.35rem;
	}
}

.header-fixed #body-wrapper {
	padding-top: 0rem;
}




@media (max-width: 768px) {
	table {
		font-size: 0.675rem;
		display: block;
		overflow-x: auto;
	}
	
	th, td {
		padding: 0.63rem;
	}
}



