:root {
	--runner-bg: #f8fafc;
	--runner-card: #ffffff;
	--runner-border: #e2e8f0;
	--runner-muted: #64748b;
	--runner-heading: #0f172a;
	--runner-accent: #2563eb;
	--runner-accent-soft: rgba(37, 99, 235, 0.1);
 --runner-radius-lg: 14px;
 --runner-radius: 10px;
	--runner-radius-sm: 8px;
	--runner-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
	--runner-transition: 200ms ease;
}

.runner-single {
	background: var(--runner-bg);
	padding: clamp(2rem, 4vw, 4rem) 1.5rem;
}

.runner-single__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.runner-single__grid {
		grid-template-columns: minmax(0, 3fr) minmax(280px, 1fr);
	}
}

.card {
	background: var(--runner-card);
	border-radius: var(--runner-radius-lg);
	box-shadow: var(--runner-shadow);
	padding: clamp(1.5rem, 2vw, 2rem);
	border: 1px solid rgba(148, 163, 184, 0.2);
	margin-bottom: 1rem;
}

.runner-profile__hero {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 1.5rem;
	align-items: center;
}

.runner-profile__avatar {
    text-align: center;
}

.runner-profile__avatar img,
.runner-hero__avatar-placeholder {
	width: clamp(140px, 16vw, 180px);
	height: clamp(140px, 16vw, 180px);
	border-radius: 36px;
	object-fit: cover;
	box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
}

.runner-hero__avatar-placeholder {
	background: linear-gradient(135deg, #cbd5f5, #dbeafe);
}

.runner-profile__meta {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.runner-hero__title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.runner-hero__title h1 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 2.75rem);
	color: var(--runner-heading);
}

.runner-hero__summary {
	margin: 0.5rem 0 0;
	color: var(--runner-muted);
	font-size: 1rem;
	line-height: 1.6;
}

.runner-hero__stats {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1rem;
}

.runner-stat {
	border: 1px solid rgba(148, 163, 184, 0.3);
	border-radius: var(--runner-radius);
	padding: 0.75rem 1rem;
	background: #fff;
}

