/*
Theme Name: WildPro Prod
Theme URI: https://wildproestudio.com/
Author: WildPro Studio
Description: Tema ligero y directo para la nueva web de WildPro Studio.
Version: 1.0.0
Requires at least: 6.6
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: wildpro-prod
*/

:root {
	--wpd-bg: #ffffff;
	--wpd-surface: #ffffff;
	--wpd-surface-soft: #f7f8f8;
	--wpd-text: #161616;
	--wpd-muted: #5f666a;
	--wpd-line: #dde4e7;
	--wpd-accent: #17ace4;
	--wpd-accent-dark: #0a89ba;
	--wpd-shadow: 0 8px 24px rgba(17, 28, 33, 0.04);
	--wpd-radius: 22px;
	--wpd-shell: min(1320px, calc(100vw - 48px));
	--wpd-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--wpd-bg);
	color: var(--wpd-text);
	font-family: "Avenir Next", "Helvetica Neue", sans-serif;
	line-height: 1.6;
}

img,
video {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
}

.wpd-shell {
	width: var(--wpd-shell);
	margin: 0 auto;
}

.wpd-site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	padding: 18px 0;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.35s var(--wpd-ease), box-shadow 0.35s var(--wpd-ease);
}

.wpd-site-header.is-scrolled {
	border-color: rgba(22, 22, 22, 0.08);
	box-shadow: 0 10px 30px rgba(17, 28, 33, 0.04);
}

.wpd-header-row {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
}

.wpd-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.wpd-brand img {
	width: 148px;
	height: auto;
}

.wpd-brand span {
	font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.wpd-nav {
	display: flex;
	justify-content: center;
	gap: 26px;
}

.wpd-nav a,
.wpd-footer-links a {
	color: var(--wpd-muted);
	font-size: 0.96rem;
	font-weight: 600;
	transition: color 0.25s ease;
}

.wpd-nav a.is-current {
	color: var(--wpd-text);
}

.wpd-nav a:hover,
.wpd-nav a:focus-visible,
.wpd-footer-links a:hover,
.wpd-footer-links a:focus-visible {
	color: var(--wpd-text);
}

.wpd-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid var(--wpd-line);
	border-radius: 999px;
	background: var(--wpd-surface);
	color: var(--wpd-text);
}

.wpd-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.9rem 1.45rem;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--wpd-accent);
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 700;
	box-shadow: 0 18px 40px rgba(23, 172, 228, 0.2);
	transition: transform 0.3s var(--wpd-ease), box-shadow 0.3s var(--wpd-ease), background 0.3s var(--wpd-ease);
}

.wpd-button:hover,
.wpd-button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 22px 44px rgba(23, 172, 228, 0.26);
}

.wpd-button.is-secondary {
	background: var(--wpd-surface);
	color: var(--wpd-text);
	border-color: var(--wpd-line);
	box-shadow: none;
}

.wpd-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.wpd-main section {
	padding: clamp(56px, 8vw, 88px) 0;
}

.wpd-page-hero,
.wpd-page-section {
	padding: clamp(48px, 7vw, 88px) 0;
}

.wpd-hero {
	padding-top: clamp(36px, 7vw, 80px);
}

.wpd-hero-frame {
	position: relative;
	overflow: hidden;
	border-radius: var(--wpd-radius);
	background: #0f1518;
	box-shadow: var(--wpd-shadow);
	min-height: min(78svh, 760px);
}

.wpd-video-preview {
	position: relative;
	isolation: isolate;
}

.wpd-video-preview.has-poster {
	background-image: var(--wpd-video-poster);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.wpd-video-preview video {
	pointer-events: none;
}

.wpd-video-preview.has-poster video {
	opacity: 0;
}

.wpd-video-preview::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(9, 17, 21, 0.08), rgba(9, 17, 21, 0.22));
	z-index: 1;
}

.wpd-hero-frame.wpd-video-preview::after {
	z-index: 1;
}

