.tag-detail {
  padding: 40px 0;
  min-height: 60vh;
  background: #fff;
}
.tag-detail .tag-header {
  text-align: center;
  margin-bottom: 20px;
}
.tag-detail .tag-header .tag-title {
  font-size: 30px;
  font-weight: 700;
  color: #222;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.tag-detail .tag-header .tag-title svg {
  width: 24px;
  height: 24px;
  color: #941b0c;
}
.tag-detail .tag-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tag-detail .tag-tabs .tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #757575;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tag-detail .tag-tabs .tab-btn:hover {
  background: #efefef;
  color: #222;
}
.tag-detail .tag-tabs .tab-btn.active {
  background: #941b0c;
  color: #fff;
  border-color: #941b0c;
}
.tag-detail .tag-tabs .tab-btn .tab-icon {
  font-size: 18px;
}
.tag-detail #tag-pagination-container {
  display: flex;
  justify-content: center;
}

.recruitment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.recruitment-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 16px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  width: calc((100% - 40px) / 3);
}
.recruitment-card:hover {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.recruitment-card__logo {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruitment-card__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.recruitment-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 110px);
}
.recruitment-card__content .recruitment-card__location {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-end;
}
.recruitment-card__content .location-item {
  font-size: 14px;
  color: #757575;
}

.recruitment-card__title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: #000;
}
.recruitment-card:hover .recruitment-card__title {
  color: #941b0c;
}

.recruitment-card__meta {
  font-size: 16px;
  color: #000;
}

@media screen and (max-width: 960px) {
  .recruitment-list {
    flex-direction: column;
    gap: 12px;
  }
  .recruitment-list .recruitment-card {
    width: 100%;
    gap: 12px;
  }
  .recruitment-list .recruitment-card .recruitment-card__logo {
    width: 60px;
    height: 60px;
  }
  .recruitment-list .recruitment-card .recruitment-card__content {
    width: 100%;
  }
  .recruitment-list .recruitment-card .recruitment-card__content .recruitment-card__title {
    font-size: 16px;
  }
  .recruitment-list .recruitment-card .recruitment-card__content .recruitment-card__meta {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .tag-header {
    margin-top: 50px;
  }
  .tag-detail .tag-tabs {
    margin-bottom: 24px;
  }
}
