@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* Modern Minimalistic Design for Bird Ventures */

/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}

	html {
	scroll-behavior: smooth;
	}

	body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #1a1a1a;
	background-color: #ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.is-preload * {
			animation: none !important;
			transition: none !important;
		}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.2;
	color: #1a1a1a;
	margin: 0 0 1em 0;
}

h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
		font-weight: 700;
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	letter-spacing: -0.01em;
}

h3 {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 600;
}

p {
	margin: 0 0 1.5em 0;
	color: #4a4a4a;
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.7;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #2563eb;
}

/* Wrapper */
#wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

#wrapper > * > .inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* Header */
#header {
	padding: 2rem 0;
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header .logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 600;
	font-size: 1.125rem;
	color: #1a1a1a;
	transition: opacity 0.3s ease;
}

#header .logo:hover {
	opacity: 0.7;
}

#header .logo .symbol {
	display: flex;
	align-items: center;
}

#header .logo .symbol img {
	width: 2rem;
	height: 2rem;
			display: block;
}

#header .logo .title {
	letter-spacing: -0.01em;
}

#header nav {
	position: relative;
}

#header nav ul {
	list-style: none;
		display: flex;
			align-items: center;
	gap: 1rem;
}

#header nav ul li a {
	display: block;
	padding: 0.75rem 1.5rem;
	background: #f5f5f5;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #1a1a1a;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

#header nav ul li a:hover {
	background: #1a1a1a;
	color: #ffffff;
}

#header nav ul li a[href="#menu"] {
	width: 3rem;
	height: 3rem;
	padding: 0;
	text-indent: -9999px;
	position: relative;
	background: transparent;
	border: none;
}

#header nav ul li a[href="#menu"]:before,
#header nav ul li a[href="#menu"]:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
	height: 2px;
	background: #1a1a1a;
	transition: all 0.3s ease;
}

#header nav ul li a[href="#menu"]:before {
	box-shadow: 0 -8px 0 #1a1a1a, 0 8px 0 #1a1a1a;
}

#header nav ul li a[href="#menu"]:after {
	display: none;
}

#header nav ul li a[href="#menu"]:hover:before {
	background: #2563eb;
	box-shadow: 0 -8px 0 #2563eb, 0 8px 0 #2563eb;
}

/* Menu */
#menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 320px;
	max-width: 85vw;
	height: 100vh;
	background: #1a1a1a;
	color: #ffffff;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 10001;
	overflow-y: auto;
}

#menu > .inner {
	padding: 3rem 2rem;
}

#menu h2 {
	color: #ffffff;
	margin-bottom: 2rem;
	font-size: 1.5rem;
}

#menu ul {
	list-style: none;
}

#menu ul li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#menu ul li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#menu ul li a {
	display: block;
	padding: 1.25rem 0;
	color: #ffffff;
	font-size: 1.125rem;
	transition: color 0.3s ease;
}

#menu ul li a:hover {
	color: #2563eb;
}

#menu > .close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 2.5rem;
	height: 2.5rem;
	background: transparent;
	border: none;
	cursor: pointer;
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.3s ease;
	text-indent: -9999px;
	overflow: hidden;
	white-space: nowrap;
	font-size: 0;
	line-height: 0;
}

#menu > .close:before,
#menu > .close:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 2px;
	background: #ffffff;
	transform: translate(-50%, -50%) rotate(45deg);
}

#menu > .close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

body.is-menu-visible #wrapper {
	opacity: 0.3;
	pointer-events: none;
}

body.is-menu-visible #menu {
	transform: translateX(0);
}

body.is-menu-visible #menu > .close {
	opacity: 1;
	transform: scale(1);
}

/* Main */
#main {
	flex: 1;
	padding: 4rem 0 6rem;
}

/* Hero Section */
.hero {
	padding: 4rem 0 6rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	margin-bottom: 2rem;
}

.hero-content {
	max-width: 100%;
	margin-bottom: 3rem;
}