.wpd-video-trigger {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 54px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #111;
	font-size: 0.95rem;
	font-weight: 700;
	transform: translate(-50%, -50%);
	box-shadow: 0 20px 44px rgba(17, 28, 33, 0.18);
	cursor: pointer;
}

.wpd-video-trigger__icon {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: var(--wpd-accent);
	color: #fff;
}

.is-hero-preview .wpd-video-trigger {
	top: auto;
	left: auto;
	right: 32px;
	bottom: 32px;
	transform: none;
}

.wpd-video-modal[hidden] {
	display: none;
}

.wpd-video-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(8, 11, 14, 0.72);
	backdrop-filter: blur(10px);
}

.wpd-video-modal__dialog {
	position: relative;
	width: min(1100px, 100%);
}

.wpd-video-modal__player {
	width: 100%;
	max-height: 84vh;
	border-radius: 20px;
	background: #000;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.wpd-video-modal__close {
	position: absolute;
	top: -14px;
	right: -14px;
	z-index: 2;
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	color: #111;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 18px 38px rgba(17, 28, 33, 0.2);
}

body.wpd-has-video-modal {
	overflow: hidden;
}

.wpd-hero-media,
.wpd-hero-overlay {
	position: absolute;
	inset: 0;
}

.wpd-hero-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wpd-hero-overlay {
	background:
		linear-gradient(180deg, rgba(9, 17, 21, 0.2), rgba(9, 17, 21, 0.68)),
		linear-gradient(90deg, rgba(9, 17, 21, 0.76), rgba(9, 17, 21, 0.2));
}

.wpd-hero-content {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: end;
	min-height: min(78svh, 760px);
	padding: clamp(28px, 4.4vw, 52px);
	color: #ffffff;
}

.wpd-kicker {
	margin: 0 0 16px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.wpd-hero h1,
.wpd-section-heading h2,
.wpd-cta h2 {
	margin: 0;
	font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
	font-weight: 700;
	letter-spacing: -0.05em;
	line-height: 0.96;
}

.wpd-hero h1 {
	font-size: clamp(2.5rem, 6.2vw, 5rem);
}

.wpd-hero-copy,
.wpd-section-copy,
.wpd-card p,
.wpd-step p,
.wpd-case p,
.wpd-footer-copy,
.wpd-footer-meta {
	margin: 0;
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	color: rgba(255, 255, 255, 0.84);
}

.wpd-hero-copy {
	max-width: 42rem;
	margin-top: 22px;
}

.wpd-microcopy {
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.92rem;
}

.wpd-simple-intro {
	display: grid;
	gap: 18px;
	max-width: 1120px;
}

.wpd-home-links,
.wpd-home-summary {
	padding-top: clamp(44px, 6vw, 72px);
}

.wpd-section-heading {
	display: grid;
	gap: 18px;
	max-width: 1120px;
}

.wpd-section-heading h2,
.wpd-cta h2 {
	font-size: clamp(2.1rem, 4.2vw, 3.6rem);
	color: var(--wpd-text);
}

.wpd-section-copy,
.wpd-card p,
.wpd-step p,
.wpd-case p,
.wpd-footer-copy,
.wpd-footer-meta {
	color: var(--wpd-muted);
}

.wpd-card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin-top: 20px;
}

.wpd-link-grid,
.wpd-feature-grid,
.wpd-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 24px;
}

.wpd-link-card,
.wpd-feature-card,
.wpd-contact-card {
	display: grid;
	gap: 12px;
	padding: 24px;
	border: 1px solid var(--wpd-line);
	border-radius: 20px;
	background: var(--wpd-surface-soft);
}

.wpd-card,
.wpd-case,
.wpd-step {
	display: grid;
	gap: 10px;
	padding: 20px 0;
	border: 0;
	border-bottom: 1px solid var(--wpd-line);
	border-radius: 0;
	background: var(--wpd-surface);
	box-shadow: none;
}

.wpd-card h3,
.wpd-case h3,
.wpd-step h3 {
	margin: 0;
	font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(1.35rem, 1.7vw, 1.75rem);
	line-height: 1;
	letter-spacing: -0.04em;
}

