/* Hosting Hustler - portfolio archive & single styles */

.hh-portfolio-section {
	padding: 70px 0;
}

.hh-portfolio-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}

.hh-portfolio-header h1 {
	font-size: 32px;
	font-weight: 700;
	color: #0b1f4d;
	margin: 0 0 12px;
}

.hh-portfolio-header p {
	color: #62708f;
	font-size: 15.5px;
	line-height: 1.6;
	margin: 0;
}

.hh-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.hh-portfolio-card {
	background: #fff;
	border: 1px solid #eef1f8;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(11, 31, 77, 0.05);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hh-portfolio-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(11, 31, 77, 0.1);
}

.hh-portfolio-thumb {
	background: linear-gradient(135deg, #1857e8, #0b3fc7);
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.85);
	font-size: 34px;
}

.hh-portfolio-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hh-portfolio-body {
	padding: 24px 22px;
}

.hh-portfolio-body h2 {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 10px;
}

.hh-portfolio-body h2 a {
	color: #0b1f4d;
	text-decoration: none;
}

.hh-portfolio-body h2 a:hover {
	color: #1857e8;
}

.hh-portfolio-body p {
	font-size: 14px;
	color: #62708f;
	line-height: 1.6;
	margin: 0 0 16px;
}

.hh-portfolio-link {
	font-size: 13.5px;
	font-weight: 700;
	color: #1857e8;
	text-decoration: none;
}

.hh-portfolio-link:hover {
	text-decoration: underline;
	color: #1857e8;
}

/* Single portfolio item */
.hh-portfolio-single-header {
	background: linear-gradient(135deg, #0b3fc7 0%, #1857e8 100%);
	padding: 60px 0;
	color: #fff;
	text-align: center;
}

.hh-portfolio-single-header h1 {
	font-size: 32px;
	font-weight: 800;
	margin: 0;
}

.hh-portfolio-single-body {
	max-width: 760px;
	margin: 0 auto;
	padding: 50px 20px;
	font-size: 16px;
	line-height: 1.75;
	color: #333d54;
}

.hh-portfolio-single-body p {
	margin: 0 0 20px;
}

.hh-portfolio-back {
	display: inline-block;
	margin-top: 10px;
	font-weight: 700;
	color: #1857e8;
	text-decoration: none;
}

.hh-portfolio-back:hover {
	text-decoration: underline;
	color: #1857e8;
}

@media (max-width: 900px) {
	.hh-portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.hh-portfolio-grid {
		grid-template-columns: 1fr;
	}
}
