@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@600;700&display=swap');

.ttm-jobs-archive {
	background: radial-gradient(circle at top, rgba(255, 247, 237, 0.8), #ffffff 55%) no-repeat;
}

.ttm-single-job {
	background: radial-gradient(circle at top, rgba(241, 245, 249, 0.9), #ffffff 60%) no-repeat;
}

.ttm-jobs-container,
.ttm-job-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 32px 18px 48px;
	font-family: "Manrope", "Segoe UI", sans-serif;
	color: #0f172a;
}

.ttm-jobs-header h1 {
	margin: 0 0 18px;
	font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
	font-size: 34px;
}

.ttm-jobs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 22px;
}

.ttm-job-card {
	display: flex;
	flex-direction: column;
	padding: 18px;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ttm-job-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
}

.ttm-job-card-image img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 14px;
}

.ttm-job-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 13px;
	color: #64748b;
	margin-top: 6px;
}

.ttm-job-card-company {
	font-weight: 600;
	color: #0f172a;
	background: #f1f5f9;
	padding: 4px 10px;
	border-radius: 999px;
}

.ttm-job-card-date {
	font-weight: 500;
}

.ttm-job-card-title {
	margin: 12px 0 8px;
	font-size: 22px;
	line-height: 1.35;
}

.ttm-job-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin: 0 0 10px;
	font-size: 13px;
	color: #475569;
}

.ttm-job-meta-item {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	padding: 4px 10px;
	border-radius: 999px;
}

.ttm-job-card-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 4px 0 12px;
}

.ttm-skill-chip img {
	box-shadow: none !important;
}

.ttm-skill-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
}

.ttm-skill-logo {
	width: 18px;
	height: 18px;
	border-radius: 6px;
	object-fit: cover;
	background: #fff;
	padding: 2px;
}

.ttm-job-card-excerpt {
	margin: 0 0 12px;
	color: #475569;
}

.ttm-job-card-link {
	margin-top: auto;
	align-self: flex-start;
	padding: 10px 14px;
	border-radius: 10px;
	background: #0f172a;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.ttm-job-card-link:hover,
.ttm-job-card-link:focus {
	background: #111827;
}

.ttm-jobs-pagination {
	margin-top: 18px;
}

/* Detailed job layout */

.ttm-job-detail {
	margin: 0;
}

.ttm-company-card {
	margin-top: 28px;
	padding: 36px;
	border-radius: 30px;
	background: linear-gradient(180deg, #ffffff 0%, #f4f6ff 100%);
	border: 1px solid rgba(148, 163, 184, 0.35);
	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

/* .ttm-company-card__inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
} */

.ttm-company-card__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.ttm-company-card__text {
	flex: 1;
}

.ttm-company-card__category {
	text-transform: uppercase;
	letter-spacing: 0.25em;
	font-size: 11px;
	color: #94a3b8;
	margin: 0 !important;
	font-weight: 600;
}

.ttm-company-card__title {
	margin: 0 0 6px;
	font-size: 38px;
	line-height: 1.15;
	font-weight: 700;
	color: #0f172a;
}

.ttm-company-card__company-meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
}



.ttm-company-card__company-description {
	margin: 0;
	font-size: 14px;
	color: #475569;
	max-width: 560px;
}
.ttm-company-card__inner{
	position: relative;
}
.ttm-company-card__logo {
    width: 100px;
    min-width: 100px;
    text-align: center;
    position: absolute;
    top: -20px;
    right: -20px;
}
.ttm-company-card__company-name {
	font-size: 12px;
	font-weight: 700;
	color: #111827;
}
.ttm-company-card__logo img,
.ttm-company-card__logo .ttm-company-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 18px;
	border: 1px solid #e5e7eb;
	background: #fff;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
	padding: 12px;
}

.ttm-company-card__divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.45), transparent);
	margin: 0;
}

.ttm-company-card__stats-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	color: #475569;
	font-size: 14px;
	font-weight: 500;
}

.ttm-company-card__stats-row strong {
	color: #111827;
	font-weight: 600;
}

.ttm-company-card__deadline {
	margin: 0;
	font-size: 13px;
	color: #64748b;
}

.ttm-company-card__actions {
	display: flex;
	justify-content: flex-end;
	gap: 16px;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 6px;
}

