/* ABOUTME: Styles for the social media section with image grid and link cards. */
/* ABOUTME: Two-column grid for social images with responsive stacking. */
.socials_section .socials_grid {
	width: 66.666%;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	gap: 0.8rem;
}

@media screen and (min-width: 1024px) {
	.socials_section .socials_grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (min-width: 1280px) {
	.socials_section .socials_grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.socials_section .socials_grid > * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 1 / 1;
}

.socials_section .content_wrapper .column.left_column {
	width: 33.333%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
}

.social_link {
	display: flex;
	gap: 1rem;
	align-items: center;
	font-family: "Inter Youth";
	font-size: var(--step-1);
	color: currentColor;
	font-weight: bold;
	text-decoration: none;
}

.social_link--icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.social_link--icon svg,
.social_link--icon svg * {
	fill: var(--section-text-color, var(--color-dark-blue));
}

.social_link:hover {
	text-decoration: underline;
}

.socials_section .image_object {
	height: 100%;
	border-radius: var(--rbr);
	overflow: hidden;
}

section.socials_section .content_wrapper .column img {
	object-fit: cover;
	height: 100%;
	object-position: center;
}
