/* Career Widget Styles */
.angie-career-list {
	display: flex;
	gap: 20px;
}

.angie-career-list.layout-accordion {
    flex-direction: column;
}

.angie-career-list.layout-grid {
    display: grid;
    /* Grid columns are set via inline styles from control */
}

/* Accordion Item Styles */
.angie-career-item {
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	background: #fff;
}

.angie-career-item:hover {
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	border-color: #29577A; /* Primary color hint on hover */
}

/* Closed Status Styling */
.angie-career-item.status-closed {
    opacity: 0.8;
    background-color: #fafafa;
}

.angie-career-grid-card.status-closed {
    opacity: 0.8;
    background-color: #fafafa;
}

.angie-career-closed-badge {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #999;
    color: #999;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: default;
    user-select: none;
}

.angie-career-header {
	padding: 20px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	background: transparent;
}

.angie-career-title {
	margin: 0 0 8px 0;
	font-size: 18px;
	font-weight: 600;
	color: #29577A;
}

.angie-career-meta {
	display: flex;
	gap: 15px;
	font-size: 14px;
	color: #666;
	margin-bottom: 10px;
}

.angie-career-meta span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.angie-career-separator {
    color: #ccc;
    display: none; /* Hide separator if using icons */
}

.angie-career-toggle {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #f5f5f5;
	transition: all 0.3s ease;
	color: #29577A;
}

.angie-career-item.is-active .angie-career-toggle {
	transform: rotate(45deg);
	background: #29577A;
	color: #fff;
}

/* Don't rotate if it's a lock icon (closed status) */
.angie-career-item.status-closed.is-active .angie-career-toggle {
    transform: none;
    background: #f5f5f5;
    color: #999;
}

/* Accordion Content */
.angie-career-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	background: #f9f9f9;
}

.angie-career-description {
	padding: 0 25px 20px 25px;
	color: #555;
	line-height: 1.6;
}

.angie-career-action {
	padding: 0 25px 25px 25px;
}

/* Grid Layout Styles */
.angie-career-grid-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    height: 100%;
}

.angie-career-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #29577A;
}

.angie-career-grid-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.angie-career-grid-action {
    width: 100%;
}

/* Common Button Style */
.angie-career-apply-btn {
	display: inline-flex;
    align-items: center;
    gap: 8px;
	padding: 10px 25px;
	background-color: #2B93BB; /* Accent */
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 500;
	transition: background 0.3s ease;
}

.angie-career-apply-btn:hover {
	background-color: #29577A; /* Primary */
	color: #fff;
}
