.job-container {
    margin: 32px 0 20px 0;
}

.job {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 14px;
    background: #f5f7ff;
    border: 1px solid rgba(47, 81, 201, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.25s, border-color 0.25s;
  }

  .job:hover {
    border-color: rgba(47, 81, 201, 0.3);
    box-shadow: 0 4px 20px rgba(47, 81, 201, 0.1);
  }

  .job__header {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }

  .job__title {
    font-size: 1rem;
    font-weight: 700;
    color: #2f2320;
    letter-spacing: 0.02em;
  }

  .job__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    background: rgba(47, 81, 201, 0.07);
    border: 1px solid rgba(47, 81, 201, 0.18);
    border-radius: 8px;
    padding: 6px 14px;
    color: #2f2320;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .job__tag svg {
    width: 13px;
    height: 13px;
    opacity: 0.5;
    flex-shrink: 0;
  }

  .job__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    background: #2f51c9;
    border: 1px solid #2f51c9;
    border-radius: 8px;
    padding: 6px 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.03em;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, box-shadow 0.2s;
  }

  .job__toggle:hover {
    background: #2444b0;
    box-shadow: 0 4px 12px rgba(47, 81, 201, 0.35);
  }

  .job__content {
    display: none;
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid rgba(47, 81, 201, 0.12);
    animation: slideDown 0.2s ease;
  }

  .job__content.is-open { display: block; }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .job__intro {
    padding-top: 1rem;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    color: #2f2320;
    opacity: 0.8;
    margin-bottom: 0.5rem;
  }

  .job__section-title {
    font-weight: 700;
    font-size: 0.875rem;
    margin: 1rem 0 0.5rem;
    color: #2f2320;
    letter-spacing: 0.03em;
  }

  .job__list {
    list-style: none;
    padding-left: 1rem;
  }

  .job__list-item {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
    font-weight: 300;
    color: #2f2320;
    opacity: 0.8;
    line-height: 1.65;
  }

  .job__list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2f51c9;
    opacity: 0.6;
  }

  .job__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 1.25rem;
    background: rgba(47, 81, 201, 0.07);
    border: 1px solid rgba(47, 81, 201, 0.18);
    border-radius: 8px;
    padding: 6px 14px;
    color: #2f51c9;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.2s;
  }

  .job__cta:hover {
    background: rgba(47, 81, 201, 0.14);
  }
  
  @media (max-width: 767px) {
    .job__header { grid-template-columns: 1fr; gap: 0.5rem; }
    .job__toggle { width: 100%; justify-content: center; }
}