.runner-hero__stat-label {
	font-size: 0.85rem;
	color: var(--runner-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.runner-hero__stats strong {
	display: block;
	font-size: 1.55rem;
	color: var(--runner-heading);
	margin-top: 0.25rem;
}

.runner-stat__value {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

.runner-stat__anchor {
	font-size: 0.85rem;
	color: var(--runner-accent) !important;
	text-decoration: none  !important;
}

.runner-verified {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.85rem;
	background: #ecfdf5;
	color: #047857;
	border-radius: 999px;
	padding: 0.35rem 0.75rem;
}

.runner-verified svg {
	width: 1rem;
	height: 1rem;
	fill: currentColor;
}

.runner-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.runner-chip {
	background: var(--runner-accent-soft);
	color: var(--runner-accent) !important;
	border-radius: 999px;
	padding: 0.35rem 0.85rem;
	font-size: 0.875rem;
}

.runner-profile__contact,
.runner-profile__services,
.runner-profile__about {
	margin-top: 3rem;
}

.runner-section-subtitle {
	margin: 0;
	color: var(--runner-muted);
	font-size: 0.95rem;
}

.runner-contact__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
}

.runner-contact__item {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.runner-contact__label {
	font-size: 0.85rem;
	color: var(--runner-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.runner-contact__value,
.runner-contact__copy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	background: #f1f5f9;
	border-radius: var(--runner-radius-sm);
	padding: 0.65rem 0.85rem;
	font-weight: 500;
	cursor: pointer;
	transition: background var(--runner-transition), color var(--runner-transition);
	border: none;
	text-align: left;
	width: 100%;
	text-decoration: none !important;
	color: #0f172a !important;
	white-space: nowrap;
}

.runner-contact__value--email {
    color: var(--runner-accent) !important;
}

.runner-contact__value:hover,
.runner-contact__copy-btn:hover {
	background: #e2e8f0;
}

.runner-contact__value--phone {
	flex: 1;
}

.runner-contact__copy-btn {
	width: auto;
	background: transparent !important;
	border: 1px solid rgba(148, 163, 184, 0.4);
	color: var(--runner-accent) !important;
	min-width: 72px;
	justify-content: center;
}

.runner-contact__copy-btn:hover {
	background: var(--runner-accent) !important;
	color: #fff !important;
}

.runner-contact__actions {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.runner-contact__copy {
	font-size: 0.8rem;
	color: var(--runner-accent);
}

.runner-contact__copy--action {
	font-size: 0.85rem;
	font-weight: 600;
}

.runner-contact__gate {
	background: rgba(37, 99, 235, 0.04);
	border: 1px dashed rgba(37, 99, 235, 0.4);
	border-radius: var(--runner-radius);
	padding: 1.25rem;
}

.runner-contact__gate-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
}

/* New contact layout styles */
.runner-contact__tips {
	margin: 0 0 1rem;
	padding: 0.75rem 1rem;
	background: rgba(37, 99, 235, 0.04);
	/*border-left: 3px solid var(--runner-accent);*/
	border-left: 3px solid #2563eb5c;
	border-radius: var(--runner-radius-sm);
	font-size: 0.9rem;
	/*color: var(--runner-muted);*/
	color: #64748b7d;
	line-height: 1.5;
}

.runner-contact__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.runner-contact__row {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1rem;
	background: #f8fafc;
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: var(--runner-radius);
	transition: border-color var(--runner-transition), box-shadow var(--runner-transition);
}

.runner-contact__row:hover {
	border-color: rgba(37, 99, 235, 0.3);
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.runner-contact__row .runner-contact__label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--runner-heading);
	text-transform: none;
	letter-spacing: normal;
}

.runner-contact__row-content {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.runner-contact__value-text {
	flex: 1;
	min-width: 0;
	font-size: 0.95rem;
	color: var(--runner-heading);
	word-break: break-all;
}

.runner-contact__value-text--link {
	color: var(--runner-accent) !important;
	text-decoration: none !important;
	transition: opacity var(--runner-transition);
}

.runner-contact__value-text--link:hover {
	opacity: 0.8;
	text-decoration: underline !important;
}

.runner-contact__value-text--masked {
	color: var(--runner-muted);
	font-family: monospace;
	letter-spacing: 0.1em;
}

.runner-contact__view-btn {
	flex-shrink: 0;
	padding: 0.5rem 1rem;
	background: rgba(37, 99, 235, 0.08) !important;
	border: 1px solid var(--runner-accent);
	border-radius: var(--runner-radius-sm);
	color: var(--runner-accent) !important;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all var(--runner-transition);
	white-space: nowrap;
	min-width: 90px;
	text-align: center;
}

.runner-contact__view-btn:hover {
	background: var(--runner-accent) !important;
	color: #fff !important;
	border-color: var(--runner-accent);
}

.runner-contact__row .runner-contact__copy-btn {
	width: auto;
	background: transparent !important;
	border: 1px solid rgba(148, 163, 184, 0.4);
	color: var(--runner-accent) !important;
	min-width: 90px;
	justify-content: center;
	padding: 0.5rem 1rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--runner-radius-sm);
	padding: 0.55rem 1.4rem;
	text-decoration: none;
	font-weight: 600;
	transition: box-shadow var(--runner-transition), transform var(--runner-transition);
}

.button-primary {
	background: var(--runner-accent);
	color: #fff !important;
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.button-outline {
	border: 1px solid var(--runner-accent);
	color: var(--runner-accent) !important;
	background: transparent;
}

.button:hover {
	transform: translateY(-1px);
	color: #fff;
}

.runner-service-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.runner-chip--link {
	text-decoration: none !important;
	border: 1px solid rgba(37, 99, 235, 0.2);
}

.runner-profile__about .runner-about__content p {
	margin-bottom: 1rem;
	line-height: 1.7;
	color: #333c49;
}

.runner-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.runner-section-header h2 {
	margin: 0;
	color: var(--runner-heading);
}

.runner-link {
	font-weight: 600;
	color: var(--runner-accent) !important;
	text-decoration: none;
	position: relative;
}

.runner-link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 2px;
	background: currentColor;
	opacity: 0;
	transform: translateY(4px);
	transition: var(--runner-transition);
}

.runner-link:hover::after {
	opacity: 1;
	transform: translateY(0);
}

.runner-diaries__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.runner-diary {
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: var(--runner-radius);
	overflow: hidden;
	background: #fff;
	height: 100%;
	display: flex;
}

.runner-diary__link {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.runner-diary__thumb img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}

.runner-diary__body {
	padding: 1rem 1.2rem;
}

.runner-diary__body h3 {
	margin: 0 0 0.4rem;
	font-size: 1.2rem;
	color: var(--runner-heading);
}

.runner-diary__meta {
	font-size: 0.85rem;
	color: var(--runner-muted);
	margin: 0 0 0.5rem;
}

.runner-diary__excerpt {
	margin: 0;
	color: #1f2937;
	line-height: 1.6;
}

.runner-related__grid,
.runner-service-card-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.25rem;
}

.runner-related-card,
.runner-service-card {
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: var(--runner-radius);
	padding: 1.25rem;
	background: #fff;
	transition: transform var(--runner-transition), box-shadow var(--runner-transition);
}

.runner-related-card:hover,
.runner-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12);
}

