/* ============================================================================
   About-page specific styles
   - Tools & Software grid
   - Selected Clients tags
   - Work Examples uniform cards
   - Section divider between Skills and Tools
   ============================================================================ */

/* --- Section Divider --- */
.section-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 2rem 0;
	background-color: #f3f6f7;
}
.section-divider-line {
	flex: 1 1 auto;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.12);
	max-width: none;
}
.section-divider-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.3);
	flex-shrink: 0;
}

/* --- Tools & Software Grid --- */
.tools-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem 2rem;
}
.tool-group {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 0.4rem;
}
.tool-group-title {
	flex: 0 0 100%;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #000;
	margin: 0 0 0.4rem 0;
}
.tool-pill {
	display: inline-block;
	padding: 0.35rem 0.85rem;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 999px;
	font-size: 1.1rem;
	color: #222;
	white-space: nowrap;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}
.tool-pill:hover {
	background-color: #f5f5f5;
	border-color: #999;
}

/* --- Selected Clients (as tags, not links) --- */
.clients-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}
.client-tag {
	display: inline-block;
	padding: 0.55rem 1.1rem;
	background-color: #000;
	color: #fff;
	border-radius: 4px;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

/* --- Work Examples: uniform cards --- */
.work-examples-row {
	display: flex;
	flex-wrap: wrap;
}
.work-examples-row > [class*="col-"] {
	display: flex;
}
.work-example-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: transparent;
	border: none;
	border-radius: 0;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.3s ease;
}
.work-example-card:hover,
.work-example-card:focus {
	text-decoration: none;
	color: inherit;
}
.work-example-card:hover .work-example-image img {
	opacity: 0.7;
	transform: scale(1.03);
}
.work-example-image {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background-color: #0a0a0a;
	border-radius: 6px;
}
.work-example-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: opacity 0.4s ease, transform 0.6s ease;
}
.work-example-card h5 {
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 14px 0 2px 0;
	color: #fff;
}
.work-example-card p {
	font-size: 0.8rem;
	color: rgba(255,255,255,.5);
	margin: 0;
	font-style: italic;
}

/* --- Responsive tweaks --- */
@media (max-width: 768px) {
	.tools-grid {
		grid-template-columns: 1fr;
	}
	.work-examples-row > [class*="col-"] {
		margin-bottom: 1.5rem;
	}
}
