/* Technology Modal Content Styling */
.technology-modal-body {
	padding: 0;
}

.technology-section {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	padding: 25px;
	border-bottom: 1px solid #e6e6e6;
}

.technology-section:last-child {
	border-bottom: none;
}

.technology-images {
	flex-shrink: 0;
	width: 200px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.technology-image {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	border-radius: 8px;
	background: #f8f9fa;
}

.technology-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.technology-content {
	flex: 1;
	min-width: 0;
}

.technology-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	margin-bottom: 10px;
}

.technology-content h3 {
	margin: 0;
	font-size: 1.3rem;
	color: #0b6efd;
	font-weight: 600;
}

.technology-content p {
	margin: 0 0 10px 0;
	line-height: 1.6;
	color: #555;
	font-size: 0.95rem;
}

.technology-content p:last-child {
	margin-bottom: 0;
}

.technology-document-link {
	display: inline-block;
	padding: 6px 10px;
	background-color: transparent;
	color: #0b6efd;
	text-decoration: none;
	border: 1px solid #0b6efd;
	border-radius: 4px;
	font-size: 0.85rem;
	transition: all 0.2s;
	white-space: nowrap;
}

.technology-document-link:hover {
	background-color: #f0f7ff;
	color: #0a58ca;
	border-color: #0a58ca;
	text-decoration: none;
}

.technology-specs {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #e9ecef;
}

.technology-specs-title {
	font-weight: 600;
	color: #222;
	font-size: 0.9rem;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.technology-specs.collapsible .technology-specs-title {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	font-family: inherit;
	text-align: left;
	width: 100%;
	transition: color 0.2s;
}

.technology-specs.collapsible .technology-specs-title:hover {
	color: #0b6efd;
}

.technology-specs-toggle {
	display: inline-block;
	transition: transform 0.3s ease;
	font-size: 1rem;
}

.technology-specs-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px 20px;
	row-gap: 8px;
	font-size: 0.85rem;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	max-height: 1000px;
	opacity: 1;
}

.technology-specs-list.collapsed {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
}

.technology-specs-list li {
	color: #666;
	padding: 0px 0;
}

.technology-specs-list strong {
	color: #222;
	display: block;
	font-weight: 600;
}

@media (max-width: 768px) {
	.technology-section {
		flex-direction: column;
	}

	.technology-image {
		width: 100%;
		height: 250px;
	}

	.technology-specs-list {
		grid-template-columns: 1fr;
	}
}
