/**
 * FileGaze 前台整页样式（单文件，替代 nav-styles.css）
 * 原则：无错误嵌套、首行即重置 html/body，顶栏用普通 block 宽度 100%。
 */

/* ---------- 1. 硬重置（必须写在文件最前，盖过 UA） ---------- */
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
  background: #f8fafc;
}

/* 整页外壳：相对定位 + 至少一屏高；页脚 absolute 贴底，底部留白避免正文被挡 */
.fg-page-shell {
  flex: 1 1 auto;
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: 220px;
}

.fg-page-body {
  min-width: 0;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #2563eb;
}

/* ---------- 2. 顶栏（通栏背景，无 vw 技巧） ---------- */
/* 放在 body 末尾（在 footer 之后），一般不参与 flex 占位；关闭时不可点 */
.fg-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(15, 23, 42, 0.45);
  pointer-events: none;
}

.fg-nav-overlay.active {
  display: block;
  pointer-events: auto;
}

.fg-topbar {
  position: sticky;
  top: 0;
  z-index: 950;
  flex-shrink: 0;
  width: 100%;
  overflow: visible;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #e2e8f0;
}

.fg-header {
  width: 100%;
  padding: 14px 0;
  overflow: visible;
}

.fg-header__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  overflow: visible;
  position: relative;
}

.fg-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.fg-logo__image {
  max-height: 40px;
  height: auto;
  width: auto;
  display: block;
}

.fg-logo__text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fg-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: #f1f5f9;
  cursor: pointer;
  flex-shrink: 0;
}

.fg-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: #475569;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.fg-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.fg-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.fg-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.fg-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  flex: 1;
  min-width: 0;
  overflow: visible;
  position: relative;
  z-index: 5;
}