.ttm-apply-button {
	padding: 12px 20px;
	border: 0;
	border-radius: 12px;
	background: #0f172a !important;
	color: #fff !important;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ttm-apply-button:hover,
.ttm-apply-button:focus {
	background: #111827;
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
}

.ttm-hero-secondary {
	padding: 12px 20px;
	border-radius: 12px;
	background: #eef2ff;
	color: #0f172a;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid #c7d2fe;
	transition: background 0.15s ease;
}

.ttm-hero-secondary:hover,
.ttm-hero-secondary:focus {
	background: #e0e7ff;
}

.ttm-company-card__primary {
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	border-radius: 999px;
	padding: 12px 32px;
	color: #fff;
	box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
	font-weight: 600;
	letter-spacing: 0.02em;
}

.ttm-company-card__primary:hover,
.ttm-company-card__primary:focus-visible {
	filter: brightness(1.03);
	transform: translateY(-1px);
	box-shadow: 0 20px 35px rgba(37, 99, 235, 0.45);
}

.ttm-company-card__secondary.ttm-hero-secondary {
	background: transparent;
	border-color: #2563eb;
	color: #2563eb;
	box-shadow: none;
	padding: 12px 28px;
	border-radius: 999px;
}

.ttm-company-card__share {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ttm-share-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	text-decoration: none;
}

.ttm-company-card__share-button {
	border-radius: 16px;
	padding: 10px 18px;
	min-width: 140px;
	background: #f3f5ff;
	border: 1px solid #dbeafe;
	color: #4f46ef;
	font-weight: 600;
	font-size: 13px;
	justify-content: center;
	box-shadow: 0 10px 25px rgba(79, 70, 229, 0.18);
	transition: background 0.2s ease, transform 0.2s ease;
}

.ttm-company-card__share-button:hover,
.ttm-company-card__share-button:focus-visible {
	background: #eef2ff;
	transform: translateY(-2px);
}

.ttm-company-card__share-button .ttm-share-icon {
	width: 34px;
	height: 34px;
	border-radius: 14px;
	background: #fff;
	color: #4f46ef;
	box-shadow: 0 10px 20px rgba(79, 70, 229, 0.25);
}

.ttm-company-card__share-button .ttm-share-label {
	font-size: 13px;
	text-transform: capitalize;
	color: inherit;
}

.ttm-job-details-share {
	display: flex;
	gap: 10px;
	margin: 8px 0 0;
}

.ttm-job-details-share-button {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #0f172a;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.ttm-job-details-share-button svg {
	width: 18px;
	height: 18px;
}

.ttm-job-details-share-button:hover,
.ttm-job-details-share-button:focus {
	border-color: #cbd5f5;
	box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
	transform: translateY(-1px);
}

.ttm-job-details-share-button--linkedin {
	color: #0a66c2;
}

.ttm-job-details-share-button--facebook {
	color: #1877f2;
}

.ttm-job-details-share-button--instagram {
	color: #d63384;
}

.ttm-dashboard-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ttm-form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 16px;
}

.ttm-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ttm-field-full {
	grid-column: 1 / -1;
}

.ttm-field input[type="file"] {
	padding: 6px 0;
}

.ttm-input {
	padding: 10px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
	font-family: inherit;
}

.ttm-company-logo-field .ttm-input {
	padding: 6px 12px;
}

.ttm-company-logo-preview img {
	max-height: 80px;
	display: block;
	margin-top: 8px;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	object-fit: contain;
}


.ttm-job-body-grid {
	display: flex;
	gap: 28px;
	margin-top: 28px;
	align-items: flex-start;
}

.ttm-job-main-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.ttm-job-section {
	padding: 26px;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.ttm-job-section h2,
.ttm-job-section h3 {
	margin: 0 0 16px;
	font-size: 22px;
	color: #0f172a;
	font-weight: 600;
}
section.ttm-job-section.job-description h2, section.ttm-job-section.company-profile h3, section.ttm-job-section.job-description h3, .ttm-job-section + .ttm-job-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.ttm-job-sidebar-card .ttm-sidebar-card-header h4, .ttm-job-sidebar-card h4 {
    font-size: 20px !important;
}
.ttm-job-sidebar .ttm-sidebar-role-main h5, .ttm-job-sidebar .ttm-sidebar-recommendation h5{
    font-size: 17px;
}
.ttm-job-description-copy {
	color: #475569;
	line-height: 1.7;
}

.ttm-job-details-list {
	padding-top: 20px;
	border-top: 1px solid #e5e7eb;
}

.ttm-job-details-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}


.ttm-detail-label {
	font-size: 13px;
	color: #64748b;
	font-weight: 600;
	display: inline-block;
}

