/* =====================================================
   SOCIAL LINKS BESIDE ALL JOBS
   ===================================================== */

.ljh-jobs-heading-container {
  position: relative !important;
  min-height: 4.5rem;
  padding-right: 11rem !important;
}

.ljh-jobs-social {
  position: absolute;
  top: 0.35rem;
  right: 0;

  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ljh-follow-label {
  color: #526273;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.ljh-social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ljh-social-icons a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  width: 2rem !important;
  height: 2rem !important;
  min-width: 0 !important;
  padding: 0 !important;

  color: #29765e !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  text-decoration: none !important;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ljh-social-icons a:hover {
  color: #0b2e59 !important;
  background: transparent !important;
  transform: translateY(-2px);
}


/* Facebook icon */
.ljh-facebook-icon {
  display: block;
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}


/* Instagram icon */
.ljh-instagram-icon {
  position: relative;
  display: block;
  width: 1.65rem;
  height: 1.65rem;
  border: 3px solid currentColor;
  border-radius: 0.45rem;
  box-sizing: border-box;
}

.ljh-instagram-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.65rem;
  height: 0.65rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.ljh-instagram-icon::after {
  content: "";
  position: absolute;
  top: 0.22rem;
  right: 0.22rem;
  width: 0.22rem;
  height: 0.22rem;
  background: currentColor;
  border-radius: 50%;
}


/* LinkedIn icon */
.ljh-linkedin-icon {
  display: block;
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.1em;
}


/* Mobile */
@media (max-width: 700px) {
  .ljh-jobs-heading-container {
    min-height: 0;
    padding-right: 0 !important;
  }

  .ljh-jobs-social {
    position: static;
    margin-top: 1rem;
  }
}