.fg-nav__group {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.fg-nav__group:hover,
.fg-nav__group:focus-within {
  z-index: 20;
}

.fg-nav__link {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.fg-nav__link:hover {
  background: #f1f5f9;
  color: #2563eb;
}

.fg-nav__link.active {
  color: #2563eb;
  background: #eff6ff;
}

/* 有子菜单：真实 DOM 三角（.fg-nav__caret），不依赖 ::after / :has */
.fg-nav__group--has-sub > .fg-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fg-nav__link-text {
  min-width: 0;
}

.fg-nav__caret {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #64748b;
  line-height: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.fg-nav__caret svg {
  display: block;
}

.fg-nav__group--has-sub:hover > .fg-nav__link .fg-nav__caret,
.fg-nav__group--has-sub:focus-within > .fg-nav__link .fg-nav__caret {
  transform: rotate(180deg);
  color: #2563eb;
}

.fg-nav__sub {
  display: none;
  position: absolute;
  /* 与一级留出间距；桌面用 ::before 向上铺透明命中区，避免经过缝隙丢 :hover */
  top: calc(100% + 10px);
  left: 0;
  margin-top: 0;
  min-width: 200px;
  padding: 8px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  z-index: 1100;
}

.fg-nav__group:hover .fg-nav__sub,
.fg-nav__group:focus-within .fg-nav__sub,
.fg-nav__sub:hover {
  display: block;
}

.fg-nav__sublink {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
}

.fg-nav__sublink:hover {
  background: #f1f5f9;
  color: #2563eb;
}

.fg-nav__sublink.active {
  color: #2563eb;
}

@media (min-width: 769px) {
  /* 盖住「一级底边 → 子菜单顶边」整段空隙 + 略压回一级区，保证不断 hover */
  .fg-nav__sub::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 28px;
  }
}

.fg-search {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.fg-search__input {
  width: 200px;
  max-width: 36vw;
  padding: 9px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 0.875rem;
}

.fg-search__input::placeholder {
  color: #94a3b8;
}

.fg-search__input:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.fg-lang {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}

.fg-lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.fg-lang__btn:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.fg-lang__btn:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.fg-lang__text {
  max-width: 7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fg-lang__code {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.85;
  padding: 2px 6px;
  border-radius: 4px;
  background: #e2e8f0;
  color: #475569;
}

.fg-lang__chev {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #64748b;
  transition: transform 0.2s ease;
}

.fg-lang.is-open .fg-lang__chev {
  transform: rotate(180deg);
}

.fg-lang.is-open {
  z-index: 30;
}

.fg-lang__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 220px;
  max-width: min(100vw - 24px, 320px);
  max-height: 70vh;
  max-height: min(70dvh, 26rem);
  padding: 6px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.fg-lang__menu::-webkit-scrollbar {
  width: 6px;
}

.fg-lang__menu::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 6px;
}

.fg-lang__menu[hidden] {
  display: none !important;
}

.fg-lang__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  margin: 0 0 2px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.fg-lang__option:last-child {
  margin-bottom: 0;
}

.fg-lang__option:hover {
  background: #f1f5f9;
}

.fg-lang__option.is-active {
  background: #eff6ff;
  color: #1d4ed8;
}

.fg-lang__optname {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fg-lang__optcode {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  flex-shrink: 0;
}

/* ---------- 3. 页面主体 ---------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 40px 0 56px;
}

.hero {
  padding: 64px 0 48px;
  background: #ffffff;
  color: #1e293b;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0 0 12px;
}

.hero p {
  max-width: 36rem;
  margin: 0 auto 24px;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  background: #2563eb;
  color: #fff;
  border: 2px solid transparent;
  transition: background 0.15s ease;
}

.btn:hover {
  background: #1d4ed8;
}

.btn-outline {
  background: transparent;
  color: #475569;
  border-color: #e2e8f0;
}

.btn-outline:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #1e293b;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.section-headline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.section-headline a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.section-title {
  font-size: 1.35rem;
  margin: 0 0 12px;
  color: #1e293b;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.article-grid--rich {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.empty-block {
  grid-column: 1 / -1;
  text-align: center;
  color: #64748b;
}

/* 文章卡片：上图下文（有 thumb 用封面，无则占位图标） */
.article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.article-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.article-card-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
  overflow: hidden;
  flex-shrink: 0;
}

.article-card-media:hover .article-card-img {
  transform: scale(1.03);
}

.article-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.article-card-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  gap: 10px;
}

.article-card-title {
  flex-shrink: 0;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.35;
}

.article-card-title:hover {
  color: #2563eb;
}

.article-card-excerpt {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1 1 auto;
  min-height: 0;
}

.article-card-meta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* 列表摘要：前若干字直接展示，其余在 <details> 内（仍在 DOM，默认折叠，利于收录） */
.fg-list-excerpt {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
}

.fg-list-excerpt__lead {
  margin: 0;
}

.fg-list-excerpt__details {
  margin-top: 6px;
}

.fg-list-excerpt__summary {
  cursor: pointer;
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2563eb;
  list-style: none;
}

.fg-list-excerpt__summary::-webkit-details-marker {
  display: none;
}

.fg-list-excerpt__tail {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
}

/* 分类页：标题区 + 描述（后台分类说明） */
.category-page-header {
  margin-bottom: 8px;
}

.category-page-header__title {
  margin-bottom: 12px;
}

.category-intro {
  margin-bottom: 20px;
  padding: 18px 20px;
  border-left: 4px solid #3b82f6;
}

.category-intro__text {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb-sep {
  margin: 0 6px;
  color: #94a3b8;
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.search-input {
  flex: 1;
  min-width: 200px;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
}

.category-banner {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.article-meta {
  color: #64748b;
  font-size: 0.9rem;
}

.article-cover {
  border-radius: 10px;
  margin: 12px 0;
}

.article-body {
  line-height: 1.75;
}

/* ---------- 文章页：主栏 + 侧栏（分类导航 / 同分类 / 最新，内链 SEO） ---------- */
.fg-article-layout {
  display: grid;
  gap: 24px;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
}

.fg-article-layout__main {
  min-width: 0;
}

.fg-article-aside {
  min-width: 0;
}

.fg-aside-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fg-aside-block {
  padding: 16px 18px;
}

.fg-aside-title {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.02em;
}

.fg-aside-cat-group {
  padding: 8px 0;
  border-top: 1px solid #e2e8f0;
}

.fg-aside-cat-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.fg-aside-cat-top {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #2563eb;
  text-decoration: none;
}

.fg-aside-cat-top:hover {
  text-decoration: underline;
}

.fg-aside-cat-sub {
  list-style: none;
  margin: 6px 0 0;
  padding: 0 0 0  10px;
  border-left: 2px solid #e2e8f0;
}

.fg-aside-cat-sub li {
  margin: 4px 0;
}

.fg-aside-cat-sub a {
  font-size: 0.85rem;
  color: #475569;
  text-decoration: none;
}

.fg-aside-cat-sub a:hover {
  color: #2563eb;
  text-decoration: underline;
}

.fg-aside-article-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fg-aside-article-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
  line-height: 1.45;
}

.fg-aside-article-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fg-aside-article-list a {
  display: block;
  color: #1e293b;
  font-weight: 500;
  text-decoration: none;
}

.fg-aside-article-list a:hover {
  color: #2563eb;
  text-decoration: underline;
}

.fg-aside-meta {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 400;
}

@media (min-width: 961px) {
  .fg-article-aside {
    position: sticky;
    top: 88px;
  }
}

@media (max-width: 960px) {
  .fg-article-layout {
    grid-template-columns: 1fr;
  }

  .fg-article-aside {
    position: static;
  }
}

/* ---------- 4. 页脚 ---------- */
.fg-footer {
  margin-top: 48px;
  padding: 36px 0 28px;
  background: #f8fafc;
  color: #64748b;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #e2e8f0;
}

.fg-footer__inner {
  text-align: center;
}

.fg-footer__brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 16px;
}

.fg-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 20px;
}

.fg-footer__nav a {
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
}

.fg-footer__nav a:hover {
  color: #2563eb;
  text-decoration: underline;
}

.fg-footer__copy {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ---------- 5. 移动端 ---------- */
@media (max-width: 768px) {
  .fg-header__row {
    flex-wrap: wrap;
    padding: 0 12px;
    gap: 12px;
  }

  .fg-menu-btn {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .fg-logo {
    order: 1;
    flex: 1;
    min-width: 0;
  }

  .fg-nav {
    order: 4;
    flex: 1 1 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 72px 16px 24px;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 920;
  }

  .fg-nav.active {
    display: flex;
  }

  .fg-nav__group {
    border-bottom: 1px solid #f1f5f9;
  }

  .fg-nav__link {
    display: block;
    padding: 14px 4px;
  }

  /* 侧栏：有子菜单时文字与三角分列两侧 */
  .fg-nav__group--has-sub > .fg-nav__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 6px;
    gap: 10px;
  }

  .fg-nav__sub::before {
    content: none;
    display: none;
  }

  .fg-nav__group--has-sub:hover > .fg-nav__link .fg-nav__caret,
  .fg-nav__group--has-sub:focus-within > .fg-nav__link .fg-nav__caret {
    transform: none;
  }

  .fg-nav__sub {
    display: block !important;
    position: static;
    top: auto;
    margin: 0 0 8px 8px;
    padding: 4px 0;
    padding-top: 4px;
    min-width: 0;
    background: #f8fafc;
    border: none;
    box-shadow: none;
  }

  .fg-nav__sublink {
    padding: 10px 12px;
  }

  .fg-search {
    display: none;
  }

  .fg-lang {
    order: 5;
    margin-left: auto;
  }

  .fg-lang__menu {
    right: 0;
    left: auto;
  }
}

@media (max-width: 480px) {
  .fg-header {
    padding: 10px 0;
  }

  .hero {
    padding: 48px 0 36px;
  }
}

/* ---------- 6. 分类列表模块（自原 category-list.css 并入） ---------- */
.fg-category-joblist {
  color: #1e293b;
  border-bottom: 2px solid #eee;
  padding: 48px 0 64px;
}
@media (max-width: 767px) {
  .fg-category-joblist {
    padding: 32px 0 48px;
  }
}
.fg-category-joblist__root {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fg-category-joblist__item-wrap {
  padding: 15px 0;
  box-sizing: border-box;
  width: 100%;
}
.fg-category-joblist__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 50px 100px 0 rgba(64, 1, 4, 0.1), 0 -6px 0 0 rgba(248, 99, 107, 0.004);
  padding: 24px 20px;
  gap: 16px 0;
}
.fg-category-joblist__thumb {
  flex: 0 0 auto;
  width: 130px;
  max-width: 100%;
  padding: 0 12px 0 0;
  box-sizing: border-box;
}
.fg-category-joblist__main {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .fg-category-joblist__item {
    flex-direction: column;
    align-items: stretch;
  }
  .fg-category-joblist__thumb {
    width: 100%;
    padding: 0;
  }
  .fg-category-joblist .compamy-logo {
    margin: 0 auto 8px;
  }
}
.fg-category-joblist .job-details h3 {
  margin: 0 0 10px;
  font-family: Poppins, "PingFang SC", "Microsoft Yahei", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  color: #263b5e;
  letter-spacing: -0.5px;
}
@media (max-width: 767px) {
  .fg-category-joblist .job-details h3 {
    font-size: 16px;
  }
}
.fg-category-joblist .job-details h3 a {
  color: #263b5e;
  text-decoration: none;
}
.fg-category-joblist .job-details h3 a:hover {
  color: #555963;
}
.fg-category-joblist .job-details p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.fg-category-joblist__excerpt {
  margin: 0 0 10px;
}

.fg-category-joblist ul.job-list {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fg-category-joblist ul.job-list li {
  display: inline-block;
  margin-right: 10px;
  color: #64748b;
  font-size: 14px;
}
.fg-category-joblist a,
.fg-category-joblist a:hover,
.fg-category-joblist img {
  transition: all 0.5s;
}
