/*
* Theme Name: Breezycv - Resume / CV / vCard WordPress Theme
* Author: lmpixels
* Author URL: http://themeforest.net/user/lmpixels
* Version: 1.6.0
*/

.projects-panel {
	margin-top: 24px;
}

.projects-intro {
	margin: 0 0 20px;
	color: #b8b8b8;
}

.projects-count {
	margin: -10px 0 18px;
	font-weight: 600;
	color: #d2d5da;
}

.projects-total-value {
	margin: -12px 0 8px;
	font-weight: 600;
	color: #e0e2e6;
}

.projects-loading,
.projects-error {
	padding: 16px 18px;
	border: 1px solid #2f3135;
	border-radius: 10px;
	background: #1a1c20;
}

.projects-accordion {
	display: block;
	border-top: 1px solid #2f3135;
}

.project-accordion-item {
	border-bottom: 1px solid #2f3135;
}

.project-accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: transparent;
	color: #f5f5f5;
	border: 0;
	padding: 16px 4px;
	text-align: left;
	cursor: pointer;
	border-radius: 6px;
	transition: color 0.2s ease;
}

.project-accordion-trigger:hover,
.project-accordion-trigger:focus {
	color: #0ba376;
}

.project-title-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.project-title {
	margin: 0;
	font-size: 16px;
	line-height: 1.35;
}

.project-year {
	color: #9ea4ad;
	font-size: 12px;
	white-space: nowrap;
}

.project-toggle-icon {
	display: inline-block;
	font-size: 16px;
	line-height: 1;
	color: #9ea4ad;
	transition: transform 0.2s ease;
}

.project-accordion-item.is-open .project-toggle-icon {
	transform: rotate(90deg);
}

.project-accordion-panel {
	padding: 0 0 14px 26px;
}

.project-details {
	margin-top: 6px;
}

.project-field {
	padding: 10px 0;
	border-top: 1px dashed #2f3135;
}

.project-field h5 {
	margin: 0 0 7px;
	font-size: 13px;
	font-weight: 700;
	color: #d2d5da;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.project-field p {
	margin: 0;
}

.project-detail-list {
	margin: 0;
	padding-left: 18px;
}

.project-detail-list li {
	margin-bottom: 6px;
}

@media only screen and (max-width: 767px) {
	.project-accordion-trigger {
		padding: 14px 2px;
	}

	.project-title-wrap {
		gap: 8px;
	}

	.project-accordion-panel {
		padding: 0 0 14px 20px;
	}
}