/* Technology Section Styles */

.tech-section {
	padding: clamp(88px, 8vw, 132px) 0 14px;
}

.tech-layout {
	display: block;
}

/* Tech Cards Grid */
.tech-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.tech-card {
	border: 1px solid var(--line);
	background: #fff;
	overflow: hidden;
	border-radius: 16px;
}

.tech-card img {
	width: 100%;
	aspect-ratio: 1.38 / 1;
	object-fit: cover;
	object-position: center 31%;
}

/* Tech Copy */
.tech-copy {
	padding: 19px 20px 22px;
	background: linear-gradient(180deg, #fff, var(--paper));
}

.tech-heading {
	display: flex;
	align-items: center;
	margin-bottom: 14px;
}

/* Tech Icon */
.tech-icon {
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	border: 1px solid var(--line);
	border-radius: 50%;
	display: grid;
	place-items: center;
}

.tech-icon i {
	font-size: 20px;
	line-height: 1;
	color: var(--ink);
}

/* Tech Title */
.tech-copy h3 {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	margin: 0;
}

.tech-heading h3 {
	min-width: 0;
	margin: 0 0 0 13px;
	padding-left: 13px;
	border-left: 1px solid #D6A39B;
	line-height: 1.45;
}

/* Tech Description */
.tech-copy p {
	font-size: 11.5px;
	line-height: 1.55;
	color: var(--body);
	margin: 0;
}

/* Tablet — max-width 940px */
@media (max-width: 940px) {
	.tech-cards {
		grid-template-columns: 1fr;
	}

	.tech-copy h3 {
		font-size: 10.5px;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.tech-card {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