.hero-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: #f0f4ff;
	color: #2563eb;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	letter-spacing: 0.02em;
}

.hero h1 {
	margin-bottom: 1.5rem;
	color: #1a1a1a;
	text-align: left;
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.2;
	max-width: 100%;
}

.hero-subtitle {
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	color: #666;
	line-height: 1.8;
	margin-bottom: 0;
	max-width: 100%;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.stat-item {
	padding: 1.5rem;
	background: #f9f9f9;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	text-align: center;
}

.stat-item:hover {
	background: #f5f5f5;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-number {
	font-size: 2.25rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 0.5rem;
	line-height: 1;
}

.stat-label {
	font-size: 0.75rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 500;
	line-height: 1.4;
}

/* Portfolio Section */
.portfolio {
	padding: 4rem 0;
}

.portfolio-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4rem;
	flex-wrap: wrap;
	gap: 2rem;
}

.section-title {
	margin-bottom: 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	color: #1a1a1a;
	letter-spacing: -0.02em;
}

.portfolio-view-toggle {
	display: flex;
	gap: 0.5rem;
	background: #f5f5f5;
	border-radius: 8px;
	padding: 0.25rem;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.view-toggle-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: transparent;
	border: none;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
}

.view-toggle-btn:hover {
	color: #1a1a1a;
	background: rgba(255, 255, 255, 0.5);
}

.view-toggle-btn.active {
	background: #ffffff;
	color: #1a1a1a;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.view-icon {
	font-size: 1rem;
	line-height: 1;
}

.view-label {
	line-height: 1;
}

.portfolio-subsection {
	margin-bottom: 4rem;
}

.portfolio-subsection:last-child {
	margin-bottom: 0;
}

.subsection-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 2rem;
	letter-spacing: -0.01em;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 0;
}

.portfolio-grid.list-view {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.portfolio-grid.list-view .portfolio-card {
	flex-direction: row;
	max-width: 100%;
	border-radius: 12px;
	overflow: visible;
}

.portfolio-grid.list-view .portfolio-card .portfolio-link {
	flex-direction: row;
	width: 100%;
}

.portfolio-grid.list-view .portfolio-logo-area {
	min-width: 180px;
	width: 180px;
	min-height: 140px;
	padding: 1.5rem;
	border-radius: 12px 0 0 12px;
	flex-shrink: 0;
}

.portfolio-grid.list-view .portfolio-content {
	flex: 1;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.portfolio-grid.list-view .portfolio-content p {
	margin-bottom: 0.75rem;
}

.portfolio-grid.list-view .portfolio-logo-text {
	font-size: 1.25rem;
}

.portfolio-grid.list-view .portfolio-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
}

.portfolio-grid.list-view .portfolio-card:hover .portfolio-logo-area {
	transform: none;
}

.portfolio-grid.list-view .portfolio-card:hover .portfolio-logo-text {
	transform: none;
}

.portfolio-grid.list-view .portfolio-grid-single {
	max-width: 100%;
}

/* Constrain single-item grids to match multi-item card widths */
.portfolio-grid-single {
	max-width: calc((100% - 7.5rem) / 4);
	margin-left: 0;
	margin-right: auto;
}

.portfolio-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
	max-width: 100%;
	height: 100%;
}

.portfolio-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.portfolio-link {
				display: flex;
	flex-direction: column;
	color: inherit;
	height: 100%;
}

.portfolio-logo-area {
	position: relative;
	width: 100%;
	padding: 3rem 2rem;
	min-height: 200px;
	display: flex;
	align-items: center;
					justify-content: center;
	transition: all 0.3s ease;
}

