/* Header Section */
.follow-us-header {
	display: flex;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.follow-us-header-content {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
}

.ltr .follow-us-header-content {
	flex-direction: row-reverse;
}

@media (min-width: 768px) {
	.follow-us-header-content {
		gap: 0.5rem;
	}
}

.follow-us-name {
	font-size: 1rem;
	font-weight: 400;
	color: var(--name-color);
	transition: color 0.3s ease;
	margin: 0;
	text-decoration: none;
	display: block;
}

@media (min-width: 768px) {
	.follow-us-name {
		font-size: 1.25rem;
	}
}

body.dark .follow-us-name {
	color: var(--name-color-dark);
}

.followers-text {
	font-size: 0.875rem;
	font-weight: 300;
	text-align: left;
	color: var(--followers-color);
	transition: color 0.3s ease;
	margin: 0;
}

@media (min-width: 768px) {
	.followers-text {
		font-size: 1rem;
	}
}

body.dark .followers-text {
	color: var(--followers-color-dark);
}

.follow-us-logo {
	border-radius: 50%;
	background-color: var(--primary-color, #000);
	width: 2rem;
	height: 2rem;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.follow-us-logo {
		width: 3.5rem;
		height: 3.5rem;
	}
}

.follow-us-logo-img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

@media (min-width: 768px) {
	.follow-us-logo-img {
		width: 2.5rem;
		height: 2.5rem;
	}
}

/* Gallery Wrapper */
.follow-us-gallery-wrapper {
	position: relative;
}

.follow-us-scroll-container {
	overflow-x: hidden;
	padding: 0 0.5rem;
}

@media (min-width: 768px) {
	.follow-us-scroll-container {
		padding: 0 1rem;
	}
}

.follow-us-parent {
	width: 100%;
	display: flex;
	gap: 0.5rem;
	padding-bottom: 0.5rem;
}

.ltr .follow-us-parent { 
	flex-direction: row-reverse;
}

@media (min-width: 768px) {
	.follow-us-parent {
		gap: 1rem;
	}
}

/* Grid Items */
.follow-us-grid-item-tall,
.follow-us-grid-item-short {
	flex-shrink: 0;
	width: 10rem;
	height: 18rem;
	overflow: hidden;
	position: relative;
}

@media (min-width: 768px) {
	.follow-us-grid-item-tall,
	.follow-us-grid-item-short {
		width: 18rem;
		height: 37.5rem;
	}
}

.follow-us-grid-item-short {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

@media (min-width: 768px) {
	.follow-us-grid-item-short {
		gap: 1rem;
	}
}

.follow-us-grid-item-short-top,
.follow-us-grid-item-short-bottom {
	position: relative;
	height: 50%;
	overflow: hidden;
}

.follow-us-gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Overlay */
.follow-us-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: opacity 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.follow-us-grid-item-tall:hover .follow-us-overlay,
.follow-us-grid-item-short-top:hover .follow-us-overlay,
.follow-us-grid-item-short-bottom:hover .follow-us-overlay {
	opacity: 1;
}

.follow-us-social-icon {
	width: 2.5rem;
	aspect-ratio: 1;
	object-fit: contain;
}

/* Marquee Animation */
@keyframes marquee {
	to {
		transform: translateX(50%);
	}
}

@keyframes marquee-reverse {
	to {
		transform: translateX(-50%);
	}
}

.follow-us-parent.marquee {
	width: max-content;
}

