.component-customer-service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.component-customer-service.is-popup {
  grid-template-columns: repeat(1, auto);
}
.cpn_cs_block .img-circle-cover {
  width: 74px;
  height: 74px;
  border: unset;
}
.cpn_cs_block {
  display: grid;
  padding: 16px;
  align-items: center;
  gap: 16px;
  grid-template-columns: fit-content(100%) 1fr;
  flex: 1 0 0;
  border-radius: 12px;
  border: 1px solid var(--Conditional-divider, rgba(0, 0, 0, 0.06));
  background: var(--character-primary-inverse, #fff);
  text-align: left;
}
.cpn_cs_block .cpn_cs_block_content {
  background: rgba(0, 0, 0, 0.06);
  width: 1px;
  height: 100%;
}
.cpn_cs_block .agent-name {
  color: var(--character-title-85, rgba(0, 0, 0, 0.85)) !important;
  text-align: start;
  margin: 0;
  /* Body/bold */
  font-size: 14px;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 157.143% */
  margin-bottom: 4px;
}
.cpn_cs_icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 23.5px;
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 23.5px;
}
.employer-theme .cpn_cs_icon-wrapper {
  border: 1px solid var(--blue-200, #c3ddfd);
  background: linear-gradient(
    90deg,
    var(--blue-100, #e1effe) 0%,
    var(--white, #fff) 100%
  );
}

.jobseeker-theme .cpn_cs_icon-wrapper {
  border: 1px solid var(--orange-200, #fcd9bd);
  background: linear-gradient(
    90deg,
    var(--orange-100, #feecdc) 0%,
    var(--white, #fff) 100%
  );
}
.cpn_cs_block_content_text .contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.cpn_cs_block_content_text .phone_text {
  color: var(--blue-500, #3f83f8);

  /* text-sm/font-normal */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  text-decoration: none;
}
.cpn_cs_block_content_text .phone_text:hover {
  text-decoration: underline;
}

.cpn_cs_block_content_text .zalo-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 6px 12px;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  font-weight: 600;
  font-family: Inter;
  white-space: nowrap;
}

.cpn_cs_block_content_text .zalo-button.employer-zalo {
  background: linear-gradient(135deg, #5a60f1 0%, #5a60f1 100%);
  box-shadow: 0 2px 4px rgba(90, 96, 241, 0.3);
}

.cpn_cs_block_content_text .zalo-button.employer-zalo:hover {
  background: linear-gradient(135deg, #4a50d1 0%, #4a50d1 100%);
  box-shadow: 0 4px 8px rgba(90, 96, 241, 0.4);
  transform: translateY(-1px);
}

.cpn_cs_block_content_text .zalo-button.jobseeker-zalo {
  background: linear-gradient(135deg, #f07e1d 0%, #f07e1d 100%);
  box-shadow: 0 2px 4px rgba(240, 126, 29, 0.3);
}

.cpn_cs_block_content_text .zalo-button.jobseeker-zalo:hover {
  background: linear-gradient(135deg, #d06e1a 0%, #d06e1a 100%);
  box-shadow: 0 4px 8px rgba(240, 126, 29, 0.4);
  transform: translateY(-1px);
}

.cpn_cs_block_content_text .email_text {
  margin-top: 2px;
}
.cpn_cs_block_content_text .email_text .email_text_link {
  color: var(--Tertiary_Em, #366eff) !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 157.143% */
}
@media (max-width: 480px) {
  .component-customer-service {
    grid-template-columns: repeat(1, auto);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .cpn_cs_block {
    padding: 16px !important;
    width: 100%;
    box-sizing: border-box;
  }

  .cpn_cs_block_content_text .contact-actions {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .cpn_cs_block_content_text .phone_text {
    flex: 1;
    min-width: 0;
  }

  .cpn_cs_block_content_text .zalo-button {
    width: 90px;
    min-width: 90px;
    max-width: 90px;
    flex-shrink: 0;
  }
}
