.genb-ig {
	width: 100%;
	box-sizing: border-box;
}

.genb-ig__header {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.genb-ig__profile {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: inherit;
}

.genb-ig__avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	background: #cae6ea;
	flex-shrink: 0;
}

.genb-ig__name {
	display: block;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
}

.genb-ig__handle {
	display: block;
	font-size: 13px;
	opacity: 0.7;
}

.genb-ig__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.genb-ig__item {
	margin: 0;
	padding: 0;
}

.genb-ig__link {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f3f3f3;
}

.genb-ig__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.genb-ig__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 13px;
	color: #666;
}

.genb-ig__reel {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 18px;
	height: 18px;
	border: 2px solid #fff;
	border-radius: 4px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.genb-ig__link:hover .genb-ig__img {
	opacity: 0.88;
}

.genb-ig__footer {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.genb-ig__follow {
	display: inline-block;
	background: #408bd1;
	color: #fff;
	text-decoration: none;
	padding: 10px 18px;
	border-radius: 4px;
	font-weight: 600;
}

.genb-ig__follow:hover {
	background: #359dff;
	color: #fff;
}

.genb-ig__empty {
	margin: 12px 0;
}

@media (max-width: 767px) {
	.genb-ig__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