.runner-related-card__link {
	display: flex;
	gap: 1rem;
	text-decoration: none;
	color: inherit;
}

.runner-related-card__avatar {
	position: relative;
	flex-shrink: 0;
}

.runner-related-card__avatar img,
.runner-related-card__avatar-placeholder {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	object-fit: cover;
	background: #e2e8f0;
}

.runner-related-card__badge {
	position: absolute;
	top: -2px;
	right: -2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #047857;
	font-size: 1.1rem;
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	width: auto;
	height: auto;
}

.runner-related-card__body {
	flex: 1;
	min-width: 0;
}

.runner-related-card__body h3 {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
}

.runner-related-card__meta {
	margin-top: 0.5rem;
}

.runner-related-card__orders {
	font-size: 0.85rem;
	color: var(--runner-muted);
	font-weight: 500;
}

.runner-single__sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* Similar runners section - positioned below main grid */
.runner-single > .runner-related {
	max-width: 1200px;
	margin: 1rem auto 0;
}

.runner-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.runner-sidebar__list a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}

.runner-sidebar__name {
	font-weight: 600;
}

.runner-sidebar__meta {
	font-size: 0.9rem;
	color: var(--runner-muted);
}

.runner-service-card h4 {
	margin-top: 0;
	margin-bottom: 0.35rem;
	font-size: 1.05rem;
	color: var(--runner-heading);
}

.runner-service-card p {
	margin: 0;
	color: var(--runner-muted);
	line-height: 1.5;
}

.runner-featured-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.runner-featured-card {
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: var(--runner-radius);
	padding: 1rem;
	position: relative;
}

.runner-featured-card__link {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	text-decoration: none !important;
	color: inherit !important;
}

.runner-featured-card__header {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.85rem;
	align-items: center;
}

.runner-featured-card__avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: #e2e8f0;
}

.runner-featured-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.runner-featured-card__badge {
	position: absolute;
	top: 8px;
	right: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #047857;
	font-size: 1.1rem;
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	width: auto;
	height: auto;
}

.runner-featured-card__info {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.runner-featured-card__name {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--runner-heading);
}

.runner-featured-card__orders {
	font-size: 0.85rem;
	color: var(--runner-muted);
}

.runner-featured-card__excerpt {
	margin: 0;
	color: var(--runner-muted);
	font-size: 0.9rem;
	line-height: 1.4;
}

.runner-sidebar--featured, .runner-service-highlight {
	padding: 1.4rem;
	border-radius: var(--runner-radius);
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.runner-service-highlight__content {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.runner-service-highlight__header {
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
	align-items: baseline;
}

.runner-service-highlight__title {
	margin: 0;
	font-size: 1.05rem;
	color: var(--runner-heading);
	font-weight: 600;
}

.runner-service-highlight__title a {
	color: var(--runner-accent) !important;
	text-decoration: none !important;
}

.runner-service-highlight__title a:hover {
	text-decoration: underline !important;
}

.runner-service-highlight__tag {
	font-size: 0.8rem;
	color: var(--runner-accent);
	background: rgba(37, 99, 235, 0.12);
	padding: 0.15rem 0.6rem;
	border-radius: 999px;
}

.runner-service-highlight__excerpt {
	margin: 0;
	color: var(--runner-muted);
	line-height: 1.5;
}

.runner-service-highlight__meta {
	display: flex;
	gap: 0.4rem;
	align-items: center;
	font-size: 0.9rem;
	color: var(--runner-muted);
}

.runner-service-highlight__actions {
	border-top: 1px solid #e2e8f0;
	margin-top: 0.5rem;
    padding-top: 1rem;
}

.runner-service-highlight__actions .button {
	width: 100%;
	justify-content: center;
	font-weight: normal;
	padding: 0.6rem 1rem;
}

.runner-service-highlight__actions .button:hover {
	background-color: #2563eb !important;
	color: white !important;
	text-decoration: none !important;
	transform: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.runner-service-highlight__cta {
	font-weight: 600;
	color: var(--runner-accent);
}

.button-small {
	padding: 0.4rem 1rem;
	font-size: 0.9rem;
}

@media (max-width: 767px) {
	.runner-profile__hero {
		grid-template-columns: minmax(0, 1fr);
	}

	.runner-hero__stats {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	}

	.runner-contact__grid {
		grid-template-columns: 1fr;
	}

	.runner-diary__thumb img {
		height: 180px;
	}
}

