/**
 * Open Roles / Jobs List Styles
 * 
 * @package Together_Theme
 */

.together-open-roles {
	padding: 60px 0;
	background-color: #fff;
}

.together-open-roles .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.together-open-roles .section-header {
	margin-bottom: 40px;
}

.together-open-roles .open-roles-count {
	font-size: 32px;
	font-weight: 700;
	color: #FF69B4;
	margin: 0;
	line-height: 1.2;
}

.open-roles-list {
	width: 100%;
}

.roles-header {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 0;
}

.role-column-header,
.type-column-header,
.location-column-header {
	font-size: 14px;
	color: #999;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.role-item {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid #e0e0e0;
	text-decoration: none;
	color: inherit;
	transition: background-color 0.2s ease;
}

.role-item:hover {
	background-color: #f9f9f9;
	padding-left: 10px;
	padding-right: 10px;
	margin-left: -10px;
	margin-right: -10px;
	border-radius: 4px;
}

.role-item:last-of-type {
	border-bottom: none;
}

.role-column,
.type-column,
.location-column {
	display: flex;
	align-items: center;
}

.role-column strong,
.type-column strong,
.location-column strong {
	font-size: 16px;
	font-weight: 700;
	color: #000;
}

.see-more-roles {
	text-align: center;
	margin-top: 40px;
}

.see-more-btn {
	display: inline-block;
	padding: 14px 32px;
	background-color: #40E0D0;
	color: #000;
	text-decoration: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.see-more-btn:hover {
	background-color: #30D0C0;
	transform: translateY(-2px);
	color: #000;
	text-decoration: none;
}

.together-open-roles .no-jobs {
	text-align: center;
	padding: 40px 0;
	color: #999;
	font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.roles-header,
	.role-item {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	.role-column-header,
	.type-column-header,
	.location-column-header {
		display: none;
	}
	
	.role-column::before {
		content: 'Role: ';
		font-weight: 400;
		color: #999;
		margin-right: 8px;
	}
	
	.type-column::before {
		content: 'Type: ';
		font-weight: 400;
		color: #999;
		margin-right: 8px;
	}
	
	.location-column::before {
		content: 'Location: ';
		font-weight: 400;
		color: #999;
		margin-right: 8px;
	}
	
	.together-open-roles .open-roles-count {
		font-size: 24px;
	}
}

