:root {
        --page-bg: #f6f6f6;
        --title-blue: #000465;
        --card-border: #d5d9d9;
        --header-bg: #e8f8fa;
        --link-blue: #35428b;
        --text: #2b2b2b;
        --muted: #6f6f6f;
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        background: var(--page-bg);
        font-family: Arial, Helvetica, sans-serif;
        color: var(--text);
      }

      .wrap {
        max-width: 100%;
        margin: 0 auto;
        padding: 18px 18px 26px;
      }

      h1 {
        margin: 6px 0 16px;
        font-size: 34px;
        line-height: 1.1;
        font-weight: 800;
        color: var(--title-blue);
      }

      .grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
      }

      .card {
        background: #fff;
        border: 1px solid var(--card-border);
        display: flex;
        flex-direction: column;
        min-height: 270px;
        margin-bottom: 5%;
      }

      .card__header {
        background: var(--header-bg);
        padding: 18px 18px 16px;
        border-bottom: 1px solid var(--card-border);
        height: 100px;
      }

      .card__title {
        margin: 0 0 10px;
        font-size: 15px !important;
        line-height: 1.3 !important;
        font-weight: 800 !important;
        color: var(--text);
      }

      .meta {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 13px;
        color: var(--text);
      }

      .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--link-blue);
        flex: 0 0 auto;
      }

      .card__body {
        padding: 14px 18px 18px;
        display: flex;
        flex-direction: column;
        flex: 1;
      }

      .posted {
        font-size: 12px;
        color: var(--muted);
        margin: 2px 0 6px;
      }

      .desc {
        margin: 0;
        font-size: 13px;
        line-height: 1.35;
        color: var(--text);
        max-width: 95%;
      }

      .desc strong {
        font-weight: 800;
      }

      .readmore {
        margin-top: 16px;
        font-size: 11px;
        font-weight: 800;
        color: var(--link-blue);
        text-decoration: none;
        align-self: flex-start;
      }

      .readmore:hover {
        text-decoration: underline;
      }

      /* Responsive */
      @media (max-width: 860px) {
        .grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }
      @media (max-width: 560px) {
        h1 {
          font-size: 28px;
        }
        .grid {
          grid-template-columns: 1fr;
        }
      }

      /* ONLY ADDITION: hover effect */
      .card {
        transition: transform 160ms ease, box-shadow 160ms ease;
        will-change: transform;
      }
      .card__header,
      .card__title,
      .meta {
        transition: background 160ms ease, color 160ms ease;
      }
      .dot {
        transition: background 160ms ease;
      }
      .card:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
      }
      .card:hover .card__header {
        background: var(--title-blue);
      }
      .card:hover .card__title,
      .card:hover .meta {
        color: #fff;
      }
      .card:hover .dot {
        background: #fff;
      }

      /* Title link (clickable) */
      .card__title-link {
        color: inherit;
        text-decoration: none;
        display: inline-block;
        cursor: pointer;
      }
      .card__title-link:hover {
        text-decoration: underline;
      }

      /* status */
      .jobs-status {
        font-size: 13px;
        color: var(--muted);
        margin: 0 0 12px;
      }

      /* Subtle full-page loading overlay + spinner (reliable: display none/flex) */
      .loading-overlay {
        position: fixed;
        inset: 0;
        background: rgba(246, 246, 246, 0.6);
        z-index: 99999;
        display: none;
        align-items: center;
        justify-content: center;
      }
      .loading-overlay.is-active {
        display: flex;
      }
      .spinner {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 3px solid rgba(0, 0, 0, 0.12);
        border-top-color: rgba(0, 0, 0, 0.45);
        animation: spin 0.8s linear infinite;
      }
      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }
      @media (prefers-reduced-motion: reduce) {
        .spinner {
          animation: none;
        }
      }