:root {
	--wp-project-primary: #0071e3;
	--wp-project-success: #2cc36f;
	--wp-project-warning: #ff9500;
	--wp-project-ongoing: #0071e3;
	--wp-project-completed: #2cc36f;
	--wp-project-pending: #ff9500;
	--wp-project-gray: #666;
	--wp-project-light-gray: #f2f2f7;
	--wp-project-border-color: #e5e5ea;
}

.wp-project-list-wrap,
.wp-project-detail-wrap,
.wp-project-manage-wrap {
	color: #1d1d1f;
	font-family: "Microsoft Yahei", "PingFang SC", Arial, sans-serif;
	line-height: 1.5;
}

.wp-project-template-page {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.wp-project-template-list-page,
.wp-project-template-list-page.site-main,
.wp-project-template-list-page .entry-content,
.wp-project-template-list-page .wp-site-blocks,
.wp-project-template-list-page .content-area {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.wp-project-list-template-body .site,
.wp-project-list-template-body .site-content,
.wp-project-list-template-body .content-area,
.wp-project-list-template-body .site-main,
.wp-project-list-template-body article,
.wp-project-list-template-body .entry-content {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.wp-project-template-page .wp-project-list-wrap .wp-project-container {
	padding-top: 4px;
	padding-bottom: 8px;
}

.wp-project-list-wrap *,
.wp-project-detail-wrap *,
.wp-project-manage-wrap * {
	box-sizing: border-box;
}

.wp-project-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 12px 12px;
}

.wp-project-list-stats {
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(0, 1.7fr) minmax(300px, 1fr);
	margin: 0 0 14px;
}

.wp-project-list-overview-card {
	background: #fff;
	border: 1px solid var(--wp-project-border-color);
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
	color: #111827;
	min-width: 0;
	overflow: hidden;
	padding: 14px;
}

.wp-project-list-overview-head,
.wp-project-list-distribution,
.wp-project-list-chart-card {
	position: relative;
}

.wp-project-list-overview-head {
	align-items: stretch;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-bottom: 10px;
}

.wp-project-list-overview-copy {
	min-width: 0;
}

.wp-project-list-overview-kicker {
	color: var(--wp-project-primary);
	display: inline-flex;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	margin-bottom: 6px;
	padding: 5px 9px;
	background: #eef4ff;
	border: 1px solid #d7e5ff;
	border-radius: 999px;
}

.wp-project-list-overview-title {
	color: #111827;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.wp-project-list-overview-title strong {
	color: var(--wp-project-primary);
	display: inline;
	font-size: 21px;
	font-weight: 800;
	line-height: inherit;
	margin: 0 4px;
}

.wp-project-list-overview-desc {
	color: #6b7280;
	font-size: 12px;
	line-height: 1.5;
	margin: 8px 0 0;
}

.wp-project-list-overview-desc strong,
.wp-project-list-overview-desc span {
	color: #111827;
	font-weight: 700;
}

.wp-project-list-overview-highlight {
	align-self: flex-start;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	flex: 0 0 128px;
	min-width: 128px;
	padding: 10px 11px;
	text-align: left;
}

.wp-project-list-overview-highlight span,
.wp-project-list-overview-highlight em {
	color: #6b7280;
	display: block;
	font-size: 11px;
	font-style: normal;
	line-height: 1.3;
}

.wp-project-list-overview-highlight strong {
	color: var(--wp-project-primary);
	display: block;
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
	margin: 6px 0 4px;
}

.wp-project-list-mini-stats {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wp-project-list-mini-stat-card {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"label value"
		"meta meta";
	column-gap: 10px;
	row-gap: 4px;
	align-items: center;
	min-width: 0;
	padding: 10px 11px;
}

.wp-project-list-mini-stat-card span {
	color: #6b7280;
	display: block;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.25;
	grid-area: label;
	min-width: 0;
}

.wp-project-list-mini-stat-card strong {
	color: #111827;
	display: inline-flex;
	align-items: baseline;
	gap: 2px;
	font-size: 18px;
	font-weight: 800;
	grid-area: value;
	justify-self: end;
	line-height: 1.05;
	margin-top: 0;
	text-align: right;
	white-space: nowrap;
}

.wp-project-list-mini-stat-card em {
	color: #6b7280;
	display: block;
	font-size: 11px;
	font-style: normal;
	grid-area: meta;
	line-height: 1.35;
	margin-top: 0;
}

.wp-project-list-mini-stat-primary strong {
	color: var(--wp-project-primary);
}

.wp-project-list-mini-stat-progress strong {
	color: #6a5cff;
}

.wp-project-list-mini-stat-ongoing strong {
	color: var(--wp-project-ongoing);
}

.wp-project-list-mini-stat-completed strong {
	color: var(--wp-project-completed);
}

.wp-project-list-mini-stat-pending strong {
	color: var(--wp-project-pending);
}

.wp-project-list-mini-stat-card em span {
	color: #111827;
	font-size: 12px;
	font-weight: 800;
}

.wp-project-list-mini-stat-card strong > span {
	color: inherit;
	display: inline;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.wp-project-list-chart-card {
	background: #fff;
	border: 1px solid var(--wp-project-border-color);
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
	min-width: 0;
	padding: 14px;
}

.wp-project-list-chart-head {
	align-items: flex-start;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-bottom: 10px;
}

.wp-project-list-chart-kicker {
	color: var(--wp-project-primary);
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 6px;
}

.wp-project-list-chart-title {
	color: #111827;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

.wp-project-list-chart-total {
	color: var(--wp-project-primary);
	flex: 0 0 auto;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.1;
}

.wp-project-list-chart-wrap {
	display: block;
}

.wp-project-list-chart-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wp-project-list-chart-box {
	align-items: center;
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(0, 126px) minmax(0, 1fr);
	min-height: 188px;
	min-width: 0;
}

.wp-project-list-chart-box-type {
	align-items: start;
	display: block;
}

.wp-project-list-chart-grid > .wp-project-list-chart-box:not(.wp-project-list-chart-box-type) {
	align-content: start;
	grid-template-rows: 126px;
}

.wp-project-list-chart-box-type .wp-project-list-donut-shell {
	margin-bottom: 10px;
}

.wp-project-list-chart-box-type .wp-project-list-chart-legend-bottom {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	justify-content: flex-start;
	width: calc(200% + 10px);
}

.wp-project-list-chart-box-type .wp-project-list-chart-legend-item {
	flex: 0 0 auto;
	width: auto;
}

.wp-project-list-donut-shell {
	display: flex;
	justify-content: center;
	margin-bottom: 0;
}

.wp-project-list-donut-wrap {
	height: 126px;
	position: relative;
	width: 126px;
}

.wp-project-list-donut {
	border-radius: 50%;
	height: 126px;
	left: 0;
	position: absolute;
	top: 0;
	width: 126px;
	z-index: 1;
}

.wp-project-list-donut-center {
	align-items: center;
	background: #fff;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px #f1f5f9;
	display: flex;
	flex-direction: column;
	height: 60px;
	inset: 0;
	justify-content: center;
	margin: auto;
	pointer-events: none;
	position: absolute;
	text-align: center;
	width: 60px;
	z-index: 2;
}

.wp-project-list-donut-center strong {
	color: #111827;
	display: block;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.05;
}

.wp-project-list-donut-center em {
	color: #6b7280;
	display: block;
	font-size: 10px;
	font-style: normal;
	line-height: 1.35;
	margin-top: 3px;
}

.wp-project-list-chart-legend {
	display: grid;
	gap: 6px 8px;
	min-width: 0;
	width: 100%;
}

.wp-project-list-chart-legend-bottom {
	align-content: start;
	grid-template-columns: minmax(0, 1fr);
}

.wp-project-list-chart-legend-item {
	align-items: center;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	display: flex;
	gap: 6px;
	height: 26px;
	min-width: 0;
	padding: 4px 7px;
	width: 100%;
}

.wp-project-list-chart-legend-dot {
	border-radius: 999px;
	display: inline-block;
	flex: 0 0 auto;
	height: 7px;
	width: 7px;
}

.wp-project-list-chart-legend-text {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
}

.wp-project-list-chart-legend-text strong {
	color: #111827;
	display: block;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
	overflow: visible;
	text-overflow: clip;
	white-space: nowrap;
}

.wp-project-list-chart-legend-text span {
	display: none;
}

.wp-project-list-chart-empty {
	color: #6b7280;
	font-size: 13px;
	margin: 0;
}

.wp-project-list-heading {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin: 0 0 10px;
}

.wp-project-list-text {
	color: var(--wp-project-primary);
	display: inline-flex;
	align-items: center;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

.wp-project-list-text::before {
	background: var(--wp-project-primary);
	border-radius: 999px;
	content: "";
	display: inline-block;
	height: 24px;
	margin-right: 8px;
	vertical-align: -5px;
	width: 4px;
}

.wp-project-search {
	display: flex;
	flex: 0 1 380px;
	gap: 8px;
	margin: 0;
}

.wp-project-search-input {
	background: #fff;
	border: 1px solid var(--wp-project-border-color);
	border-radius: 8px;
	color: #222;
	flex: 1 1 auto;
	font-size: 14px;
	min-height: 40px;
	min-width: 0;
	padding: 8px 12px;
	width: 100%;
}

.wp-project-search-input:focus {
	border-color: var(--wp-project-primary);
	box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.12);
	outline: none;
}

.wp-project-search-btn {
	background: var(--wp-project-primary);
	border: 1px solid var(--wp-project-primary);
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	min-height: 40px;
	padding: 8px 18px;
	white-space: nowrap;
}

.wp-project-search-btn:hover,
.wp-project-search-btn:focus {
	background: #005bb8;
	border-color: #005bb8;
	color: #fff;
}

.wp-project-filter-wrapper {
	background: #fff;
	border: 1px solid var(--wp-project-border-color);
	border-radius: 8px;
	margin-bottom: 12px;
	padding: 12px 16px;
}

.wp-project-filter-row {
	align-items: center;
	display: flex;
	gap: 12px;
	margin-bottom: 14px;
}

.wp-project-filter-row:last-child {
	margin-bottom: 0;
}

.wp-project-filter-label {
	color: #333;
	flex-shrink: 0;
	font-size: 14px;
	width: 76px;
}

.wp-project-filter-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.wp-project-filter-btn {
	background: #fff;
	border: 1px solid var(--wp-project-border-color);
	border-radius: 6px;
	color: #222;
	cursor: pointer;
	font-size: 13px;
	line-height: 1.2;
	padding: 6px 12px;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
	white-space: nowrap;
}

.wp-project-filter-btn:hover {
	border-color: var(--wp-project-primary);
	color: var(--wp-project-primary);
}

.wp-project-filter-btn.active,
.wp-project-filter-btn.active:hover {
	background: var(--wp-project-primary);
	border-color: var(--wp-project-primary);
	color: #fff;
}

.wp-project-grid {
	display: grid;
	gap: 14px;
}

.wp-project-grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wp-project-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wp-project-grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wp-project-card {
	background: #fff;
	border: 1px solid var(--wp-project-border-color);
	border-radius: 10px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 16px;
}

.wp-project-badge {
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	font-size: 12px;
	line-height: 1.2;
	padding: 4px 9px;
	width: fit-content;
}

.wp-project-card-badges {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.wp-project-type-badge {
	background: #eef2f7;
	border: 1px solid #dfe5ed;
	border-radius: 4px;
	color: #4b5563;
	display: inline-block;
	font-size: 12px;
	line-height: 1.2;
	padding: 4px 9px;
	width: fit-content;
}

.wp-project-badge-ongoing {
	background: var(--wp-project-ongoing) !important;
}

.wp-project-badge-completed {
	background: var(--wp-project-completed) !important;
}

.wp-project-badge-pending {
	background: var(--wp-project-pending) !important;
}

.wp-project-card h3 {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	margin: 10px 0 6px;
}

.wp-project-card-number {
	color: #e53935;
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
	padding: 4px 0;
	width: fit-content;
}

.wp-project-card-desc {
	color: #666;
	font-size: 13px;
	line-height: 1.45;
	margin: 0 0 12px;
}

.wp-project-progress-row {
	margin: auto 0 10px;
}

.wp-project-progress-info {
	color: #888;
	display: flex;
	font-size: 12px;
	justify-content: space-between;
	margin-bottom: 4px;
}

.wp-project-progress,
.wp-project-progress-bar-box,
.wp-project-sub-task-progress {
	background: var(--wp-project-light-gray);
	border-radius: 999px;
	overflow: hidden;
}

.wp-project-progress {
	height: 6px;
}

.wp-project-progress-bar,
.wp-project-progress-bar-fill,
.wp-project-sub-task-bar {
	background: var(--wp-project-primary);
	border-radius: inherit;
	height: 100%;
	transition: width 0.2s ease;
}

.wp-project-progress-completed {
	background: var(--wp-project-completed) !important;
}

.wp-project-progress-pending {
	background: var(--wp-project-pending) !important;
}

.wp-project-progress-ongoing {
	background: var(--wp-project-ongoing) !important;
}

.wp-project-card-meta {
	color: #999;
	font-size: 12px;
	margin-top: 6px;
}

.wp-project-detail-btn {
	background: var(--wp-project-primary);
	border: 0;
	border-radius: 6px;
	color: #fff !important;
	cursor: pointer;
	display: block;
	font-size: 13px;
	line-height: 1.2;
	margin-top: 10px;
	padding: 8px 12px;
	text-align: center;
	text-decoration: none;
	width: 100%;
}

.wp-project-detail-btn:hover,
.wp-project-detail-btn:focus,
.wp-project-detail-btn:active,
.wp-project-detail-btn:visited {
	color: #fff !important;
	opacity: 0.9;
}

.wp-project-status-ongoing .wp-project-detail-btn {
	background: var(--wp-project-ongoing) !important;
}

.wp-project-status-completed .wp-project-detail-btn {
	background: var(--wp-project-completed) !important;
}

.wp-project-status-pending .wp-project-detail-btn {
	background: var(--wp-project-pending) !important;
}

.wp-project-empty,
.wp-project-message,
.wp-project-empty-inline {
	color: #777;
	font-size: 14px;
	margin: 16px 0;
	text-align: center;
}

.wp-project-detail-wrapper {
	align-items: start;
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(0, 1fr) 320px;
}

.wp-project-back-area {
	display: none;
}

.wp-project-main-column {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}

.wp-project-title-row {
	align-items: flex-start;
	border-bottom: 1px solid var(--wp-project-border-color);
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin: 0 0 14px;
	padding: 0 0 14px;
}

.wp-project-overview-title-block {
	min-width: 0;
}

.wp-project-overview-card {
	width: 100%;
}

.wp-project-progress-card {
	width: 100%;
}

.wp-project-content-card {
	width: 100%;
}

.wp-project-tabs-card {
	grid-area: content;
}

.wp-project-detail-card {
	align-self: stretch;
	background: #fff;
	border: 1px solid var(--wp-project-border-color);
	border-radius: 10px;
	margin-bottom: 0;
	padding: 18px;
	width: 100%;
}

.wp-project-back-btn {
	background: var(--wp-project-primary);
	border: 1px solid var(--wp-project-primary);
	border-radius: 8px;
	box-shadow: 0 6px 14px rgba(0, 113, 227, 0.22);
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	line-height: 1.2;
	min-height: 44px;
	align-items: center;
	flex: 0 0 auto;
	padding: 12px 18px;
	text-decoration: none;
}

.wp-project-back-btn:hover,
.wp-project-back-btn:focus {
	background: #005bb8;
	border-color: #005bb8;
	color: #fff;
	text-decoration: none;
}

.wp-project-back-btn-mobile {
	display: none;
}

.wp-project-title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
	min-width: 0;
}

.wp-project-info-item {
	border-bottom: 1px solid var(--wp-project-light-gray);
	display: flex;
	font-size: 13px;
	padding: 8px 0;
}

.wp-project-info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 28px;
}

.wp-project-info-label {
	color: var(--wp-project-gray);
	flex: 0 0 110px;
	font-weight: 700;
}

.wp-project-extra-field-list {
	column-gap: 28px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 12px;
	row-gap: 0;
}

.wp-project-extra-field-item {
	gap: 0;
	justify-content: flex-start;
}

.wp-project-sidebar .wp-project-extra-field-list {
	column-gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wp-project-sidebar .wp-project-extra-field-item {
	align-items: center;
	flex-direction: row;
	gap: 0;
}

.wp-project-sidebar .wp-project-extra-field-item .wp-project-info-label {
	flex: 0 0 86px;
}

.wp-project-progress-group {
	margin: 20px 0 0;
}

.wp-project-progress-heading {
	display: flex;
	font-size: 14px;
	justify-content: space-between;
}

.wp-project-progress-bar-box {
	height: 8px;
	margin-top: 8px;
}

.wp-project-module-title,
.wp-project-sidebar-title {
	color: #1d1d1f;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 12px;
}

.wp-project-detail-wrap .wp-project-module-title,
.wp-project-detail-wrap .wp-project-sidebar-title {
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	margin: 0 0 12px !important;
}

.wp-project-module-title-with-icon,
.wp-project-sidebar-title-with-icon {
	align-items: center;
	display: flex;
	gap: 8px;
}

.wp-project-section-fa {
	color: var(--wp-project-primary);
	flex: 0 0 auto;
	font-size: 1em;
	line-height: 1;
	text-align: center;
	width: 1.1em;
}

.wp-project-section-icon {
	color: var(--wp-project-primary);
	display: inline-block;
	flex: 0 0 auto;
	position: relative;
}

.wp-project-section-icon-progress {
	height: 18px;
	width: 24px;
}

.wp-project-section-icon-progress::before,
.wp-project-section-icon-progress::after {
	background: currentColor;
	border-radius: 999px;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
}

.wp-project-section-icon-progress::before {
	box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
	height: 3px;
	top: 1px;
}

.wp-project-section-icon-progress::after {
	height: 18px;
	left: 6px;
	right: auto;
	top: 0;
	width: 3px;
}

.wp-project-section-icon-info,
.wp-project-section-icon-desc,
.wp-project-section-icon-detail {
	height: 20px;
	width: 20px;
}

.wp-project-section-icon-info::before,
.wp-project-section-icon-info::after,
.wp-project-section-icon-desc::before,
.wp-project-section-icon-desc::after,
.wp-project-section-icon-detail::before,
.wp-project-section-icon-detail::after {
	background: currentColor;
	content: "";
	position: absolute;
}

.wp-project-section-icon-info::before {
	border-radius: 50%;
	height: 18px;
	left: 1px;
	top: 1px;
	width: 18px;
}

.wp-project-section-icon-info::after {
	background: #fff;
	border-radius: 999px;
	box-shadow: 0 5px 0 #fff;
	height: 3px;
	left: 8px;
	top: 5px;
	width: 4px;
}

.wp-project-section-icon-desc::before {
	border-radius: 4px;
	height: 18px;
	left: 2px;
	top: 1px;
	width: 16px;
}

.wp-project-section-icon-desc::after {
	background: #fff;
	border-radius: 999px;
	box-shadow: 0 5px 0 #fff, 0 10px 0 #fff;
	height: 2px;
	left: 6px;
	top: 5px;
	width: 8px;
}

.wp-project-section-icon-detail::before {
	border: 2px solid currentColor;
	border-radius: 4px;
	background: transparent;
	height: 16px;
	left: 1px;
	top: 1px;
	width: 18px;
}

.wp-project-section-icon-detail::after {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	background: transparent;
	height: 8px;
	left: 7px;
	top: 4px;
	transform: rotate(45deg);
	width: 5px;
}

.wp-project-section-icon-team {
	height: 20px;
	width: 24px;
}

.wp-project-section-icon-team::before,
.wp-project-section-icon-team::after {
	background: currentColor;
	border-radius: 50%;
	content: "";
	position: absolute;
}

.wp-project-section-icon-team::before {
	box-shadow: -8px 4px 0 -2px currentColor, 8px 4px 0 -2px currentColor;
	height: 8px;
	left: 8px;
	top: 0;
	width: 8px;
}

.wp-project-section-icon-team::after {
	border-radius: 8px 8px 3px 3px;
	box-shadow: -9px 2px 0 -2px currentColor, 9px 2px 0 -2px currentColor;
	height: 10px;
	left: 5px;
	top: 9px;
	width: 14px;
}

.wp-project-section-icon-info,
.wp-project-section-icon-desc,
.wp-project-section-icon-progress,
.wp-project-section-icon-detail,
.wp-project-section-icon-team {
	background: var(--wp-project-primary);
	border-radius: 5px;
	color: #fff;
	height: 20px;
	width: 20px;
}

.wp-project-section-icon-info::before,
.wp-project-section-icon-info::after,
.wp-project-section-icon-desc::before,
.wp-project-section-icon-desc::after,
.wp-project-section-icon-progress::before,
.wp-project-section-icon-progress::after,
.wp-project-section-icon-detail::before,
.wp-project-section-icon-detail::after,
.wp-project-section-icon-team::before,
.wp-project-section-icon-team::after {
	background: #fff;
	border: 0;
	border-radius: 999px;
	box-shadow: none;
	content: "";
	left: auto;
	position: absolute;
	right: auto;
	top: auto;
	transform: none;
}

.wp-project-section-icon-info::before {
	height: 4px;
	left: 8px;
	top: 4px;
	width: 4px;
}

.wp-project-section-icon-info::after {
	height: 8px;
	left: 8px;
	top: 10px;
	width: 4px;
}

.wp-project-section-icon-desc::before,
.wp-project-section-icon-progress::before {
	height: 2px;
	left: 6px;
	top: 5px;
	width: 10px;
}

.wp-project-section-icon-desc::after,
.wp-project-section-icon-progress::after {
	height: 2px;
	left: 6px;
	top: 10px;
	width: 10px;
}

.wp-project-section-icon-desc::after {
	box-shadow: 0 5px 0 #fff;
}

.wp-project-section-icon-progress::before {
	box-shadow: 0 5px 0 #fff, 0 10px 0 #fff;
}

.wp-project-section-icon-progress::after {
	height: 2px;
	left: 3px;
	top: 5px;
	width: 2px;
	box-shadow: 0 5px 0 #fff, 0 10px 0 #fff;
}

.wp-project-section-icon-detail::before {
	background: transparent;
	border: 2px solid #fff;
	border-radius: 4px;
	height: 12px;
	left: 4px;
	top: 4px;
	width: 12px;
}

.wp-project-section-icon-detail::after {
	background: transparent;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	height: 7px;
	left: 8px;
	top: 5px;
	transform: rotate(45deg);
	width: 4px;
}

.wp-project-section-icon-team::before {
	height: 6px;
	left: 7px;
	top: 4px;
	width: 6px;
	box-shadow: -5px 2px 0 -1px #fff, 5px 2px 0 -1px #fff;
}

.wp-project-section-icon-team::after {
	border-radius: 7px 7px 3px 3px;
	height: 7px;
	left: 4px;
	top: 11px;
	width: 12px;
	box-shadow: -5px 1px 0 -2px #fff, 5px 1px 0 -2px #fff;
}

.wp-project-progress-ring-wrap {
	display: flex;
	justify-content: center;
	margin: 4px 0 18px;
}

.wp-project-progress-ring {
	align-items: center;
	background: conic-gradient(var(--wp-project-primary) 0 var(--wp-project-progress-value, 0%), #e6e9ef var(--wp-project-progress-value, 0%) 100%);
	border-radius: 50%;
	display: flex;
	height: 118px;
	justify-content: center;
	position: relative;
	width: 118px;
}

.wp-project-progress-ring::before {
	background: #fff;
	border-radius: 50%;
	content: "";
	inset: 17px;
	position: absolute;
}

.wp-project-progress-ring-content {
	position: relative;
	text-align: center;
	z-index: 1;
}

.wp-project-progress-ring-content strong {
	color: var(--wp-project-primary);
	display: block;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.1;
}

.wp-project-progress-ring-content span {
	color: #6b7280;
	display: block;
	font-size: 12px;
	margin-top: 3px;
}

.wp-project-progress-task-list {
	display: grid;
	gap: 16px;
}

.wp-project-progress-task-head {
	align-items: flex-start;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-bottom: 8px;
}

.wp-project-progress-task-main {
	min-width: 0;
}

.wp-project-progress-task-name {
	color: #111827;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.wp-project-progress-task-date {
	color: #7b8794;
	font-size: 12px;
	margin-top: 3px;
}

.wp-project-progress-task-date span {
	padding: 0 4px;
}

.wp-project-task-status-pill {
	border-radius: 999px;
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	padding: 5px 10px;
}

.wp-project-task-status-pill-completed {
	background: rgba(44, 195, 111, 0.14);
	color: var(--wp-project-completed);
}

.wp-project-task-status-pill-ongoing {
	background: rgba(0, 113, 227, 0.12);
	color: var(--wp-project-ongoing);
}

.wp-project-task-status-pill-pending {
	background: rgba(255, 149, 0, 0.14);
	color: var(--wp-project-pending);
}

.wp-project-progress-task-percent {
	align-items: center;
	display: flex;
	font-size: 12px;
	justify-content: space-between;
	margin-bottom: 5px;
}

.wp-project-progress-task-percent span {
	color: #111827;
}

.wp-project-progress-task-percent strong {
	color: var(--wp-project-ongoing);
	font-size: 12px;
	font-weight: 700;
}

.wp-project-progress-task-completed .wp-project-progress-task-percent strong {
	color: var(--wp-project-completed);
}

.wp-project-progress-task-pending .wp-project-progress-task-percent strong {
	color: var(--wp-project-pending);
}

.wp-project-detail-content {
	color: #333;
	font-size: 13px;
	line-height: 1.65;
}

.wp-project-detail-content > *:first-child {
	margin-top: 0;
}

.wp-project-detail-content > *:last-child {
	margin-bottom: 0;
}

.wp-project-detail-content p {
	margin: 0 0 12px;
}

.wp-project-detail-content ul,
.wp-project-detail-content ol {
	margin: 10px 0 10px 20px;
	padding-left: 18px;
}

.wp-project-detail-content li {
	margin: 4px 0;
}

.wp-project-detail-content h1,
.wp-project-detail-content h2,
.wp-project-detail-content h3,
.wp-project-detail-content h4,
.wp-project-detail-content h5,
.wp-project-detail-content h6 {
	color: #111827;
	font-weight: 700;
	line-height: 1.35;
	margin: 20px 0 10px;
}

.wp-project-detail-content h1 {
	font-size: 24px;
}

.wp-project-detail-content h2 {
	font-size: 21px;
}

.wp-project-detail-content h3 {
	font-size: 18px;
}

.wp-project-detail-content h4 {
	font-size: 16px;
}

.wp-project-detail-content h5,
.wp-project-detail-content h6 {
	font-size: 14px;
}

.wp-project-detail-content img,
.wp-project-detail-content video,
.wp-project-detail-content iframe {
	max-width: 100%;
}

.wp-project-detail-content img {
	height: auto;
}

.wp-project-detail-content figure {
	margin: 16px 0;
	max-width: 100%;
}

.wp-project-detail-content figcaption {
	color: #6b7280;
	font-size: 12px;
	line-height: 1.6;
	margin-top: 8px;
	text-align: center;
}

.wp-project-detail-content .aligncenter {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.wp-project-detail-content .alignleft {
	float: left;
	margin: 6px 18px 12px 0;
}

.wp-project-detail-content .alignright {
	float: right;
	margin: 6px 0 12px 18px;
}

.wp-project-detail-content .alignwide,
.wp-project-detail-content .alignfull {
	max-width: 100%;
	width: 100%;
}

.wp-project-detail-content .has-text-align-center {
	text-align: center;
}

.wp-project-detail-content .has-text-align-right {
	text-align: right;
}

.wp-project-detail-content .has-text-align-left {
	text-align: left;
}

.wp-project-detail-content .wp-block-image img {
	display: block;
}

.wp-project-detail-content .wp-block-image.aligncenter img,
.wp-project-detail-content .wp-block-image .aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.wp-project-detail-content .wp-block-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	margin: 16px 0;
	padding: 0;
}

.wp-project-detail-content .wp-block-gallery figure {
	margin: 0;
}

.wp-project-detail-content .wp-block-columns {
	display: flex;
	gap: 20px;
	margin: 18px 0;
}

.wp-project-detail-content .wp-block-column {
	flex: 1 1 0;
	min-width: 0;
}

.wp-project-detail-content .wp-block-media-text {
	align-items: center;
	display: grid;
	gap: 20px;
	grid-template-columns: 50% 1fr;
	margin: 18px 0;
}

.wp-project-detail-content .wp-block-media-text.has-media-on-the-right {
	grid-template-columns: 1fr 50%;
}

.wp-project-detail-content .wp-block-media-text__media,
.wp-project-detail-content .wp-block-media-text__content {
	min-width: 0;
}

.wp-project-detail-content .wp-block-media-text__media img {
	width: 100%;
}

.wp-project-detail-content blockquote,
.wp-project-detail-content .wp-block-quote {
	border-left: 4px solid var(--wp-project-primary);
	color: #374151;
	margin: 16px 0;
	padding: 10px 0 10px 16px;
}

.wp-project-detail-content .wp-block-pullquote {
	border-bottom: 2px solid var(--wp-project-border-color);
	border-top: 2px solid var(--wp-project-border-color);
	margin: 18px 0;
	padding: 18px 0;
	text-align: center;
}

.wp-project-detail-content .wp-block-pullquote blockquote {
	border-left: 0;
	margin: 0;
	padding: 0;
}

.wp-project-detail-content pre,
.wp-project-detail-content .wp-block-code {
	background: #f6f8fa;
	border: 1px solid var(--wp-project-border-color);
	border-radius: 8px;
	color: #111827;
	font-family: Consolas, Monaco, "Courier New", monospace;
	font-size: 12px;
	line-height: 1.6;
	margin: 16px 0;
	overflow-x: auto;
	padding: 12px;
}

.wp-project-detail-content code {
	background: #f6f8fa;
	border-radius: 4px;
	font-family: Consolas, Monaco, "Courier New", monospace;
	font-size: 0.92em;
	padding: 2px 4px;
}

.wp-project-detail-content pre code {
	background: transparent;
	border-radius: 0;
	padding: 0;
}

.wp-project-detail-content .wp-block-separator {
	border: 0;
	border-top: 1px solid var(--wp-project-border-color);
	margin: 22px 0;
}

.wp-project-detail-content .wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 16px 0;
}

.wp-project-detail-content .wp-block-button__link {
	background: var(--wp-project-primary);
	border-radius: 8px;
	color: #fff;
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	padding: 10px 16px;
	text-decoration: none;
}

.wp-project-detail-content .wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	border: 1px solid var(--wp-project-primary);
	color: var(--wp-project-primary);
}

.wp-project-detail-content .wp-block-embed,
.wp-project-detail-content .wp-block-video,
.wp-project-detail-content .wp-block-audio {
	margin: 16px 0;
}

.wp-project-detail-content .wp-block-embed iframe {
	aspect-ratio: 16 / 9;
	height: auto;
	width: 100%;
}

.wp-project-detail-content::after {
	clear: both;
	content: "";
	display: table;
}

.wp-project-detail-content .wp-block-table {
	display: block;
	margin: 16px 0;
	max-width: 100%;
	overflow-x: auto;
	width: 100%;
}

.wp-project-detail-content table {
	background: #fff;
	border: 1px solid var(--wp-project-border-color);
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 13px;
	line-height: 1.55;
	margin: 16px 0;
	max-width: 100%;
	min-width: 720px;
	table-layout: auto;
	width: 100% !important;
}

.wp-project-detail-content .wp-block-table table {
	margin: 0;
}

.wp-project-detail-content table th,
.wp-project-detail-content table td {
	border: 1px solid var(--wp-project-border-color);
	color: #1f2937;
	padding: 10px 12px;
	text-align: left;
	vertical-align: middle;
	white-space: normal;
}

.wp-project-detail-content table th,
.wp-project-detail-content table thead td {
	background: #f3f6f9;
	color: #111827;
	font-weight: 700;
}

.wp-project-detail-content table tbody tr:nth-child(even) td {
	background: #fafafa;
}

.wp-project-detail-content table td p,
.wp-project-detail-content table th p {
	margin: 0;
}

.wp-project-detail-content .wp-block-table figcaption {
	color: #6b7280;
	font-size: 12px;
	margin: 8px 0 0;
	text-align: left;
}

.wp-project-detail-content .wp-block-table.is-style-stripes {
	border-bottom: 0;
}

.wp-project-detail-content .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background: transparent;
}

.wp-project-tab-nav {
	border-bottom: 1px solid var(--wp-project-border-color);
	display: flex;
	margin-bottom: 16px;
}

.wp-project-tab-btn {
	background: transparent;
	border: 0;
	color: var(--wp-project-gray);
	cursor: pointer;
	font-size: 16px;
	padding: 10px 20px;
	transition: color 0.2s;
}

.wp-project-tab-btn.active {
	color: var(--wp-project-primary);
	font-weight: 600;
}

.wp-project-status-ongoing .wp-project-tab-btn.active {
	color: var(--wp-project-ongoing) !important;
}

.wp-project-status-completed .wp-project-tab-btn.active {
	color: var(--wp-project-completed) !important;
}

.wp-project-status-pending .wp-project-tab-btn.active {
	color: var(--wp-project-pending) !important;
}

.wp-project-tab-content {
	color: #333;
	display: none;
	font-size: 14px;
	line-height: 1.65;
}

.wp-project-tab-content.active {
	display: block;
}

.wp-project-tab-content p {
	margin: 0 0 12px;
}

.wp-project-tab-content ul,
.wp-project-tab-content ol {
	margin: 10px 0 10px 20px;
}

.wp-project-member-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.wp-project-member-card {
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--wp-project-border-color);
	border-radius: 8px;
	display: flex;
	gap: 12px;
	padding: 14px;
	text-align: left;
}

.wp-project-member-avatar {
	align-items: center;
	background: linear-gradient(135deg, var(--wp-project-primary), #63a4ff);
	border-radius: 50%;
	color: #fff;
	flex: 0 0 auto;
	display: flex;
	font-size: 20px;
	font-weight: 700;
	height: 56px;
	justify-content: center;
	overflow: hidden;
	width: 56px;
}

.wp-project-member-avatar img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.wp-project-member-body {
	min-width: 0;
}

.wp-project-member-name {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 3px;
}

.wp-project-member-role {
	color: var(--wp-project-primary);
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 6px;
}

.wp-project-member-bio {
	color: #666;
	font-size: 12px;
	line-height: 1.55;
	margin: 0;
}

.wp-project-sub-task {
	background: #fafbfc;
	border-radius: 8px;
	margin-bottom: 10px;
	padding: 12px;
}

.wp-project-sub-task-title {
	align-items: center;
	display: flex;
	font-size: 14px;
	font-weight: 500;
	gap: 12px;
	justify-content: space-between;
	margin-bottom: 6px;
}

.wp-project-sub-task-title span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.wp-project-sub-task-progress {
	height: 6px;
	margin-top: 4px;
}

.wp-project-sub-task-bar {
	background: var(--wp-project-ongoing);
	border-radius: inherit;
	height: 100%;
	transition: width 0.2s ease;
}

.wp-project-task-meta {
	color: #777;
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	gap: 8px 16px;
	margin-bottom: 8px;
}

.wp-project-task-meta strong {
	color: #555;
	font-weight: 700;
}

.wp-project-task-status-badge {
	border-radius: 4px;
	color: #fff;
	flex: 0 0 auto;
	font-size: 12px;
	line-height: 1.2;
	padding: 4px 8px;
}

.wp-project-task-status-badge-pending {
	background: var(--wp-project-pending);
}

.wp-project-task-status-badge-ongoing {
	background: var(--wp-project-ongoing);
}

.wp-project-task-status-badge-completed {
	background: var(--wp-project-completed);
}

.wp-project-sidebar {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
	width: 100%;
}

.wp-project-sidebar > .wp-project-detail-card {
	width: 100%;
}

.wp-project-request-intro {
	color: #6b7280;
	font-size: 13px;
	line-height: 1.55;
	margin: 0 0 14px;
}

.wp-project-request-form {
	display: grid;
	gap: 10px;
}

.wp-project-request-form input,
.wp-project-request-form textarea {
	background: #fff;
	border: 1px solid var(--wp-project-border-color);
	border-radius: 8px;
	box-shadow: none;
	color: #1d1d1f;
	font: inherit;
	font-size: 13px;
	line-height: 1.4;
	padding: 10px 12px;
	width: 100%;
}

.wp-project-request-form textarea {
	min-height: 92px;
	resize: vertical;
}

.wp-project-request-form input::placeholder,
.wp-project-request-form textarea::placeholder {
	color: #9ca3af;
}

.wp-project-request-form input:focus,
.wp-project-request-form textarea:focus {
	border-color: var(--wp-project-primary);
	outline: 0;
	box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.12);
}

.wp-project-request-actions {
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.wp-project-request-submit,
.wp-project-request-contact {
	align-items: center;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	min-height: 42px;
	padding: 10px 14px;
	text-decoration: none;
	width: 100%;
}

.wp-project-request-submit {
	background: #1f5fff;
	border: 1px solid #1f5fff;
	color: #fff;
}

.wp-project-request-contact {
	background: #fff;
	border: 1px solid #1f5fff;
	color: #1f5fff;
}

.wp-project-request-submit:hover,
.wp-project-request-submit:focus {
	background: #004ed1;
	border-color: #004ed1;
	color: #fff;
}

.wp-project-request-contact:hover,
.wp-project-request-contact:focus {
	background: rgba(31, 95, 255, 0.08);
	color: #004ed1;
}

.wp-project-request-contact[aria-disabled="true"] {
	cursor: default;
	opacity: 0.55;
}

.wp-project-request-notice {
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 8px;
	color: #9a3412;
	margin: 0 0 12px;
	padding: 10px 12px;
	text-align: left;
}

.wp-project-request-notice-success {
	background: #ecfdf3;
	border-color: #bbf7d0;
	color: #166534;
}

.wp-project-request-modal {
	align-items: center;
	background: rgba(15, 23, 42, 0.55);
	display: none;
	inset: 0;
	justify-content: center;
	padding: 20px;
	position: fixed;
	z-index: 9999;
}

.wp-project-request-modal.is-open {
	display: flex;
}

.wp-project-request-modal-dialog {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.28);
	max-width: 420px;
	padding: 28px 24px 24px;
	position: relative;
	width: min(420px, 100%);
	z-index: 1;
}

.wp-project-request-modal-title {
	color: #111827;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 10px;
	text-align: center;
}

.wp-project-request-modal-text {
	color: #4b5563;
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
	text-align: center;
}

.wp-project-request-modal-button {
	align-items: center;
	background: #1f5fff;
	border: 0;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	margin: 20px auto 0;
	min-height: 42px;
	padding: 10px 18px;
}

.wp-project-request-modal-button:hover,
.wp-project-request-modal-button:focus {
	background: #004ed1;
	color: #fff;
}

.wp-project-sidebar-description {
	color: #555;
	font-size: 13px;
	line-height: 1.55;
	margin: 0;
	overflow-wrap: anywhere;
}

.wp-project-sidebar-member-list {
	display: grid;
	gap: 14px;
}

.wp-project-sidebar-member {
	align-items: flex-start;
	display: flex;
	gap: 12px;
	min-width: 0;
}

.wp-project-sidebar-member-avatar {
	background: #e7f0ff;
	color: var(--wp-project-ongoing);
	font-size: 16px;
	height: 44px;
	width: 44px;
}

.wp-project-sidebar-member:nth-child(2n) .wp-project-sidebar-member-avatar {
	background: #d9f8f5;
	color: #25bdb3;
}

.wp-project-sidebar-member:nth-child(3n) .wp-project-sidebar-member-avatar {
	background: #dff7e6;
	color: var(--wp-project-completed);
}

.wp-project-sidebar-member:nth-child(4n) .wp-project-sidebar-member-avatar {
	background: #fff0df;
	color: var(--wp-project-pending);
}

.wp-project-sidebar-member-body {
	min-width: 0;
}

.wp-project-sidebar-member-name {
	color: #111827;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.wp-project-sidebar-member-role {
	color: #6b7280;
	font-size: 13px;
	line-height: 1.35;
	margin-top: 2px;
	overflow-wrap: anywhere;
}

.wp-project-sidebar-member-bio {
	color: #777;
	font-size: 12px;
	line-height: 1.5;
	margin: 5px 0 0;
	overflow-wrap: anywhere;
}

.wp-project-sidebar-info-item {
	align-items: center;
	border-bottom: 1px solid var(--wp-project-light-gray);
	display: flex;
	font-size: 13px;
	gap: 16px;
	justify-content: space-between;
	padding: 7px 0;
}

.wp-project-sidebar-info-item:last-child {
	border-bottom: 0;
}

.wp-project-sidebar-label {
	color: var(--wp-project-gray);
	font-weight: 700;
}

@media (max-width: 1200px) {
	.wp-project-list-stats {
		grid-template-columns: 1fr;
	}

	.wp-project-grid-4 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.wp-project-container {
		padding: 8px 0 12px;
	}

	.wp-project-list-stats {
		gap: 8px;
		grid-template-columns: 1fr;
		margin-bottom: 12px;
	}

	.wp-project-list-overview-card {
		border-radius: 12px;
		padding: 12px;
	}

	.wp-project-list-overview-head {
		flex-direction: row;
		align-items: stretch;
	}

	.wp-project-list-overview-title {
		font-size: 18px;
	}

	.wp-project-list-overview-title strong {
		font-size: 20px;
	}

	.wp-project-list-overview-highlight {
		flex: 0 0 120px;
		min-width: 120px;
	}

	.wp-project-list-mini-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wp-project-list-chart-card {
		border-radius: 12px;
		padding: 12px;
	}

	.wp-project-list-donut-shell {
		flex: 0 0 132px;
	}

	.wp-project-list-donut {
		height: 132px;
		width: 132px;
	}

	.wp-project-list-donut-wrap {
		height: 132px;
		width: 132px;
	}

	.wp-project-list-donut-center strong {
		font-size: 18px;
	}

	.wp-project-list-donut-center {
		height: 58px;
		width: 58px;
	}

	.wp-project-list-chart-legend {
		gap: 5px 6px;
	}

	.wp-project-list-chart-legend-text strong {
		font-size: 10px;
	}

	.wp-project-list-chart-legend-text span {
		font-size: 9px;
	}

	.wp-project-list-heading {
		align-items: stretch;
		flex-direction: column;
		gap: 10px;
	}

	.wp-project-search {
		flex: 0 1 auto;
		width: 100%;
	}

	.wp-project-grid,
	.wp-project-grid-4,
	.wp-project-grid-3,
	.wp-project-grid-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wp-project-detail-wrapper {
		gap: 12px;
		grid-template-columns: 1fr;
	}

	.wp-project-main-column {
		display: contents;
	}

	.wp-project-sidebar {
		display: contents;
	}

	.wp-project-back-area {
		display: flex;
		order: 1;
	}

	.wp-project-overview-card {
		order: 2;
	}

	.wp-project-sidebar-desc-card {
		order: 3;
	}

	.wp-project-back-btn-desktop {
		display: none;
	}

	.wp-project-back-btn-mobile {
		background: #fff;
		border-color: var(--wp-project-border-color);
		box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
		color: #6a1b9a;
		display: inline-flex;
	}

	.wp-project-back-btn-mobile:hover,
	.wp-project-back-btn-mobile:focus {
		background: #fff;
		border-color: #d8c2ef;
		color: #6a1b9a;
	}

	.wp-project-progress-card {
		order: 4;
	}

	.wp-project-sidebar-team-card {
		order: 5;
	}

	.wp-project-content-card {
		order: 6;
	}

	.wp-project-request-card {
		order: 7;
	}

	.wp-project-request-modal {
		padding: 16px;
	}

	.wp-project-request-modal-dialog {
		max-width: 360px;
		padding: 24px 18px 20px;
	}

	.wp-project-detail-card {
		border-radius: 8px;
		padding: 14px;
	}

	.wp-project-detail-wrap .wp-project-module-title,
	.wp-project-detail-wrap .wp-project-sidebar-title {
		font-size: 16px !important;
		line-height: 1.35 !important;
	}

	.wp-project-info-grid {
		column-gap: 14px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 0;
	}

	.wp-project-info-item {
		flex-direction: column;
		gap: 4px;
		min-width: 0;
	}

	.wp-project-info-label {
		flex-basis: auto;
		width: auto;
	}

	.wp-project-extra-field-item {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.wp-project-extra-field-list {
		column-gap: 14px;
	}

	.wp-project-filter-row {
		align-items: flex-start;
		margin-bottom: 8px;
	}

	.wp-project-tab-nav {
		overflow-x: auto;
	}

	.wp-project-tab-btn {
		flex: 0 0 auto;
		font-size: 14px;
		padding: 10px 14px;
	}

	.wp-project-detail-btn {
		font-size: 14px;
		min-height: 42px;
		padding: 12px;
	}

	.wp-project-progress-ring {
		height: 108px;
		width: 108px;
	}

	.wp-project-progress-ring::before {
		inset: 16px;
	}

	.wp-project-progress-ring-content strong {
		font-size: 22px;
	}

	.wp-project-progress-task-list {
		gap: 14px;
	}

	.wp-project-progress-task-name {
		font-size: 14px;
	}

	.wp-project-detail-content .alignleft,
	.wp-project-detail-content .alignright {
		float: none;
		margin: 12px 0;
	}

	.wp-project-detail-content .wp-block-columns,
	.wp-project-detail-content .wp-block-media-text,
	.wp-project-detail-content .wp-block-media-text.has-media-on-the-right {
		display: block;
	}

	.wp-project-detail-content .wp-block-column,
	.wp-project-detail-content .wp-block-media-text__content {
		margin-top: 12px;
	}

	.wp-project-detail-content .wp-block-table {
		margin: 12px 0;
	}

	.wp-project-detail-content table {
		font-size: 12px;
		min-width: 680px;
	}

	.wp-project-detail-content table th,
	.wp-project-detail-content table td {
		padding: 8px 10px;
	}
}

@media (max-width: 520px) {
	.wp-project-list-overview-head,
	.wp-project-list-chart-head,
	.wp-project-list-chart-wrap {
		flex-direction: column;
		align-items: stretch;
	}

	.wp-project-list-chart-grid {
		gap: 8px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wp-project-list-chart-box {
		align-items: stretch;
		display: block;
	}

	.wp-project-list-chart-box-type .wp-project-list-donut-shell {
		margin-bottom: 6px;
	}

	.wp-project-list-chart-box-type .wp-project-list-chart-legend-bottom {
		display: grid;
		gap: 4px 6px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}

	.wp-project-list-chart-box-type .wp-project-list-chart-legend-item {
		flex: initial;
		width: 100%;
	}

	.wp-project-list-overview-highlight,
	.wp-project-list-donut-shell {
		flex-basis: auto;
		min-width: 0;
		width: 100%;
	}

	.wp-project-list-donut-shell {
		justify-content: center;
	}

	.wp-project-list-donut-wrap {
		height: 136px;
		width: 136px;
	}

	.wp-project-list-donut {
		height: 136px;
		width: 136px;
	}

	.wp-project-list-donut-center {
		height: 62px;
		width: 62px;
	}

	.wp-project-list-donut-center strong {
		font-size: 18px;
	}

	.wp-project-list-donut-center em {
		font-size: 10px;
	}

	.wp-project-list-chart-legend-bottom {
		gap: 4px 6px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wp-project-list-chart-legend-text strong {
		font-size: 9px;
	}

	.wp-project-list-chart-legend-text span {
		font-size: 8px;
	}

	.wp-project-list-mini-stats,
	.wp-project-list-chart-legend,
	.wp-project-grid,
	.wp-project-grid-4,
	.wp-project-grid-3,
	.wp-project-grid-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wp-project-filter-row,
	.wp-project-sub-task-title {
		flex-direction: column;
		align-items: stretch;
	}

	.wp-project-filter-label {
		width: auto;
		flex-basis: auto;
	}

	.wp-project-grid,
	.wp-project-grid-4,
	.wp-project-grid-3,
	.wp-project-grid-2 {
		grid-template-columns: 1fr;
	}
}

/* Project list custom overrides */
.wp-project-list-text {
	display: none !important;
}

.wp-project-list-heading {
	margin: 0 !important;
	padding: 0 !important;
	height: 0 !important;
	overflow: visible !important;
	display: block !important;
	position: relative;
	z-index: 1;
}

.wp-project-search {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 300px !important;
	flex: 0 0 300px !important;
	margin: 0 !important;
	z-index: 1;
}

.wp-project-search-input {
	border: 1px solid #d9d9d9 !important;
	border-radius: 6px !important;
	box-shadow: none !important;
}

.wp-project-search-input:focus {
	border-color: #1677ff !important;
}

.wp-project-search-btn {
	background: #1677ff !important;
	border: none !important;
	border-radius: 6px !important;
	color: #fff !important;
	font-weight: 500 !important;
}

.wp-project-search-btn:hover {
	background: #4096ff !important;
}

.wp-project-filter-wrapper {
	padding-right: 330px !important;
	background: #fff !important;
	border: 1px solid #e5e7eb !important;
	border-radius: 8px !important;
	box-shadow: none !important;
}

.wp-project-list-overview-card,
.wp-project-list-mini-stat-card,
.wp-project-list-overview-highlight,
.wp-project-list-chart-card {
	background: #fff !important;
	border: 1px solid #e5e7eb !important;
	box-shadow: none !important;
}

.wp-project-list-overview-kicker {
	background: #eef4ff !important;
	color: #1677ff !important;
	border: none !important;
}

.wp-project-list-overview-title strong,
.wp-project-list-overview-highlight strong {
	color: #1677ff !important;
}

.wp-project-list-mini-stat-primary strong {
	color: #1677ff !important;
}

.wp-project-list-mini-stat-progress strong {
	color: #722ed1 !important;
}

.wp-project-list-mini-stat-ongoing strong,
.wp-project-list-mini-stat-ongoing em span {
	color: #1677ff !important;
}

.wp-project-list-mini-stat-completed strong,
.wp-project-list-mini-stat-completed em span {
	color: #52c41a !important;
}

.wp-project-list-mini-stat-pending strong,
.wp-project-list-mini-stat-pending em span {
	color: #fa8c16 !important;
}

.wp-project-list-mini-stat-card > span:first-child {
	display: inline-flex !important;
	align-items: center !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #4b5563 !important;
}

.wp-project-list-mini-stat-card > span:first-child::before {
	font-family: "FontAwesome";
	font-size: 20px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 32px !important;
	height: 32px !important;
	margin-right: 10px !important;
	border-radius: 8px !important;
}

.wp-project-list-mini-stat-card:nth-child(1) > span:first-child::before {
	content: "\f252";
	color: #1677ff;
	background-color: #e6f4ff;
}

.wp-project-list-mini-stat-card:nth-child(2) > span:first-child::before {
	content: "\f058";
	color: #52c41a;
	background-color: #f6ffed;
}

.wp-project-list-mini-stat-card:nth-child(3) > span:first-child::before {
	content: "\f017";
	color: #fa8c16;
	background-color: #fff7e6;
}

.wp-project-list-mini-stat-card:nth-child(4) > span:first-child::before {
	content: "\f0b1";
	color: #1677ff;
	background-color: #e6f4ff;
}

.wp-project-list-mini-stat-card:nth-child(5) > span:first-child::before {
	content: "\f201";
	color: #722ed1;
	background-color: #f9f0ff;
}

.wp-project-list-mini-stat-card:nth-child(6) > span:first-child::before {
	content: "\f200";
	color: #52c41a;
	background-color: #f6ffed;
}

.wp-project-list-overview-title {
	color: #111827 !important;
	display: flex !important;
	align-items: center !important;
}

.wp-project-list-overview-title strong {
	color: #111827 !important;
	margin: 0 6px !important;
}

.wp-project-list-overview-title::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 18px;
	background: #111827;
	border-radius: 2px;
	margin-right: 10px;
}

.wp-project-list-wrap {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.wp-project-container {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.wp-project-list-stats {
	margin-top: 0 !important;
	align-items: stretch !important;
}

.wp-project-grid {
	margin-bottom: -20px !important;
}

.wp-project-list-mini-stat-ongoing strong,
.wp-project-list-mini-stat-completed:nth-child(2) strong,
.wp-project-list-mini-stat-pending strong {
	font-size: 0 !important;
}

.wp-project-list-mini-stat-ongoing strong span,
.wp-project-list-mini-stat-completed:nth-child(2) strong span,
.wp-project-list-mini-stat-pending strong span {
	font-size: 18px !important;
}

.wp-project-list-mini-stat-card em {
	display: none !important;
}

.wp-project-list-overview-card,
.wp-project-list-chart-card {
	padding-bottom: 12px !important;
	display: block !important;
}

.wp-project-list-chart-box {
	min-height: auto !important;
}

.wp-project-list-mini-stat-card {
	padding: 8px 12px !important;
}

.wp-project-list-overview-highlight,
.wp-project-list-chart-total {
	display: none !important;
}

.wp-project-list-mini-stats {
	margin-top: 0 !important;
}

.wp-project-list-chart-wrap {
	margin-top: -18px !important;
}

.wp-project-list-chart-box .wp-project-list-donut-shell {
	margin-bottom: 10px !important;
}

@media (max-width: 768px) {
	.wp-project-list-heading {
		height: auto !important;
		position: static !important;
		margin-bottom: 12px !important;
	}

	.wp-project-search {
		position: static !important;
		width: 100% !important;
		flex: auto !important;
	}

	.wp-project-filter-wrapper {
		padding-right: 16px !important;
	}

	.wp-project-list-chart-box .wp-project-list-donut-shell {
		margin-bottom: 6px !important;
	}
}

/* Project detail custom overrides */
.wp-project-detail-wrap .wp-project-progress-ring {
	width: 90px !important;
	height: 90px !important;
	margin: 0 auto !important;
}

.wp-project-detail-wrap .wp-project-progress-ring::before {
	inset: 5px !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.wp-project-detail-wrap .wp-project-progress-ring-content strong {
	font-size: 18px !important;
	font-weight: 700 !important;
}

.wp-project-detail-wrap .wp-project-progress-ring-content span {
	font-size: 10px !important;
	color: #999 !important;
}

.wp-project-detail-wrap .wp-project-progress-task {
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px dashed #edf0f2;
}

.wp-project-detail-wrap .wp-project-progress-task:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.wp-project-detail-wrap .wp-project-progress-task-head {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	margin-bottom: 8px !important;
}

.wp-project-detail-wrap .wp-project-progress-task-name {
	font-size: 13px !important;
	font-weight: 600 !important;
	color: #333 !important;
	flex: 1 1 auto !important;
	padding-right: 10px;
	overflow-wrap: anywhere;
}

.wp-project-detail-wrap .wp-project-task-status-pill {
	padding: 2px 6px !important;
	font-size: 10px !important;
	border-radius: 4px !important;
	flex: 0 0 auto !important;
}

.wp-project-detail-wrap .wp-project-progress-task-meta-row {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 10px !important;
}

.wp-project-detail-wrap .wp-project-progress-task-date {
	font-size: 11px !important;
	color: #94a3b8 !important;
	flex: 0 0 auto !important;
	white-space: nowrap !important;
}

.wp-project-detail-wrap .wp-project-progress-wrap {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	flex: 1 1 auto !important;
	min-width: 0 !important;
}

.wp-project-detail-wrap .wp-project-progress-task .wp-project-progress {
	flex: 1 1 auto !important;
	height: 4px !important;
	margin: 0 !important;
	background: #f1f5f9 !important;
}

.wp-project-detail-wrap .wp-project-progress-task-percent-value {
	font-size: 11px !important;
	font-weight: 700 !important;
	flex: 0 0 auto !important;
	min-width: 32px !important;
	text-align: right !important;
}

.wp-project-progress-task-ongoing .wp-project-progress-task-percent-value {
	color: var(--wp-project-ongoing);
}

.wp-project-progress-task-completed .wp-project-progress-task-percent-value {
	color: var(--wp-project-completed);
}

.wp-project-progress-task-pending .wp-project-progress-task-percent-value {
	color: var(--wp-project-pending);
}

@media (max-width: 600px) {
	.wp-project-detail-wrap .wp-project-progress-ring {
		width: 80px !important;
		height: 80px !important;
	}

	.wp-project-detail-wrap .wp-project-progress-task-date {
		font-size: 10px !important;
		letter-spacing: -0.2px;
	}

	.wp-project-detail-wrap .wp-project-progress-task-meta-row {
		gap: 6px !important;
	}

	.wp-project-detail-wrap .wp-project-progress-wrap {
		gap: 5px !important;
	}
}

@media (max-width: 360px) {
	.wp-project-detail-wrap .wp-project-progress-task-meta-row {
		flex-wrap: wrap !important;
	}

	.wp-project-detail-wrap .wp-project-progress-task-date {
		width: 100% !important;
		margin-bottom: 4px;
	}
}

.wp-project-manage-wrap {
	background: #f6f8fb;
	min-height: 720px;
	padding: 16px 0 28px;
}

.wp-project-manage-head {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 14px;
}

.wp-project-manage-kicker {
	color: #2563eb;
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 4px;
}

.wp-project-manage-head h2 {
	color: #111827;
	font-size: 28px;
	line-height: 1.2;
	margin: 0;
}

.wp-project-manage-layout {
	align-items: start;
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
}

.wp-project-manage-list,
.wp-project-manage-editor {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
	min-width: 0;
}

.wp-project-manage-list {
	padding: 14px;
}

.wp-project-manage-list-title {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
}

.wp-project-manage-list-title strong {
	color: #111827;
	font-size: 15px;
}

.wp-project-manage-list-title span {
	background: #eef2ff;
	border-radius: 999px;
	color: #2563eb;
	font-size: 12px;
	font-weight: 800;
	min-width: 28px;
	padding: 4px 8px;
	text-align: center;
}

.wp-project-manage-items {
	display: grid;
	gap: 8px;
}

.wp-project-manage-item {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	color: #1f2937;
	cursor: pointer;
	display: grid;
	gap: 5px;
	padding: 11px 12px;
	position: relative;
	text-align: left;
	width: 100%;
}

.wp-project-manage-item:hover,
.wp-project-manage-item.is-active {
	border-color: #2563eb;
	box-shadow: inset 3px 0 0 #2563eb;
}

.wp-project-manage-item strong {
	font-size: 14px;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.wp-project-manage-item span,
.wp-project-manage-item em {
	color: #64748b;
	font-size: 12px;
	font-style: normal;
}

.wp-project-manage-editor {
	padding: 18px;
}

.wp-project-manage-form-head,
.wp-project-manage-panel-head {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-bottom: 16px;
}

.wp-project-manage-form-head span {
	color: #64748b;
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 4px;
}

.wp-project-manage-form-head h3 {
	color: #111827;
	font-size: 22px;
	line-height: 1.25;
	margin: 0;
	overflow-wrap: anywhere;
}

.wp-project-manage-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.wp-project-manage-primary,
.wp-project-manage-secondary {
	align-items: center;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	line-height: 1.2;
	min-height: 38px;
	padding: 9px 14px;
	text-decoration: none;
}

.wp-project-manage-primary {
	background: #2563eb;
	border: 1px solid #2563eb;
	color: #fff;
}

.wp-project-manage-secondary {
	background: #fff;
	border: 1px solid #cbd5e1;
	color: #334155;
}

.wp-project-manage-status {
	background: #ecfdf5;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
	color: #166534;
	font-size: 14px;
	margin-bottom: 14px;
	padding: 10px 12px;
}

.wp-project-manage-status.is-error {
	background: #fef2f2;
	border-color: #fecaca;
	color: #b91c1c;
}

.wp-project-manage-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wp-project-manage-grid label,
.wp-project-manage-progress-block label {
	display: grid;
	gap: 6px;
}

.wp-project-manage-grid span,
.wp-project-manage-progress-block span,
.wp-project-manage-panel h4 {
	color: #334155;
	font-size: 13px;
	font-weight: 800;
}

.wp-project-manage-grid input,
.wp-project-manage-grid select,
.wp-project-manage-grid textarea,
.wp-project-manage-task input,
.wp-project-manage-task select {
	background: #fff;
	border: 1px solid #dbe2ea;
	border-radius: 8px;
	color: #111827;
	font-size: 14px;
	min-height: 40px;
	padding: 9px 10px;
	width: 100%;
}

.wp-project-manage-grid textarea {
	line-height: 1.6;
	resize: vertical;
}

.wp-project-manage-wide {
	grid-column: 1 / -1;
}

.wp-project-manage-progress-block {
	align-items: center;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	display: grid;
	gap: 16px;
	grid-template-columns: minmax(0, 1fr) 72px;
	margin: 14px 0;
	padding: 14px;
}

.wp-project-manage-progress-block strong {
	color: #2563eb;
	font-size: 24px;
	text-align: right;
}

.wp-project-manage-panel {
	border-top: 1px solid #eef2f7;
	margin-top: 16px;
	padding-top: 16px;
}

.wp-project-manage-panel h4 {
	font-size: 16px;
	margin: 0 0 12px;
}

.wp-project-manage-panel-head h4 {
	margin: 0;
}

.wp-project-manage-tasks {
	display: grid;
	gap: 10px;
}

.wp-project-manage-task {
	align-items: center;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	display: grid;
	gap: 8px;
	grid-template-columns: minmax(180px, 1.5fr) minmax(130px, 1fr) minmax(130px, 1fr) 92px minmax(110px, 0.8fr) 68px;
	padding: 10px;
}

.wp-project-manage-task button {
	background: #fff;
	border: 1px solid #fecaca;
	border-radius: 8px;
	color: #b91c1c;
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
	min-height: 38px;
}

.wp-project-manage-members {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wp-project-manage-members label {
	align-items: center;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	display: flex;
	gap: 8px;
	min-width: 0;
	padding: 10px;
}

.wp-project-manage-members span {
	color: #334155;
	font-size: 13px;
	overflow-wrap: anywhere;
}

.wp-project-manage-empty {
	color: #64748b;
	font-size: 14px;
	margin: 12px 0 0;
}

@media (max-width: 1100px) {
	.wp-project-manage-layout {
		grid-template-columns: 1fr;
	}

	.wp-project-manage-items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wp-project-manage-task {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.wp-project-manage-head,
	.wp-project-manage-form-head,
	.wp-project-manage-panel-head {
		align-items: stretch;
		flex-direction: column;
	}

	.wp-project-manage-actions {
		justify-content: stretch;
	}

	.wp-project-manage-actions > *,
	.wp-project-manage-head > button {
		width: 100%;
	}

	.wp-project-manage-grid,
	.wp-project-manage-items,
	.wp-project-manage-task,
	.wp-project-manage-members {
		grid-template-columns: 1fr;
	}

	.wp-project-manage-editor {
		padding: 14px;
	}
}