.wpd-card strong,
.wpd-case strong,
.wpd-link-card strong,
.wpd-feature-card strong,
.wpd-contact-card strong {
	font-size: 0.8rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wpd-accent-dark);
}

.wpd-link-card h3,
.wpd-feature-card h3,
.wpd-contact-card h3 {
	margin: 0;
	font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(1.45rem, 2vw, 2rem);
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.wpd-contact-value-link {
	color: inherit;
	text-decoration: none;
}

.wpd-contact-value-link:hover,
.wpd-contact-value-link:focus-visible {
	color: var(--wpd-accent-dark);
}

.wpd-link-card p,
.wpd-feature-card p,
.wpd-contact-card p {
	margin: 0;
	color: var(--wpd-muted);
}

.wpd-inline-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--wpd-text);
}

.wpd-cases {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 22px;
}

.wpd-page-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
	gap: 28px;
	align-items: start;
}

.wpd-page-hero-copy {
	display: grid;
	gap: 18px;
	max-width: 58rem;
}

.wpd-page-hero-copy.is-wide {
	max-width: 66rem;
}

.wpd-page-kicker {
	margin: 0;
	color: var(--wpd-accent-dark);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.wpd-page-hero h1 {
	margin: 0;
	font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(2.6rem, 5vw, 5rem);
	font-weight: 700;
	letter-spacing: -0.05em;
	line-height: 0.94;
}

.wpd-page-lead {
	margin: 0;
	max-width: 42rem;
	font-size: clamp(1.06rem, 1.6vw, 1.24rem);
	color: var(--wpd-muted);
}

.wpd-page-media,
.wpd-page-note,
.wpd-showcase-media {
	overflow: hidden;
	border-radius: 22px;
	background: #eff2f3;
}

.wpd-page-media {
	height: auto;
	aspect-ratio: 5 / 3;
	align-self: start;
	position: relative;
}

.wpd-page-media.is-compact {
	width: min(860px, 100%);
	margin: 0 auto 32px;
	aspect-ratio: 16 / 9;
}

.wpd-page-media video,
.wpd-showcase-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.wpd-page-note {
	display: grid;
	align-content: end;
	min-height: 320px;
	padding: 28px;
	border: 1px solid var(--wpd-line);
}

.wpd-page-note p {
	margin: 0;
	font-size: clamp(1.15rem, 1.8vw, 1.5rem);
	color: var(--wpd-text);
}

.wpd-showcase-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 28px;
}

.wpd-showcase-card {
	display: grid;
	gap: 14px;
}

.wpd-showcase-media {
	aspect-ratio: 5 / 3;
}

.wpd-showcase-media.has-manual-cover {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.wpd-showcase-media.has-manual-cover video {
	opacity: 0;
}

.wpd-showcase-card h3 {
	margin: 0;
	font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(1.45rem, 2vw, 2rem);
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.wpd-showcase-card p {
	margin: 0;
	color: var(--wpd-muted);
}

.wpd-case-media {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: #13191c;
	aspect-ratio: 4 / 5;
	margin-bottom: 6px;
}

.wpd-case-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wpd-process-track {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin-top: 20px;
}

.wpd-step {
	position: relative;
	padding-top: 20px;
	padding-left: 68px;
}

.wpd-step-number {
	position: absolute;
	top: 18px;
	left: 0;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: var(--wpd-accent);
	color: #ffffff;
	font-weight: 700;
}

.wpd-trust {
	padding-top: 0;
	padding-bottom: clamp(28px, 5vw, 44px);
}

.wpd-trust-row {
	display: grid;
	gap: 20px;
	padding: 24px 0 28px;
}

.wpd-trust-copy {
	display: grid;
	gap: 12px;
	max-width: 34rem;
}

.wpd-trust-copy h2 {
	margin: 0;
	font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(1.8rem, 3vw, 2.75rem);
	line-height: 0.98;
	letter-spacing: -0.04em;
	color: var(--wpd-text);
}

.wpd-trust-panel {
	position: relative;
	padding: clamp(28px, 4vw, 44px);
	background: #ececeb;
	overflow: hidden;
}

.wpd-trust-panel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: min(22%, 180px);
	height: 18px;
	background: #17ace4;
}

.wpd-trust-list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 36px);
	align-items: center;
}

