/* Partner Swiper Widget */

.partner-swiper-wrapper {
	width: 100%;
	position: relative;
}

.partner-swiper-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.partner-swiper-section-title {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	color: #333333;
	line-height: 1.3;
}

.partner-swiper-navigation {
	display: flex;
	gap: 12px;
}

.partner-swiper-nav-button {
	width: 48px;
	height: 48px;
	border: 2px solid #e30613;
	border-radius: 50%;
	background-color: transparent;
	color: #e30613;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.partner-swiper-nav-button:hover {
	background-color: #e30613;
	color: #ffffff;
}

.partner-swiper-nav-button.swiper-button-disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.partner-swiper-nav-button svg {
	width: 24px;
	height: 24px;
}

.partner-item {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 30px;
	height: 100%;
}

.partner-logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 60px;
}

.partner-logo img {
	max-height: 60px;
	max-width: 100%;
	height: auto;
	width: auto;
	object-fit: contain;
}

.partner-divider {
	width: 100%;
	height: 1px;
	background-color: #e0e0e0;
}

.partner-description {
	font-size: 14px;
	line-height: 1.8;
	color: #666666;
	margin: 0;
	flex-grow: 1;
}

/* Responsive - Tablet */
@media (max-width: 1100px) {
	.partner-swiper-header {
		margin-bottom: 30px;
	}
	
	.partner-swiper-section-title {
		font-size: 28px;
	}
	
	.partner-swiper-nav-button {
		width: 42px;
		height: 42px;
	}
	
	.partner-item {
		padding: 25px;
	}
}

/* Responsive - Mobile */
@media (max-width: 750px) {
	.partner-swiper-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		margin-bottom: 25px;
	}
	
	.partner-swiper-section-title {
		font-size: 24px;
	}
	
	.partner-swiper-navigation {
		align-self: flex-end;
	}
	
	.partner-swiper-nav-button {
		width: 40px;
		height: 40px;
	}
	
	.partner-swiper-nav-button svg {
		width: 20px;
		height: 20px;
	}
	
	.partner-item {
		padding: 20px;
		gap: 16px;
	}
	
	.partner-logo {
		min-height: 50px;
	}
	
	.partner-logo img {
		max-height: 50px;
	}
	
	.partner-description {
		font-size: 13px;
	}
}
