/**
 * Post Company Info Widget Styles
 */

.hbc-post-company-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
	background: #fff;
}

.hbc-pci-row {
	display: flex;
	align-items: center;
	gap: 20px;
}

.hbc-pci-logo {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: 10px;
	overflow: hidden;
	background: #f5f5f5;
	border: 1px solid #e8e8e8;
}

.hbc-pci-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hbc-pci-name {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	line-height: 1.4;
}

.hbc-pci-info-group {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hbc-pci-label {
	flex-shrink: 0;
	font-size: 14px;
	color: #666;
}

.hbc-pci-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hbc-pci-industry-tag {
	display: inline-block;
	padding: 4px 12px;
	font-size: 13px;
	color: #3498db;
	background: transparent;
	border: none;
	border-radius: 4px;
}

.hbc-pci-product-tag {
	display: inline-block;
	padding: 4px 12px;
	font-size: 13px;
	color: #fff;
	background: #4FBDBA;
	border-radius: 4px;
}

.hbc-pci-row-second {
	padding-left: 100px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
	.hbc-pci-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.hbc-pci-name {
		margin-right: 0 !important;
	}

	.hbc-pci-info-group {
		flex-direction: row;
		align-items: center;
		flex-wrap: wrap;
		gap: 8px;
		width: 100%;
	}

	.hbc-pci-tags {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.hbc-pci-row-second {
		padding-left: 0;
	}
}