.wpd-trust-list span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--wpd-text);
	font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(1.35rem, 2vw, 2rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 0.95;
	text-align: center;
}

.wpd-split-card {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	padding: clamp(28px, 4vw, 40px);
	border: 1px solid var(--wpd-line);
	border-radius: 22px;
	background: var(--wpd-surface-soft);
}

.wpd-split-copy {
	display: grid;
	gap: 16px;
	align-content: start;
}

.wpd-list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding-left: 18px;
	color: var(--wpd-muted);
}

.wpd-list li::marker {
	color: var(--wpd-accent-dark);
}

.wpd-cta {
	padding-bottom: clamp(56px, 8vw, 88px);
}

.wpd-cta-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	padding: clamp(28px, 5vw, 44px);
	border: 1px solid var(--wpd-line);
	border-radius: var(--wpd-radius);
	background: var(--wpd-surface-soft);
	box-shadow: none;
}

.wpd-cta h2,
.wpd-cta .wpd-section-copy {
	color: var(--wpd-text);
}

.wpd-cta .wpd-section-copy {
	max-width: 38rem;
	color: var(--wpd-muted);
}

.wpd-site-footer {
	padding: 28px 0 48px;
	border-top: 1px solid rgba(22, 22, 22, 0.08);
}

.wpd-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 24px;
	align-items: end;
}

.wpd-footer-brand {
	display: grid;
	gap: 16px;
}

.wpd-footer-brand img {
	width: 160px;
	height: auto;
}

.wpd-footer-side {
	display: grid;
	gap: 16px;
	justify-items: end;
	text-align: right;
}

.wpd-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: flex-end;
}

.wpd-page {
	padding: 84px 0;
}

.wpd-page article {
	width: min(860px, calc(100vw - 48px));
	margin: 0 auto;
	padding: 36px;
	border: 1px solid var(--wpd-line);
	border-radius: var(--wpd-radius);
	background: var(--wpd-surface);
	box-shadow: var(--wpd-shadow);
}

.wpd-page h1 {
	margin-top: 0;
	font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(2.2rem, 4vw, 3.8rem);
	line-height: 1;
	letter-spacing: -0.04em;
}

.wpd-page .entry-content {
	color: var(--wpd-muted);
}

