/* Employee module */

/* Top pattern */
.employee_pattern_container {
  background-color: #fff7f0;
  height: var(--gPatternHeight);
}

.employee_pattern_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Module */
.employee_module_wrapper {
  padding: var(--gSectionPadding);
  background-color: #fff7f0;
}

.employee_module_container {
  display: flex;
  flex-direction: column;
  max-width: var(--gMaxWidth);
  margin: 0 auto;
}

.employee_module_title {
  text-align: center;
  margin-bottom: var(--gGap);
}

.employee_module_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--gGap);
  width: 100%;
}

.employee_module_list_item {
  width: calc((100% - (2 * var(--gGap))) / 3);
}

/* Employee module card */
.employee_card_module_container {
  background-color: #f3ece0;
  border: 2px solid #164959;
  height: 600px;
  display: flex;
  flex-direction: column;
}

.employee_card_module_img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.employee_card_module_txt_container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  padding: 2rem;
  width: 100%;
  flex: 1;
  border-top: 2px solid #164959;
}

.employee_card_module_name {
  font-size: 37px;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-transform: none;
  color: #174959;
}

.employee_card_module_position {
  font-size: 15px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #164959;
  text-transform: uppercase;
}

.employee_card_module_mail {
  font-size: 15px;
  letter-spacing: 0.15em;
  color: #164959;
}

.employee_card_module_tlf {
  font-size: 15px;
  letter-spacing: 0.15em;
  color: #164959;
}

@media (max-width: 1280px) {
  .employee_module_list_item {
    width: calc((100% - (1 * var(--gGap))) / 2);
  }
}

@media (max-width: 1024px) {
  .employee_module_list_item {
    width: calc((100% - (1 * var(--gGap))) / 2);
  }
}

@media (max-width: 768px) {
  .employee_module_list_item {
    width: 100%;
  }
}
