/* Outer layout: circular side arrows + Swiper */
.port-reviews-slider {
	position: relative;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 0 2.75rem;
}

.port-reviews-slider__row {
	display: flex;
	align-items: stretch;
	gap: 0.5rem;
}

.port-reviews-slider__row .port-reviews-swiper {
	flex: 1;
	min-width: 0;
}

.port-reviews-slider__circle-nav {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	align-self: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 1px solid #e0e0e0;
	border-radius: 50%;
	background: #f5f5f5;
	color: #555;
	font-family: inherit;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.port-reviews-slider__circle-nav:hover,
.port-reviews-slider__circle-nav:focus-visible {
	background: #fff;
	color: #222;
	border-color: #ccc;
	outline: none;
}

.port-reviews-slider__circle-nav::after {
	font-family: inherit;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1;
}

.port-reviews-slider__circle-nav.swiper-button-prev::after {
	content: "\2039";
}

.port-reviews-slider__circle-nav.swiper-button-next::after {
	content: "\203A";
}

.port-reviews-swiper {
	padding-bottom: 0;
}

.port-reviews-swiper__pagination {
	position: relative !important;
	margin-top: 1.25rem;
	text-align: center;
}

.port-reviews-swiper__pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #c4c4c4;
	opacity: 1;
}

.port-reviews-swiper__pagination .swiper-pagination-bullet-active {
	background: #888;
}

/* Card */
.port-review-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	box-sizing: border-box;
	padding: 0.25rem 0.35rem 0.5rem;
}

.port-review-card__bubble {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0 0 1.35rem;
	padding: 2.5rem 1.35rem 2.25rem;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 10px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
}

/* Speech-bubble tail */
.port-review-card__bubble::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -10px;
	width: 20px;
	height: 20px;
	margin-left: -10px;
	background: #fff;
	border-right: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8;
	transform: rotate(45deg);
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.04);
}

.port-review-card__quote-mark {
	position: absolute;
	left: 0.85rem;
	top: 0.35rem;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 3.75rem;
	line-height: 1;
	color: #e8e8e8;
	pointer-events: none;
	user-select: none;
}

.port-review-card__stars {
	display: flex;
	gap: 2px;
	margin: 0 0 0.65rem;
	padding-left: 2.6rem;
}

.port-review-card__star {
	font-size: 1rem;
	line-height: 1;
	color: #ddd;
}

.port-review-card__star.is-filled {
	color: #f5a623;
}

.port-review-card__text-wrap {
	position: relative;
	z-index: 1;
	padding-left: 2.6rem;
}

.port-review-card__body {
	margin: 0 0 0.35rem;
	font-size: 0.95rem;
	line-height: 1.65;
	font-style: italic;
	color: #666;
}

.port-review-card__readmore {
	display: inline;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	font-style: normal;
	font-size: 0.9rem;
	font-weight: 600;
	color: #1a73e8;
	cursor: pointer;
	text-decoration: none;
}

.port-review-card__readmore:hover,
.port-review-card__readmore:focus-visible {
	text-decoration: underline;
	outline: none;
}

.port-review-card.is-expanded .port-review-card__readmore {
	display: none;
}

.port-review-card__source {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	z-index: 2;
	line-height: 0;
	opacity: 0.95;
}

.port-review-card__source img {
	display: block;
	width: 22px;
	height: 22px;
}

/* Author row under bubble */
.port-review-card__author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.15rem;
	text-align: left;
	width: 100%;
	max-width: 100%;
	padding: 0 0.25rem;
	box-sizing: border-box;
}

.port-review-card__avatar {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, #6b7fd7 0%, #8b5cf6 100%);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.port-review-card__author-text {
	min-width: 0;
}

.port-review-card__name {
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #444;
	line-height: 1.25;
}

.port-review-card__date {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.8rem;
	color: #9a9a9a;
}

@media (max-width: 639px) {
	.port-reviews-slider__circle-nav {
		display: none;
	}
}
