/* ======================================================
   JOB SINGLE POST – FINAL CSS
   Theme: GP Result
   ====================================================== */

:root{
  --job-primary:#10b981;
  --job-primary-dark:#059669;
  --job-bg:#ffffff;
  --job-light:#f0fdfa;
  --job-border:#e5e7eb;
  --job-text:#0f172a;
  --job-muted:#64748b;
  --job-radius:14px;
  --job-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* ======================================================
   BASE
   ====================================================== */
.job-single{
  background:#f8fafc;
  color:var(--job-text);
  padding: 0;
}

.job-main-content {
    background: #f8fafc;
    padding-bottom: 20px;
}

/* ======================================================
   BREADCRUMB
   ====================================================== */
.job-breadcrumb{
  background:#eef2f7;
  padding:10px 16px;
  font-size:13px;
  margin: 0 0 16px 0;
}
.job-breadcrumb a{
  color:#2563eb;
  text-decoration:none;
}
.job-breadcrumb span{
  margin:0 6px;
  color:#64748b;
}

/* ======================================================
   CATEGORY TAG
   ====================================================== */
.job-category-tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin:0 16px 10px;
  padding:6px 12px;
  background:#ecfdf5;
  color:var(--job-primary);
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}

/* ======================================================
   TITLE
   ====================================================== */
.job-title{
  font-size:32px;
  font-weight:800;
  line-height:1.3;
  margin:10px 16px 16px;
}

/* ======================================================
   AUTHOR INFO
   ====================================================== */
.job-author{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 16px 16px;
}
.job-author img{
  border-radius:50%;
}
.job-author-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.job-author-meta > div:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}
.job-author .by-text {
  color: var(--job-muted);
  font-size: 14px;
}
.job-author .author-name {
  font-weight: 600;
  color: var(--job-text);
  text-decoration: none;
  font-size: 15px;
}
.job-author .author-name:hover {
  color: var(--job-primary);
}
.job-author .verified{
  color:#2563eb;
  font-size: 14px;
}
.job-author .publish-date{
  color:var(--job-muted);
  font-size:13px;
}

/* ======================================================
   FEATURED BANNER
   ====================================================== */
.job-banner{
  margin:0 16px 16px;
}
.job-banner img{
  width:100%;
  border-radius:var(--job-radius);
  box-shadow:var(--job-shadow);
}
.job-banner-default{
  background:var(--job-primary);
  border-radius:var(--job-radius);
  padding:60px 20px;
  text-align:center;
  color:#fff;
  box-shadow:var(--job-shadow);
}
.job-banner-default h2{
  margin:0;
  font-size:28px;
  font-weight:800;
}

/* ======================================================
   WHATSAPP / TELEGRAM CTA
   ====================================================== */
.job-cta{
  margin:0 16px 16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.job-cta .cta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
  color:#000;
  box-shadow:var(--job-shadow);
}
.job-cta .whatsapp{
  background:#e9fef3;
}
.job-cta .telegram{
  background:#eaf6ff;
}
.job-cta span{
  background:#10b981;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
}

/* ======================================================
   JOB DETAILS CARD
   ====================================================== */
.job-details-card{
  margin:0 16px 16px;
  background:#fff;
  border-radius:var(--job-radius);
  box-shadow:var(--job-shadow);
  overflow:hidden;
}
.job-details-header{
  background:var(--job-primary);
  color:#fff;
  padding:14px 18px;
  font-size:18px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;
}
.job-short-desc{
  padding:16px 18px;
  background:#f8fffc;
  font-size:15px;
  line-height:1.6;
  color:#334155;
  border-left: 5px solid var(--job-primary);
}
.job-info-grid{
  padding:18px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.job-info-item{
  display:flex;
  gap:12px;
  align-items:center;
}
.job-info-item .icon{
  width:42px;
  height:42px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#ecfdf5;
  color:var(--job-primary);
  font-size:18px;
}
.job-info-item small{
  display:block;
  font-size:12px;
  color:var(--job-muted);
}
.job-info-item strong{
  font-size:15px;
  font-weight:700;
}
.job-apply-btn{
  display:block;
  margin:20px auto 24px;
  background:var(--job-primary);
  color:#fff;
  padding:14px 34px;
  border-radius:30px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 6px 16px rgba(16,185,129,.35);
}

/* ======================================================
   POST CONTENT
   ====================================================== */
.job-content{
  background:#fff;
  margin:0 16px 16px;
  padding:22px;
  border-radius:var(--job-radius);
  box-shadow:var(--job-shadow);
  line-height:1.8;
}
.job-content h2,
.job-content h3{
  margin-top:28px;
  font-size:20px;
  color:#065f46;
}

/* ======================================================
   TAGS
   ====================================================== */
.job-tags{
  margin:0 16px 16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.job-tags a{
  background:#ecfdf5;
  color:var(--job-primary);
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  text-decoration:none;
}

/* ======================================================
   SOCIAL SHARE
   ====================================================== */
.job-share{
  margin:0 16px 20px;
  display:flex;
  gap:10px;
}
.job-share a{
  flex:1;
  padding:12px;
  text-align:center;
  border-radius:8px;
  color:#fff;
  font-size:16px;
}
.job-share .fb{background:#1877f2;}
.job-share .x{background:#000;}
.job-share .wa{background:#25d366;}
.job-share .tg{background:#229ed9;}
.job-share .copy{background:#64748b;}

/* ======================================================
   RELATED JOBS
   ====================================================== */
.job-related{
  margin:0 16px 20px;
}
.job-related-header{
  background:var(--job-primary);
  color:#fff;
  padding:14px 18px;
  border-radius:10px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:10px;
}
.job-related-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.job-related-card{
  background:#fff;
  padding:16px;
  border-radius:12px;
  box-shadow:var(--job-shadow);
}
.job-related-card h4{
  font-size:15px;
  font-weight:700;
  margin-bottom:10px;
}
.job-related-card span{
  display:block;
  font-size:13px;
  color:var(--job-muted);
}
.job-related-card .status{
  margin-top:8px;
  font-weight:700;
}
.status.new{color:#10b981;}
.status.updated{color:#2563eb;}
.status.expired{color:#ef4444;}

/* ======================================================
   COMMENTS
   ====================================================== */
.job-comments{
  margin:0 16px 20px;
}
.job-comments-header{
  background:var(--job-primary);
  color:#fff;
  padding:14px 18px;
  border-radius:10px;
  font-weight:800;
  margin-bottom:14px;
}
.comment-respond input,
.comment-respond textarea{
  width:100%;
  padding:10px;
  border-radius:8px;
  border:1px solid var(--job-border);
}
.comment-respond .submit{
  background:var(--job-primary);
  color:#fff;
  border:none;
  padding:12px 26px;
  border-radius:30px;
  font-weight:700;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width:768px){
  .job-info-grid{
    grid-template-columns:1fr;
  }
  .job-related-grid{
    grid-template-columns:1fr;
  }
  .job-title{
    font-size:26px;
  }
}

