/*============================================*/
/*       DAYTHREE MORE THAN WORK              */
/*       Created: 2026/02/01                  */
/*       Version: 1.0.0                       */
/*============================================*/

.more-than-work-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 140px 0;
	gap: 60px;
}

/* Header Container */
.more-than-work-title-container {
	max-width: 750px;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}

.more-than-work-title-container p {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #4d4d4d;
	line-height: 1.6;
}

.more-than-work-title-container h2 {
	font-family: "Rubik", sans-serif;
	font-weight: 700;
	font-size: 48px;
	color: #4d4d4d;
	line-height: 1.25;
}

/* Heading 
.more-than-work-heading {
	font-family: "Rubik", sans-serif;
	font-weight: 700;
	font-size: 48px;
	color: #4d4d4d;
	line-height: 1.25;
}
*/

/* Gradient text */
.more-than-work-heading-gradient-text {
	background: linear-gradient(90deg, #c8102e, #5d3fd3);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

/* Subheading 
.more-than-work-subheading {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #4d4d4d;
	line-height: 1.6;
}
*/

/* Grid Container */
.work-grid-container {
	display: grid;
	grid-template-columns: 3fr repeat(10, 1fr) 3fr;
	gap: 20px;
	background-color: #ffffff;
}

/* Card Base */
.work-card {
	overflow: hidden;
}

.work-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Card Layouts */
.work-card-tall {
	grid-row: span 2;
}

.work-card-top-small {
	grid-column: span 3;
}

.work-card-top-wide {
	grid-column: span 7;
}

.work-card-bottom-equal {
	grid-column: span 5;
}

/* Card Border Radius - Individual */
.work-card-leftmost {
	border-radius: 156px;
}

.work-card-middle-top-left {
	border-radius: 50%;
}

.work-card-middle-top-right {
	border-radius: 50px;
}

.work-card-rightmost {
	border-radius: 20px;
}

.work-card-middle-bottom-left {
	border-radius: 20px;
}

.work-card-middle-bottom-right {
	border-radius: 200px;
}

/* --- Laptop Breakpoint (≤ 1200px) --- */
@media (max-width: 1200px) {
	.work-grid-container {
		grid-template-columns: 4fr repeat(10, 1fr) 4fr;
		gap: 12px;
	}
}

/* --- Tablet Breakpoint (≤ 1024px) --- */
@media (max-width: 1024px) {
	.more-than-work-title-container h2 {
		font-size: 36px;
		line-height: 1.3;
	}
}

/* --- Mobile Breakpoint (≤ 768px) --- */
@media (max-width: 768px) {
	.work-grid-container {
		grid-template-columns: 6fr repeat(10, 1fr) 6fr;
		gap: 5px;
	}

	.work-card {
		border-radius: 12px;
	}

	/* Override all specific border radius on mobile */
	.work-card-leftmost,
	.work-card-middle-top-left,
	.work-card-middle-top-right,
	.work-card-rightmost,
	.work-card-middle-bottom-left,
	.work-card-middle-bottom-right {
		border-radius: 12px;
	}
}
