#about {
	background-color: var(--color-bg);
	min-height: auto;
	height: auto;

}

.about-header {
	text-align: center;
	margin-bottom: var(--space-lg);
}

.about-tagline {
	display: inline-block;
	font-family: var(--font-family);
	color: var(--color-secondary);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-lg);

	padding-bottom: 0.3em;
	background-image: linear-gradient(var(--color-primary), var(--color-primary));
	background-size: 50% 3px;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.about-list {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
	list-style: none;
	margin-bottom: var(--space-lg);
}

.about-card {
	border: var(--border-sm) solid var(--color-secondary);
	border-radius: var(--radius-md);
	padding: var(--card-padding-vertical) var(--card-padding-horizontal);

	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: var(--space-sm);
}

.about-text-wrapper {
	flex: 1;
}

.about-title {
	font-family: var(--font-family);
	color: var(--color-secondary);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-lg);
	margin-bottom: 8px;
}

.about-description {
	font-family: var(--font-family);
	color: var(--color-text-secondary);
	font-size: var(--font-size-sm);
	line-height: 1.5;
}

.about-icon-circle {
	background-color: var(--color-secondary);
	width: 44px;
	height: 44px;
	border-radius: 50%;

	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

.about-icon-circle svg {
	color: var(--color-primary);
	width: 22px;
	height: 22px;
}

@media (min-width: 1024px) {
	.about-list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: var(--space-lg);
	}


	.about-card {
		height: 100%;
		align-items: flex-start;
	}

	#about {
		padding: var(--space-xxl) 0;
	}

	.about-header {
		margin-bottom: var(--space-xl);
	}

	.about-tagline {
		background-size: 50% 3px;
	}
}