.ttm-detail-value {
	font-size: 16px;
	font-weight: 600;
	color: #0f172a;
}

.ttm-job-details-skills {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 8px;
	border-top: 1px dashed #e5e7eb;
}

.ttm-job-details-skills-label {
	font-size: 14px;
	font-weight: 600;
	color: #475569;
	letter-spacing: 0.02em;
}

/* .ttm-company-profile-content {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-top: 16px;
} */

.ttm-company-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 16px;
}

.ttm-company-stat {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ttm-company-description {
	margin: 0;
	color: #475569;
	line-height: 1.7;
}

.ttm-company-description p {
	margin: 0 0 10px;
}

.ttm-job-section.key-skills h3 {
	margin-bottom: 12px;
}

.ttm-job-section.safety p,
.ttm-job-disclaimer p {
	margin: 10px 0 0;
	color: #475569;
	line-height: 1.7;
}

.ttm-job-section.safety {
	background: #fff7f0;
	border-color: #ffd6c7;
}

.ttm-job-section.safety a,
.ttm-job-disclaimer a {
	color: #d74b2b;
	font-weight: 600;
	text-decoration: none;
}

.ttm-job-sidebar {
	flex: 0 0 320px;
	max-width: 320px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: sticky;
	top: 60px;
	align-self: flex-start;
}

.ttm-job-sidebar-card {
	display: flex;
	flex-direction: column;
	padding: 26px;
	border: 1px solid #e5e7eb;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.ttm-sidebar-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ttm-sidebar-card-header h4 {
	margin: 0;
	font-size: 18px;
}

.ttm-sidebar-info {
	font-size: 18px;
	color: #94a3b8;
}

.ttm-sidebar-role, .ttm-sidebar-recommendation {
    border-bottom: 1px solid #eef2ff;
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.ttm-sidebar-recommendation {
    flex-direction: column;
}

.ttm-sidebar-recommendation:last-of-type {
	border-bottom: 0;
	padding-bottom: 0;
}

.ttm-sidebar-role-main h5,
.ttm-sidebar-recommendation h5 {
	margin: 0;
	font-size: 16px;
}

.ttm-sidebar-role-main h5 a,
.ttm-sidebar-recommendation h5 a {
	color: #0f172a;
	text-decoration: none;
}

.ttm-sidebar-role-company {
	font-size: 14px;
	color: #475569;
	margin: 4px 0 !important;
}

.ttm-sidebar-role-meta,
.ttm-sidebar-recommend-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 12px;
	color: #64748b;
}

.ttm-sidebar-role-meta span,
.ttm-sidebar-recommend-meta span {
	background: #f1f5f9;
	border-radius: 999px;
	padding: 4px 10px;
}

.ttm-sidebar-role-logo img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid #e5e7eb;
}

.ttm-sidebar-cta {
	padding: 10px 18px;
	border-radius: 12px;
	background: #0f172a;
	color: #fff !important;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	display: inline-flex;
	justify-content: center;
	transition: background 0.15s ease;
}

.ttm-sidebar-cta:hover,
.ttm-sidebar-cta:focus {
	background: #111827;
}

.ttm-sidebar-review {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ttm-sidebar-review-meta {
	display: flex;
	justify-content: space-between;
	color: #64748b;
	font-size: 13px;
}

.ttm-sidebar-review-content {
	font-size: 14px;
	color: #0f172a;
	line-height: 1.6;
	margin: 0;
}

.ttm-sidebar-review-likes {
	margin: 0;
	font-size: 13px;
	color: #475569;
	font-weight: 600;
}

.ttm-job-sidebar-card.salary {
	background: #f1f5ff;
	border-color: #dbeafe;
}

.ttm-job-section + .ttm-job-section {
	margin-top: 0;
}

.ttm-job-application-form label {
	font-weight: 600;
}

.ttm-apply-button.is-disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.ttm-apply-hint {
	margin: 10px 0 0;
	font-size: 14px;
	color: #475569;
}

.ttm-apply-login-hint {
	margin: 6px 0 0;
	font-size: 14px;
	color: #0f172a;
}

.ttm-job-sidebar a {
	color: inherit;
}

.ttm-application-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	padding: 20px;
	background: rgba(0, 0, 0, 0.5);
}

.ttm-application-modal.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ttm-application-modal-dialog {
	position: relative;
	width: 100%;
	max-width: 560px;
	max-height: 88vh;
	overflow: auto;
	padding: 20px;
	border-radius: 10px;
	background: #fff;
}