.wpd-page .entry-content h1,
.wpd-page .entry-content h2,
.wpd-page .entry-content h3,
.wpd-page .entry-content h4 {
	color: var(--wpd-text);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

@media (max-width: 1080px) {
	.wpd-cases,
	.wpd-process-track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wpd-page-hero-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	.wpd-header-row,
	.wpd-cta-panel,
	.wpd-footer-grid {
		grid-template-columns: 1fr;
	}

	.wpd-menu-toggle {
		display: inline-flex;
	}

	.wpd-nav {
		display: none;
		grid-column: 1 / -1;
		flex-direction: column;
		align-items: flex-start;
		padding-top: 8px;
	}

	.wpd-site-header.is-menu-open .wpd-nav {
		display: flex;
	}

	.wpd-header-row > .wpd-button {
		display: none;
	}

	.wpd-footer-side {
		justify-items: start;
		text-align: left;
	}

	.wpd-footer-links {
		justify-content: flex-start;
	}

	.wpd-trust-row {
		padding: 20px 0 24px;
	}

	.wpd-trust-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wpd-link-grid,
	.wpd-feature-grid,
	.wpd-contact-grid,
	.wpd-showcase-grid,
	.wpd-split-card {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	:root {
		--wpd-shell: calc(100vw - 28px);
	}

	.wpd-card-grid,
	.wpd-cases,
	.wpd-process-track {
		grid-template-columns: 1fr;
	}

	.wpd-button-row,
	.wpd-cta-panel .wpd-button {
		width: 100%;
	}

	.wpd-button-row .wpd-button,
	.wpd-cta-panel .wpd-button {
		width: 100%;
	}

	.wpd-trust-panel {
		padding: 28px 20px;
	}

	.wpd-trust-panel::before {
		width: 120px;
		height: 14px;
	}

	.wpd-trust-list {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.wpd-trust-list span {
		min-height: 48px;
	}

	.wpd-page-media {
		min-height: 0;
		aspect-ratio: 5 / 3;
	}

	.wpd-video-trigger {
		padding: 0 18px;
	}

	.is-hero-preview .wpd-video-trigger {
		right: 18px;
		bottom: 18px;
	}

	.wpd-video-modal {
		padding: 16px;
	}

	.wpd-video-modal__close {
		top: -10px;
		right: -4px;
	}

	.wpd-hero-content {
		min-height: 72svh;
	}

	.wpd-page article {
		padding: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}

.wildpro-client-area-body {
	background:
		radial-gradient(circle at top left, rgba(23, 172, 228, 0.12), transparent 32%),
		linear-gradient(180deg, #f4f8fb 0%, #ffffff 40%);
}

.wpd-client-area {
	min-height: 100vh;
	padding: 48px 0 72px;
}

.wpd-client-shell {
	width: min(1180px, calc(100vw - 40px));
	margin: 0 auto;
}

.wpd-client-hero,
.wpd-client-project,
.wpd-client-empty {
	border: 1px solid rgba(17, 28, 33, 0.08);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 18px 50px rgba(17, 28, 33, 0.06);
	backdrop-filter: blur(18px);
}

.wpd-client-hero {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding: 32px;
	margin-bottom: 28px;
}

.wpd-client-kicker,
.wpd-client-project-label {
	margin: 0 0 10px;
	color: var(--wpd-accent-dark);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.wpd-client-hero h1,
.wpd-client-project h2 {
	margin: 0 0 12px;
	line-height: 1.1;
}

.wpd-client-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.wpd-client-url {
	padding: 0.65rem 0.9rem;
	border-radius: 999px;
	background: #eef6fa;
	color: var(--wpd-muted);
	font-size: 0.82rem;
}

.wpd-client-logout,
.wpd-client-resource {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.8rem 1.1rem;
	border-radius: 999px;
	font-weight: 700;
}

.wpd-client-logout {
	border: 1px solid var(--wpd-line);
	background: #ffffff;
}

.wpd-client-empty {
	padding: 28px;
}

.wpd-client-project {
	padding: 28px;
	margin-top: 24px;
}

.wpd-client-project-header,
.wpd-client-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.wpd-client-project-intro {
	margin: 20px 0 26px;
	color: var(--wpd-muted);
}

.wpd-client-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.wpd-client-card {
	padding: 22px;
	border: 1px solid rgba(17, 28, 33, 0.08);
	border-radius: 22px;
	background: #f9fbfc;
}

.wpd-client-card h3 {
	margin: 0;
	font-size: 1.12rem;
}

.wpd-client-card p {
	margin: 14px 0 0;
	color: var(--wpd-muted);
}

.wpd-client-resource {
	margin-top: 16px;
	background: var(--wpd-accent);
	color: #ffffff;
}

.wpd-client-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 0.85rem;
	border-radius: 999px;
	font-size: 0.84rem;
	font-weight: 700;
	white-space: nowrap;
}

.wpd-client-status.is-pending {
	background: #fff1d6;
	color: #925b00;
}

.wpd-client-status.is-in-progress {
	background: #dff4ff;
	color: #005f8c;
}

.wpd-client-status.is-completed {
	background: #e5f7e8;
	color: #1e6c34;
}

@media (max-width: 900px) {
	.wpd-client-hero,
	.wpd-client-project-header,
	.wpd-client-card-top {
		flex-direction: column;
	}

	.wpd-client-actions {
		align-items: flex-start;
	}

	.wpd-client-grid {
		grid-template-columns: 1fr;
	}
}
