/*******BLOG CARD********/
.recruit_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  flex-wrap: wrap;
}

.recruit_card {
  display: block;
  width: calc(50% - 10px);
  height: 100%;
  border: 1px dotted #696969;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .recruit_card {
    width: 100%;
  }
}

.recruit_card:hover {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.recruit_card .top_image {
  overflow: hidden;
}

.recruit_card .top_image img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

.recruit_card .blog-body {
  padding: 2em 1em 1em;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
}

.recruit_card .blog-body .card-title {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0;
}

.recruit_card .blog-body .card-title small {
  font-size: 0.8rem;
  font-weight: 400;
  color: #696969;
}

.recruit_card .blog-body .card-text {
  font-size: 1.1rem;
  font-weight: 400;
  color: #696969;
}

.recruit_card .blog-body p:has(a.btn) {
  display: block;
  width: 100%;
  text-align: center;
}

.empty {
  width: 100% !important;
}

/*******BLOG CARD********/
/*# sourceMappingURL=recruit.css.map */