/* Pinterest Feed */

.pinterest-single-pin {
	max-width: 450px;
	margin: 20px 0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pinterest-single-pin .pin-image {
	width: 100%;
	height: auto;
}

.pin-content {
	padding: 20px;
	background: #fff;
}

.pin-content h3 {
	margin: 0 0 15px 0;
	color: #333;
	font-size: 20px;
}

.pinterest-btn {
	display: inline-block;
	padding: 12px 28px;
	background: #e60023;
	color: #fff;
	text-decoration: none;
	border-radius: 24px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.pinterest-btn:hover {
	background: #ad081b;
}

.pinterest-feed-grid {
	margin: 20px 0;
}

.pinterest-pin-item {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.pinterest-pin-item:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transform: translateY(-5px);
}

.pin-image-wrapper {
	width: 100%;
	height: 280px;
	overflow: hidden;
}

.pin-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.pinterest-pin-item:hover .pin-image {
	transform: scale(1.05);
}

.pin-view-btn {
	display: inline-block;
	margin: 0 15px 15px 15px;
	padding: 10px 16px;
	background: #e60023;
	color: #fff;
	text-decoration: none;
	border-radius: 24px;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.pin-view-btn:hover {
	background: #ad081b;
}

@media (max-width: 768px) {
	.pinterest-feed-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 480px) {
	.pinterest-feed-grid {
		grid-template-columns: 1fr !important;
	}
}