.ttm-application-modal-close {
	position: absolute;
	top: 8px;
	right: 10px;
	border: 0;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.ttm-application-response {
	display: none;
	margin: 8px 0 14px;
	padding: 10px 12px;
	border-radius: 4px;
}

.ttm-application-response.is-success {
	background: #edfaef;
	border: 1px solid #8bcf99;
	color: #116329;
}

.ttm-application-response.is-error {
	background: #fbeaea;
	border: 1px solid #e5a8a8;
	color: #8a2424;
}

.ttm-job-application-form .ttm-form-row {
	margin-bottom: 12px;
}

.ttm-job-application-form input,
.ttm-job-application-form textarea {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	box-sizing: border-box;
}

.ttm-application-submit {
	padding: 10px 16px;
	border: 0;
	border-radius: 10px;
	background: #0f172a;
	color: #fff;
	cursor: pointer;
}

.ttm-application-submit[disabled] {
	opacity: 0.75;
	cursor: wait;
}
.listing-row {
    display: flex;
    flex-wrap: wrap;
}
.job-listing {
    width: 33.33%;
    padding: 15px;
}
.listing-inner {
    padding: 40px 30px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
	height: 100%;
}
.listing-inner h4 {
    padding-bottom: 10px;
    color: #853EF4 !important;
}
.company_info {
    display: flex;
}
.company_name {
    padding-right: 20px;
}
.job_detail {
    margin: 0 0 20px;
}
.job_detail li, .key_skills li {
    display: inline-block;
}
.job_detail li:first-of-type, .key_skills li:first-of-type {
    padding-left: 0;
}
.job_detail li {
    margin-right: 5px;
}
.listing-inner span, .key_skills li {
    color: #717b9e;
    font-size: 14px;
}
.job_detail svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 3px;
}
.job_des {
    margin-bottom: 0 !important;
}
.key_skills{
	margin: 0 0 20px !important;
}
.key_skills li{
	padding-right: 10px;
}
.view_detail_btn {
    display: inline-block;
    padding: 8px 26px;
    border-radius: 10px;
    background-color: #000;
    color: #fff !important;
    margin-top: 30px;
    text-decoration: none;
}

.ttm-job-company-hero .ttm-company-card__title{
	font-size: 24px;
}
.ttm-wrapper{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.ttm-company-card__meta-row{
	list-style: none;
	margin: 10px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	color: #475569;
}
.ttm-company-card__meta-item{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #0f172a;
	white-space: nowrap;
}
.ttm-company-card__meta-icon{
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
}
.ttm-company-card__meta-svg{
	width: 18px;
	height: 18px;
}
.ttm-company-card__meta-item::after{
	content: "|";
	margin-left: 12px;
	color: #cbd5f5;
	font-weight: 400;
}
.ttm-company-card__meta-item:last-child::after{
	content: "";
	margin: 0;
}

@media (max-width: 1024px) {
	.ttm-job-body-grid {
		flex-direction: column;
	}
	.ttm-job-sidebar {
		position: static;
		width: 100%;
		max-width: 100%;
	}
	.job-listing {
		width: 50%;
		padding: 15px;
	}
}

@media (max-width: 768px) {
	.ttm-company-card {
		padding: 24px;
	}
	.ttm-company-card__top {
		flex-direction: column;
	}
	.ttm-company-card__actions {
		justify-content: flex-start;
	}
}
@media(max-width:767px){
	.job-listing {
		width: 100%;
		padding: 0 0 15px;
	}
	.ttm-company-card__logo {
		top: -10px;
		right: -10px;
	}
}

@media (max-width: 480px) {
	.ttm-company-card__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}
	.ttm-company-card__primary,
	.ttm-company-card__secondary {
		width: 100%;
		text-align: center;
	}
	.ttm-wrapper {
		flex-direction: column;
	}
	.ttm-company-card__share {
		gap: 5px;
	}
	.ttm-company-card__share-button {
		padding: 6px 8px;
		min-width: auto;
	}
	.ttm-company-card__share-button .ttm-share-icon {
		width: 25px;
		height: 25px;
	}
	.ttm-company-card__logo {
		position: unset;
	}
	.ttm-company-card__stats-row {
		gap: 6px;
	}
	.ttm-company-card__primary, .ttm-company-card__secondary.ttm-hero-secondary{
		padding: 7px 10px;
	}
}