.portfolio-card-1 .portfolio-logo-area {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.portfolio-card-2 .portfolio-logo-area {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.portfolio-card-3 .portfolio-logo-area {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.portfolio-card-4 .portfolio-logo-area {
	background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.portfolio-card:hover .portfolio-logo-area {
	transform: scale(1.02);
}

.portfolio-logo {
					width: 100%;
				display: flex;
	align-items: center;
					justify-content: center;
				}

.portfolio-logo img {
	max-width: 180px;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
	transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-logo img {
	transform: scale(1.05);
}

.portfolio-logo-text {
	font-size: 2rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.02em;
	text-align: center;
	transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-logo-text {
	transform: scale(1.05);
}

.portfolio-content {
	padding: 2rem;
	flex: 1;
				display: flex;
	flex-direction: column;
}

.portfolio-content p {
	font-size: 1rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex: 1;
}

.portfolio-link-text {
	display: inline-flex;
					align-items: center;
	font-size: 0.875rem;
	font-weight: 500;
	color: #2563eb;
	transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-link-text {
	transform: translateX(4px);
}

/* Footer */
#footer {
	padding: 4rem 0 3rem;
	background: #f9f9f9;
	margin-top: 4rem;
	min-height: 200px;
	display: block;
	position: relative;
}

#footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1200px;
	height: 1px;
	background: rgba(0, 0, 0, 0.08);
}

#footer > .inner {
	display: block;
	max-width: 800px;
	margin: 0 auto;
}

#footer h2 {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: #1a1a1a;
	font-weight: 600;
}

#footer section {
	margin-bottom: 0;
}

#footer section p {
	font-size: 0.9375rem;
	color: #666;
	line-height: 1.7;
	margin-bottom: 1rem;
}

#footer section p:last-child {
	margin-bottom: 0;
}

#footer section a {
	color: #2563eb;
	text-decoration: none;
	transition: color 0.3s ease;
}

#footer section a:hover {
	color: #1d4ed8;
	text-decoration: underline;
}

#footer form {
	margin-bottom: 0;
}

#footer .fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

#footer .field {
	margin: 0;
}

#footer .field.half {
	grid-column: span 1;
}

#footer .field:last-of-type {
	grid-column: 1 / -1;
}

#footer input[type="text"],
#footer input[type="email"],
#footer textarea {
					width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	background: #ffffff;
	color: #1a1a1a;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#footer input[type="text"]:focus,
#footer input[type="email"]:focus,
#footer textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#footer textarea {
	min-height: 120px;
	resize: vertical;
}

#footer .actions {
	list-style: none;
	margin: 0;
	padding: 0;
}

#footer input[type="submit"] {
	padding: 0.875rem 2rem;
	background: #1a1a1a;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
}

#footer input[type="submit"]:hover {
	background: #2563eb;
	transform: translateY(-2px);
}

#footer input[type="submit"]:active {
	transform: translateY(0);
}

#footer .icons {
	list-style: none;
				display: flex;
	gap: 1rem;
				flex-wrap: wrap;
}

#footer .icons li {
	margin: 0;
}

#footer .copyright {
	list-style: none;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	font-size: 0.875rem;
	color: #666;
	grid-column: 1 / -1;
	justify-content: center;
	text-align: center;
}

#footer .copyright li {
	margin: 0;
}

#footer .copyright li:not(:last-child):after {
	content: '|';
	margin-left: 1.5rem;
	color: #ccc;
}

#footer .copyright a {
	color: #666;
	transition: color 0.3s ease;
	text-decoration: none;
}

