/* =========================================================
   ELEVN CAREER / OPPORTUNITIES
   Native-inspired football opportunity UI
   ========================================================= */


/* ---------------------------------------------------------
   Opportunity container
   --------------------------------------------------------- */

.elevn-opportunity {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

body.night-mode .elevn-opportunity {
  background: var(--card-dark-color);
  border: 1px solid rgba(255,255,255,.06);
}

body:not(.night-mode) .elevn-opportunity {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
}


/* ---------------------------------------------------------
   Cover
   --------------------------------------------------------- */

.elevn-opportunity-cover {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.elevn-opportunity-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.elevn-opportunity-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.02) 35%,
    rgba(0,0,0,.62) 100%
  );
}


/* ---------------------------------------------------------
   Cover badges
   --------------------------------------------------------- */

.elevn-opportunity-cover-meta {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.elevn-opportunity-type,
.elevn-opportunity-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 30px;
  padding: 6px 11px;

  border-radius: 999px;

  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.elevn-opportunity-type {
  color: #fff;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.16);
}

.elevn-opportunity-status.is-open {
  color: #d9ffe5;
  background: rgba(22,163,74,.76);
  border: 1px solid rgba(255,255,255,.14);
}

.elevn-opportunity-status.is-closed {
  color: #fff;
  background: rgba(90,90,90,.76);
  border: 1px solid rgba(255,255,255,.14);
}


/* ---------------------------------------------------------
   Main content
   --------------------------------------------------------- */

.elevn-opportunity-content {
  padding: 17px;
}

.elevn-opportunity-title {
  margin: 0;

  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.02em;
}

.elevn-opportunity-title a {
  color: inherit !important;
  text-decoration: none !important;
}

body.night-mode .elevn-opportunity-title {
  color: #fff;
}

body:not(.night-mode) .elevn-opportunity-title {
  color: #111;
}


/* ---------------------------------------------------------
   Location
   --------------------------------------------------------- */

.elevn-opportunity-location {
  display: flex;
  align-items: center;
  gap: 7px;

  margin-top: 8px;

  font-size: 14px;
  line-height: 1.35;
}

.elevn-opportunity-location i {
  font-size: 14px;
}

body.night-mode .elevn-opportunity-location {
  color: rgba(255,255,255,.62);
}

body:not(.night-mode) .elevn-opportunity-location {
  color: #6b7280;
}


/* ---------------------------------------------------------
   Native-style chips
   --------------------------------------------------------- */

.elevn-opportunity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;

  margin-top: 15px;
}

