.shull-jobs-grid,
.shull-leadmagnet,
.shull-modal {
	--shull-accent: #E46B37;
	--shull-accent-dark: #c85a2a;
	--shull-text: #212224;
	--shull-secondary: #6C757D;
	--shull-border: #e7e7ea;
	font-family: "Open Sans", sans-serif;
	color: var(--shull-text);
	box-sizing: border-box;
}
.shull-jobs-grid *, .shull-leadmagnet *, .shull-modal * { box-sizing: border-box; }

/* ---------- Jobs grid ---------- */
.shull-jobs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
	margin: 32px 0;
}
.shull-job-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #fff;
	border: 1px solid var(--shull-border);
	border-radius: 14px;
	padding: 24px;
	transition: box-shadow .2s ease, transform .2s ease;
}
.shull-job-card:hover {
	box-shadow: 0 12px 28px rgba(0,0,0,.08);
	transform: translateY(-2px);
}
.shull-job-card__title {
	font-size: 19px;
	font-weight: 600;
	margin: 0 0 8px;
	color: var(--shull-text);
}
.shull-job-card__location {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--shull-secondary);
	font-size: 13px;
	margin-bottom: 12px;
}
.shull-job-card__location svg { color: var(--shull-accent); flex-shrink: 0; }
.shull-job-card__excerpt {
	font-size: 14px;
	line-height: 1.6;
	color: var(--shull-secondary);
	margin: 0 0 20px;
}
.shull-job-card__actions {
	display: flex;
	gap: 10px;
}
.shull-job-card__actions .shull-btn {
	flex: 1;
}
.shull-jobs-error, .shull-jobs-empty {
	padding: 24px;
	text-align: center;
	color: var(--shull-secondary);
	border: 1px dashed var(--shull-border);
	border-radius: 12px;
	margin: 32px 0;
}

/* ---------- Buttons ----------
   The theme's global reset ([type=button],[type=submit],button in style.min.css)
   loads after this stylesheet and shares specificity with .shull-btn, so its
   transparent background / crimson border win on hover and on the base state
   unless every property here is forced with !important. */
.shull-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	background-color: var(--shull-accent) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 50px !important;
	padding: 12px 28px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	font-family: "Open Sans", sans-serif !important;
	line-height: normal !important;
	cursor: pointer;
	text-decoration: none !important;
	transition: background-color .2s ease;
}
.shull-btn:hover,
.shull-btn:focus {
	background-color: var(--shull-accent-dark) !important;
	color: #fff !important;
}
.shull-btn:disabled { opacity: .6; cursor: not-allowed; }
.shull-btn--block { width: 100% !important; }
.shull-btn--outline {
	background-color: transparent !important;
	color: var(--shull-accent) !important;
	border: 1px solid var(--shull-accent) !important;
}
.shull-btn--outline:hover,
.shull-btn--outline:focus {
	background-color: var(--shull-accent) !important;
	color: #fff !important;
}

/* ---------- Modal ---------- */
.shull-modal { position: fixed; inset: 0; z-index: 100000; display: none; }
.shull-modal.is-open { display: block; }
.shull-modal__overlay { position: absolute; inset: 0; background: rgba(20,20,20,.55); }
.shull-modal__panel {
	position: relative;
	background: #fff;
	max-width: 480px;
	width: calc(100% - 32px);
	margin: 5vh auto;
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 16px;
	padding: 32px;
}
.shull-modal__close {
	position: absolute;
	top: 16px; right: 16px;
	background: none; border: none;
	font-size: 26px; line-height: 1;
	cursor: pointer;
	color: var(--shull-secondary);
}
.shull-modal__panel h3 { margin-top: 0; font-size: 20px; font-weight: 600; }
.shull-apply-job-title { color: var(--shull-accent); }

/* ---------- Job details modal ---------- */
.shull-modal__panel--details {
	max-width: 640px;
}
.shull-modal__panel--details .shull-details-title {
	margin-bottom: 8px;
}
.shull-details-location {
	margin-bottom: 20px;
}
.shull-details-body {
	font-size: 14px;
	line-height: 1.7;
	color: var(--shull-text);
	margin-bottom: 24px;
}
.shull-details-body p { margin: 0 0 14px; }
.shull-details-body ul,
.shull-details-body ol { margin: 0 0 14px; padding-left: 20px; }
.shull-details-body li { margin-bottom: 6px; }
.shull-details-body h1,
.shull-details-body h2,
.shull-details-body h3,
.shull-details-body h4 { font-size: 15px; font-weight: 600; margin: 0 0 10px; }
.shull-details-body a { color: var(--shull-accent); }

/* ---------- Form fields (shared) ---------- */
.shull-field { margin-bottom: 16px; }
.shull-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--shull-text);
}
.shull-field input,
.shull-field textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--shull-border);
	border-radius: 8px;
	font-size: 14px;
	font-family: "Open Sans", sans-serif;
	color: var(--shull-text);
}
.shull-field input:focus,
.shull-field textarea:focus {
	outline: none;
	border-color: var(--shull-accent);
}
.shull-field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.shull-form-status { margin-top: 12px; font-size: 14px; min-height: 20px; }
.shull-form-status.is-error { color: #b3261e; }
.shull-form-status.is-success { color: #1a7f37; }

/* ---------- Lead magnet ---------- */
.shull-leadmagnet {
	max-width: 640px;
	margin: 48px auto;
	background: linear-gradient(180deg, #fff 0%, #fdf6f2 100%);
	border: 1px solid var(--shull-border);
	border-radius: 20px;
	padding: 48px 40px;
	text-align: center;
}
.shull-leadmagnet__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px; height: 56px;
	border-radius: 50%;
	background: var(--shull-accent);
	color: #fff;
	margin-bottom: 20px;
}
.shull-leadmagnet__title {
	font-size: 26px;
	font-weight: 600;
	margin: 0 0 12px;
}
.shull-leadmagnet__subtitle {
	color: var(--shull-secondary);
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 28px;
}
.shull-leadmagnet__form { text-align: left; }
.shull-leadmagnet__fineprint {
	font-size: 12px;
	color: var(--shull-secondary);
	text-align: center;
	margin-top: 14px;
	margin-bottom: 0;
}

@media (max-width: 480px) {
	.shull-leadmagnet { padding: 32px 22px; }
}
