@charset "UTF-8";
.gov-detail {
  padding: 16px;
  color: #222;
  max-width: 1120px;
  margin: 0 auto; }
  .gov-detail__breadcrumb {
    margin-bottom: 12px; }
  .gov-detail__title {
    margin: 0 0 12px;
    font-size: clamp(1.4rem, calc(1.2rem + 1vw), 2rem);
    line-height: 1.25;
    font-weight: 700; }
  .gov-detail__expired-notice {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid #f5c6cb;
    text-align: center;
    font-weight: 500; }
  .gov-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px; }
  .gov-detail__summary {
    margin-bottom: 16px;
    background: linear-gradient(180deg, rgba(26, 115, 232, 0.05), rgba(26, 115, 232, 0.02));
    border-color: rgba(26, 115, 232, 0.15); }
  .gov-detail__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px; }
  .gov-detail__contact {
    margin-top: 12px; }
  .gov-detail__footer {
    margin-top: 16px; }
  .gov-detail__data-source {
    margin-top: 8px;
    font-size: 12px;
    color: #666;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    white-space: nowrap; }
    .gov-detail__data-source a {
      color: #666;
      text-decoration: underline; }
      .gov-detail__data-source a:hover {
        color: #222; }
    @media (max-width: 600px) {
      .gov-detail__data-source {
        justify-content: flex-start; } }
  .gov-detail__data-source-label {
    font-weight: 600;
    color: #1a73e8; }

.breadcrumb {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px; }
  .breadcrumb__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0; }
  .breadcrumb__item {
    display: inline-flex;
    align-items: center; }
    .breadcrumb__item a {
      color: #666;
      text-decoration: none; }
      .breadcrumb__item a:hover {
        color: #222; }
  .breadcrumb__item + .breadcrumb__item::before {
    content: "›";
    color: #e5e7eb;
    margin: 0 6px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  font-size: 12px;
  color: #666; }
  .chip--info {
    color: #1a73e8;
    border-color: rgba(26, 115, 232, 0.25);
    background: rgba(26, 115, 232, 0.08); }
  .chip--muted {
    color: #666; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  color: #222;
  background: #fff;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease; }
  .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06); }
  .btn--ghost {
    background: transparent; }
  .btn--primary {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8; }

.card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  transition: box-shadow .12s ease; }
  .card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06); }
  .card__row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px; }
    @media (max-width: 900px) {
      .card__row {
        grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) {
      .card__row {
        grid-template-columns: 1fr; } }
  .card__item {
    display: flex;
    flex-direction: column;
    gap: 4px; }
    .card__item--full {
      grid-column: 1 / -1; }
  .card__label {
    font-size: 12px;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 6px; }
  .card__value {
    font-size: 16px;
    color: #222;
    font-weight: 700; }
  .card__actions {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px; }
  .card__summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    position: relative;
    padding-right: 16px; }
    .card__summary::after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      width: 10px;
      height: 10px;
      border: 2px solid #666;
      border-left: none;
      border-top: none;
      transform: translateY(-50%) rotate(45deg);
      transition: transform .12s ease; }
  .card[open] .card__summary::after {
    transform: translateY(-50%) rotate(225deg); }
  .card__body {
    margin-top: 8px; }

.icon::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .9; }

.icon--salary::before {
  background-image: url("../icon/salary.png"); }

.icon--deadline::before {
  background-image: url("../icon/deadline.png"); }

.icon--academic::before {
  background-image: url("../icon/edu.png"); }

@media (prefers-reduced-motion: reduce) {
  .btn, .card {
    transition: none; } }

/*# sourceMappingURL=csb_gov_vacancies_detail.css.map */