.elevn-opportunity-chip {
  display: inline-flex;
  align-items: center;

  min-height: 29px;
  padding: 6px 10px;

  border-radius: 999px;

  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

body.night-mode .elevn-opportunity-chip {
  color: #e9eaf0;
  background: var(--card-dark-hover);
  border: 1px solid rgba(255,255,255,.07);
}

body:not(.night-mode) .elevn-opportunity-chip {
  color: #374151;
  background: #f0f2f5;
  border: 1px solid rgba(0,0,0,.05);
}


/* ---------------------------------------------------------
   Compensation
   --------------------------------------------------------- */

.elevn-opportunity-compensation {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 15px;
  padding: 11px 13px;

  border-radius: 12px;

  font-size: 14px;
  font-weight: 600;
}

body.night-mode .elevn-opportunity-compensation {
  color: #fff;
  background: var(--card-dark-input);
  border: 1px solid rgba(255,255,255,.06);
}

body:not(.night-mode) .elevn-opportunity-compensation {
  color: #111;
  background: #f5f6f8;
  border: 1px solid rgba(0,0,0,.05);
}


/* ---------------------------------------------------------
   Description
   --------------------------------------------------------- */

.elevn-opportunity-description {
  margin-top: 17px;
}


/* ---------------------------------------------------------
   Actions
   --------------------------------------------------------- */

.elevn-opportunity-actions {
  margin-top: 16px;
}

.elevn-opportunity-actions .btn {
  min-height: 46px;
  border-radius: 13px;
  font-weight: 700;
}


/* ---------------------------------------------------------
   Mobile - native app feeling
   --------------------------------------------------------- */

@media (max-width: 767.98px) {

  .elevn-opportunity {
    border-radius: 0;
    border-left: 0 !important;
    border-right: 0 !important;
  }

  .elevn-opportunity-cover {
    aspect-ratio: 16 / 10;
  }

  .elevn-opportunity-cover-meta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .elevn-opportunity-content {
    padding: 15px;
  }

  .elevn-opportunity-title {
    font-size: 19px;
  }

  .elevn-opportunity-chips {
    flex-wrap: nowrap;
    overflow-x: auto;

    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 2px;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .elevn-opportunity-chips::-webkit-scrollbar {
    display: none;
  }

  .elevn-opportunity-chip {
    flex: 0 0 auto;
  }

  .elevn-opportunity-actions .btn {
    width: 100%;
    min-height: 48px;
  }

}


/* ---------------------------------------------------------
   Touch feedback
   --------------------------------------------------------- */

@media (hover: hover) {

  .elevn-opportunity-title a:hover {
    opacity: .82;
  }

}

.elevn-opportunity-actions .btn:active {
  transform: scale(.985);
}

/* =========================================================
   ELEVN Player Application
   ========================================================= */

.elevn-player-apply-header {
  align-items: flex-start;
  padding: 20px 22px;
}

.elevn-player-apply-header .modal-title {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 800;
}

.elevn-player-apply-subtitle {
  color: var(--text-muted-color, #7d8790);
  font-size: 13px;
  line-height: 1.45;
}

.elevn-player-apply-form .modal-body {
  padding: 20px 22px;
}

.elevn-apply-section {
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--divider-color, rgba(0, 0, 0, 0.08));
  border-radius: 16px;
  background: var(--card-color, #fff);
}

.elevn-apply-section:last-of-type {
  margin-bottom: 0;
}

.elevn-apply-section-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.elevn-apply-section-head-between {
  justify-content: space-between;
  gap: 18px;
}

.elevn-apply-section-head-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.elevn-apply-section-number {
  display: inline-flex;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--main-color, #09caf0);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.elevn-apply-section-title {
  color: var(--text-color, #1f2933);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.elevn-apply-section-description {
  margin-top: 3px;
  color: var(--text-muted-color, #7d8790);
  font-size: 12px;
  line-height: 1.45;
}

.elevn-required-mark {
  color: #dc3545;
}

.elevn-field-optional {
  margin-left: 5px;
  color: var(--text-muted-color, #7d8790);
  font-size: 11px;
  font-weight: 500;
}

.elevn-character-counter {
  margin-top: 6px;
  color: var(--text-muted-color, #7d8790);
  font-size: 11px;
  text-align: right;
}

.elevn-one-selection-counter {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--main-color, #09caf0);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.elevn-one-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.elevn-one-pick {
  position: relative;
  display: block;
  min-width: 0;
  margin: 0;
  cursor: pointer;
}

.elevn-one-pick input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.elevn-one-pick-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #111;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.elevn-one-pick:hover .elevn-one-pick-media {
  transform: translateY(-2px);
}

.elevn-one-pick.is-selected .elevn-one-pick-media {
  border-color: var(--main-color, #09caf0);
  box-shadow: 0 0 0 3px rgba(9, 202, 240, 0.16);
  transform: translateY(-2px);
}

.elevn-one-pick-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.elevn-one-pick-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.85);
  font-size: 24px;
}

.elevn-one-pick-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8px;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.18s ease;
}

.elevn-one-pick.is-selected .elevn-one-pick-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.elevn-one-pick-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  color: transparent;
  font-size: 11px;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.elevn-one-pick.is-selected .elevn-one-pick-check {
  border-color: var(--main-color, #09caf0);
  background: var(--main-color, #09caf0);
  color: #fff;
}

.elevn-one-pick-selected-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--main-color, #09caf0);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.elevn-one-pick.is-selected .elevn-one-pick-selected-label {
  opacity: 1;
  transform: translateY(0);
}

.elevn-one-pick-badge {
  position: absolute;
  left: 7px;
  bottom: 7px;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.elevn-one-picker-help {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--text-muted-color, #7d8790);
  font-size: 11px;
}

.elevn-one-empty-state {
  padding: 26px 18px;
  border: 1px dashed var(--divider-color, rgba(0, 0, 0, 0.12));
  border-radius: 14px;
  text-align: center;
}

.elevn-one-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--main-color, #09caf0);
  color: #fff;
}

.elevn-one-empty-title {
  color: var(--text-color, #1f2933);
  font-size: 14px;
  font-weight: 800;
}

.elevn-one-empty-description {
  margin-top: 4px;
  color: var(--text-muted-color, #7d8790);
  font-size: 12px;
}

.elevn-player-apply-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
}

.elevn-player-apply-footer-note {
  color: var(--text-muted-color, #7d8790);
  font-size: 11px;
  line-height: 1.4;
}

.elevn-player-apply-submit {
  flex: 0 0 auto;
  min-width: 190px;
  font-weight: 800;
}

body.night-mode .elevn-apply-section {
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--card-dark-color);
}

body.night-mode .elevn-apply-section-title,
body.night-mode .elevn-one-empty-title {
  color: #fff;
}

body.night-mode .elevn-one-empty-state {
  border-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 767.98px) {
  .elevn-player-apply-header {
    padding: 16px;
  }

  .elevn-player-apply-form .modal-body {
    padding: 12px;
  }

  .elevn-apply-section {
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .elevn-one-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .elevn-player-apply-footer {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
  }

  .elevn-player-apply-footer-note {
    text-align: center;
  }

  .elevn-player-apply-submit {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .elevn-apply-section-head-between {
    align-items: flex-start;
  }

  .elevn-one-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* =========================================================
   ELEVN Recruiter Player Candidate
   ========================================================= */

.elevn-player-candidate {
  overflow: hidden;
}

.elevn-candidate-section {
  margin-top: 16px;
}

.elevn-candidate-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--text-color, #1f2933);
  font-size: 15px;
  font-weight: 800;
}

.elevn-candidate-section-title i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--main-color, #09caf0);
  color: #fff;
  font-size: 11px;
}

.elevn-candidate-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.elevn-candidate-profile-item {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--divider-color, rgba(0, 0, 0, 0.08));
  border-radius: 12px;
  background: var(--card-color, #fff);
}

.elevn-candidate-profile-label {
  margin-bottom: 3px;
  color: var(--text-muted-color, #7d8790);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.elevn-candidate-profile-value {
  overflow-wrap: anywhere;
  color: var(--text-color, #1f2933);
  font-size: 13px;
  font-weight: 800;
}

.elevn-candidate-introduction {
  margin-top: 10px;
  padding: 14px;
  border-left: 3px solid var(--main-color, #09caf0);
  border-radius: 0 12px 12px 0;
  background: rgba(9, 202, 240, 0.07);
}

.elevn-candidate-introduction-text {
  overflow-wrap: anywhere;
  color: var(--text-color, #1f2933);
  font-size: 13px;
  line-height: 1.6;
}

.elevn-candidate-highlights-section {
  margin-top: 18px;
}

.elevn-candidate-highlights-title {
  margin-bottom: 14px;
}

.elevn-candidate-highlights-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color, #1f2933);
  font-size: 15px;
  font-weight: 800;
}

.elevn-candidate-highlights-heading i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--main-color, #09caf0);
  color: #fff;
  font-size: 11px;
}

.elevn-candidate-highlights-subtitle {
  margin-top: 4px;
  margin-left: 36px;
  color: var(--text-muted-color, #7d8790);
  font-size: 11px;
  line-height: 1.4;
}

.elevn-candidate-video-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.elevn-candidate-video-card {
  overflow: hidden;
  border: 1px solid var(--divider-color, rgba(0, 0, 0, 0.08));
  border-radius: 15px;
  background: var(--card-color, #fff);
}

.elevn-candidate-video-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 240px;
  background: #000;
}

.elevn-candidate-video {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(68vh, 620px);
  margin: 0 auto;
  background: #000;
  object-fit: contain;
}

.elevn-candidate-video-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.elevn-candidate-video-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
}

.elevn-candidate-video-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.elevn-candidate-video-label {
  color: var(--text-color, #1f2933);
  font-size: 12px;
  font-weight: 800;
}

.elevn-candidate-video-views {
  flex: 0 0 auto;
  color: var(--text-muted-color, #7d8790);
  font-size: 10px;
  font-weight: 600;
}

.elevn-candidate-video-open {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  color: var(--main-color, #09caf0);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.elevn-candidate-video-open:hover {
  color: var(--main-color, #09caf0);
  text-decoration: underline;
}

body.night-mode .elevn-candidate-video-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--card-dark-color);
}

body.night-mode .elevn-candidate-highlights-heading,
body.night-mode .elevn-candidate-video-label {
  color: #fff;
}

@media (max-width: 767.98px) {
  .elevn-candidate-video-stack {
    gap: 14px;
  }

  .elevn-candidate-video-frame {
    min-height: 220px;
  }

  .elevn-candidate-video {
    width: 100%;
    max-height: min(68vh, 620px);
  }

  .elevn-candidate-video-footer {
    align-items: flex-start;
    padding: 10px;
  }

  .elevn-candidate-video-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .elevn-candidate-video-open {
    font-size: 10px;
  }
}

body.night-mode .elevn-candidate-section-title,
body.night-mode .elevn-candidate-profile-value,
body.night-mode .elevn-candidate-introduction-text,
body.night-mode .elevn-candidate-highlight-footer {
  color: #fff;
}

body.night-mode .elevn-candidate-profile-item,
body.night-mode .elevn-candidate-highlight {
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--card-dark-color);
}

body.night-mode .elevn-candidate-introduction {
  background: rgba(9, 202, 240, 0.1);
}

@media (max-width: 767.98px) {
  .elevn-candidate-profile-grid {
    grid-template-columns: 1fr;
  }

  .elevn-candidate-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .elevn-candidate-highlight-footer {
    padding: 7px;
    font-size: 10px;
  }

  .elevn-candidate-highlight-views {
    display: none;
  }

  .elevn-candidate-highlight-play {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }
}

/* =========================================================
   ELEVN Career Listing Card
   ========================================================= */

.elevn-career-card {
  position: relative;
  overflow: hidden;
  height: calc(100% - 20px);
  margin-bottom: 20px;
  border: 1px solid var(--divider-color, rgba(0, 0, 0, 0.08));
  border-radius: 18px;
  background: var(--card-color, #fff);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.elevn-career-card:hover {
  border-color: rgba(9, 202, 240, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.13);
}

.elevn-career-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
}

.elevn-career-cover-link,
.elevn-career-cover-link img,
.elevn-career-cover-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.elevn-career-cover-link img {
  object-fit: cover;
  transition: transform 0.3s ease;
}

.elevn-career-card:hover .elevn-career-cover-link img {
  transform: scale(1.035);
}

.elevn-career-cover-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 40px;
}

.elevn-career-cover-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.04) 42%,
      rgba(0, 0, 0, 0.72) 100%
    );
  pointer-events: none;
}

.elevn-career-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 10, 17, 0.74);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.elevn-career-type-badge-legacy {
  background: rgba(31, 156, 255, 0.82);
}

.elevn-career-compensation {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  max-width: 54%;
  padding: 7px 10px;
  border-radius: 11px;
  background: rgba(9, 202, 240, 0.92);
  color: #001014;
  text-align: right;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.elevn-career-compensation-main {
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
}

.elevn-career-compensation-detail {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
}

.elevn-career-cover-actions {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 1;
  transform: none;
  transition: transform 0.2s ease;
}

.elevn-career-card:hover .elevn-career-cover-actions,
.elevn-career-card:focus-within .elevn-career-cover-actions {
  transform: translateY(-2px);
}

.elevn-career-content {
  padding: 16px;
}

.elevn-career-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 46px;
  margin-bottom: 9px;
  color: var(--text-color, #1f2933);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.elevn-career-title:hover {
  color: var(--main-color, #09caf0);
  text-decoration: none;
}

.elevn-career-location,
.elevn-career-engagement,
.elevn-career-reviews {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted-color, #7d8790);
  font-size: 12px;
  line-height: 1.4;
}

.elevn-career-location i {
  color: #1f9cff;
}

.elevn-career-engagement {
  margin-top: 11px;
}

.elevn-career-engagement i {
  color: #2bb431;
}

.elevn-career-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.elevn-career-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 27px;
  padding: 5px 8px;
  border: 1px solid rgba(9, 202, 240, 0.18);
  border-radius: 999px;
  background: rgba(9, 202, 240, 0.07);
  color: var(--text-color, #1f2933);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.elevn-career-chip i {
  color: var(--main-color, #09caf0);
  font-size: 9px;
}

.elevn-career-reviews {
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--divider-color, rgba(0, 0, 0, 0.08));
}

body.night-mode .elevn-career-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--card-dark-color);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.24);
}

body.night-mode .elevn-career-card:hover {
  border-color: rgba(9, 202, 240, 0.32);
}

body.night-mode .elevn-career-title,
body.night-mode .elevn-career-chip {
  color: #fff;
}

body.night-mode .elevn-career-chip {
  border-color: rgba(9, 202, 240, 0.2);
  background: rgba(9, 202, 240, 0.09);
}

body.night-mode .elevn-career-reviews {
  border-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767.98px) {
  .elevn-career-card {
    height: auto;
    border-radius: 16px;
  }

  .elevn-career-cover {
    aspect-ratio: 16 / 9;
  }

  .elevn-career-type-badge {
    top: 9px;
    left: 9px;
  }

  .elevn-career-compensation {
    top: 9px;
    right: 9px;
  }

  .elevn-career-cover-actions {
    right: 9px;
    bottom: 9px;
    left: 9px;
  }

  .elevn-career-content {
    padding: 14px;
  }
}
