/* =Creators — AMD Gamer Hub Style
-------------------------------------------------------------- */

.home-creators-section {
	background: #000 url('../images/creators-bg.png') no-repeat center center;
	background-size: cover;
	padding: 80px 0;
}

.home-creators-section__inner {
	margin: 0 auto;
	padding: 0 40px;
}

/* Header: Title + VIEW ALL */
.home-creators-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.home-creators-header__title {
	font-family: 'Klavika', sans-serif;
	font-size: 28px;
	font-weight: 900;
	color: #fff;
	margin: 0;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.home-creators-header__btn {
	display: inline-block;
	background: url('../images/bt-btn-bg.png') no-repeat left center;
	background-size: 168px 28px;
	width: 168px;
	height: 28px;
	line-height: 28px;
	padding: 0 0 0 20px;
	text-decoration: none;
	color: #fff !important;
	font-family: 'Klavika', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	transition: opacity 0.25s ease;
	white-space: nowrap;
}

.home-creators-header__btn:hover {
	opacity: 0.85;
	color: #fff !important;
}

/* Grid: 5 columns */
.home-creators-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

/* Card */
.home-creator-card {
	background: rgba(0, 0, 0, 0.6);
	border-radius: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* Photo */
.home-creator-card__photo {
	position: relative;
	overflow: hidden;
}

.home-creator-card__photo::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #1C0000 0%, #820201 50%, #1C0000 100%);
	z-index: 1;
}

.home-creator-card__photo img {
	width: 100%;
	aspect-ratio: 760 / 674;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.home-creator-card:hover .home-creator-card__photo img {
	transform: scale(1.05);
}

/* Info area */
.home-creator-card__info {
	padding: 16px 14px 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
}

.home-creator-card__name {
	font-family: 'Klavika', sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 100%;
	color: #fff;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.home-creator-card__country {
	font-family: 'Klavika', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	color: #ff0200;
	text-transform: uppercase;
	letter-spacing: 0.17em;
	margin-bottom: 10px;
}

.home-creator-card__desc {
	font-family: 'Klavika', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 100%;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 14px;
	flex: 1;
}

/* Social icons row */
.home-creator-card__socials {
	display: flex;
	align-items: center;
	gap: 12px;
}

.home-creator-card__socials a {
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	transition: opacity 0.2s ease;
}

.home-creator-card__socials a:hover,
.home-creator-card__socials a:active {
	color: #ff0200 !important;
	opacity: 1;
}

.home-creator-card__socials svg {
	width: 16px;
	height: 16px;
}


/* --- Responsive: Tablet --- */
@media (max-width: 768px) {
	.home-creators-section {
		padding: 50px 0;
	}

	.home-creators-section__inner {
		padding: 0 20px;
	}

	.home-creators-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-bottom: 30px;
	}

	.home-creators-header__title {
		font-size: 22px;
		text-align: left;
	}

	.home-creators-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

/* --- Responsive: Small Mobile --- */
@media (max-width: 480px) {
	.home-creators-header__title {
		font-size: 20px;
	}

	.home-creator-card__name {
		font-size: 14px;
	}

	.home-creator-card__desc {
		font-size: 10px;
	}
}