#footer .copyright a:hover {
	color: #2563eb;
	text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 980px) {
	.portfolio-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 2rem;
	}

	.hero-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.stat-number {
		font-size: 2rem;
	}

	#footer .copyright {
		margin-top: 2rem;
	}
}

	@media screen and (max-width: 736px) {
	#header {
		padding: 1.5rem 0;
	}

	#header .logo .title {
		font-size: 1rem;
	}

	.hero {
		padding: 2rem 0 4rem;
		margin-bottom: 1rem;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.stat-number {
		font-size: 1.75rem;
	}

	.portfolio {
		padding: 3rem 0;
	}

	.portfolio-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}

	.section-title {
		margin-bottom: 0;
	}

	.portfolio-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.portfolio-grid.list-view .portfolio-card {
		flex-direction: column;
	}

	.portfolio-grid.list-view .portfolio-logo-area {
		width: 100%;
		min-width: 100%;
		border-radius: 12px 12px 0 0;
		min-height: 160px;
	}

	.portfolio-grid.list-view .portfolio-logo-text {
		font-size: 1.5rem;
	}

	.portfolio-logo-area {
		padding: 2rem 1.5rem;
		min-height: 160px;
	}

	.portfolio-logo-text {
		font-size: 1.5rem;
	}

	.portfolio-content {
		padding: 1.5rem;
	}

	#footer {
		padding: 3rem 0 2rem;
	}

	#footer > .inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	#footer .fields {
		grid-template-columns: 1fr;
	}

	#footer .field.half {
		grid-column: span 1;
	}

	#footer .copyright {
		flex-direction: column;
		gap: 0.75rem;
		text-align: center;
	}

	#footer .copyright li:not(:last-child):after {
			display: none;
		}
			}

		@media screen and (max-width: 480px) {
	#wrapper > * > .inner {
		padding: 0 1.25rem;
	}

	.hero {
		padding: 1.5rem 0 3rem;
	}

	.portfolio {
		padding: 2rem 0;
	}

	#footer {
		padding: 2rem 0 1.5rem;
	}
}

/* Form Styles */
	form {
	margin: 0;
}

.fields {
	display: grid;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.field {
	margin: 0;
}

.field.half {
	grid-column: span 1;
	}

	input[type="text"],
	input[type="email"],
	input[type="tel"],
	select,
	textarea {
		width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	background: #ffffff;
	color: #1a1a1a;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
		}

		input[type="text"]:focus,
		input[type="email"]:focus,
		input[type="tel"]:focus,
		select:focus,
		textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: #1a1a1a;
	}

	textarea {
	min-height: 120px;
	resize: vertical;
}

	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	button,
	.button {
	padding: 0.875rem 2rem;
	background: #1a1a1a;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 500;
		cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
	font-family: inherit;
		}

		input[type="submit"]:hover,
		input[type="reset"]:hover,
		input[type="button"]:hover,
		button:hover,
		.button:hover {
	background: #2563eb;
	transform: translateY(-2px);
		}

		input[type="submit"]:active,
		input[type="reset"]:active,
		input[type="button"]:active,
		button:active,
		.button:active {
	transform: translateY(0);
		}

		input[type="submit"].primary,
		input[type="reset"].primary,
		input[type="button"].primary,
		button.primary,
		.button.primary {
	background: #2563eb;
		}

			input[type="submit"].primary:hover,
			input[type="reset"].primary:hover,
			input[type="button"].primary:hover,
			button.primary:hover,
			.button.primary:hover {
	background: #1d4ed8;
}

/* Team Section (About Us) */
.team {
	padding: 4rem 0;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.team-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
	max-width: 100%;
	height: 100%;
}

.team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.team-image-area {
	position: relative;
	width: 100%;
	padding: 0;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.3s ease;
	background: #f5f5f5;
}

.team-image-area a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-image-area img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	display: block;
}

.team-card:hover .team-image-area img {
	transform: scale(1.05);
}

.team-content {
	padding: 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.team-content h3 {
	font-size: 1.75rem;
	margin-bottom: 1rem;
	color: #1a1a1a;
	font-weight: 600;
}

.team-content p {
	font-size: 1rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex: 1;
}

.team-link {
	display: inline-flex;
	align-items: center;
	font-size: 0.875rem;
	font-weight: 500;
	color: #2563eb;
	transition: transform 0.3s ease;
}

.team-link:hover {
	transform: translateX(4px);
}

@media screen and (max-width: 736px) {
	.team-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.team-image-area {
		min-height: 250px;
	}

	.team-content {
		padding: 1.5rem;
	}

	.team-content h3 {
		font-size: 1.5rem;
	}
}

/* Utility Classes */
.text-center {
	text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
