/* ── Country Jobs Section block ─────────────────────────────────────────── */

.olixir-country-jobs-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background-color: #0c0b0a;
  background-image: var(--jobs-bg, none);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.olixir-country-jobs-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.olixir-country-jobs-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.olixir-country-jobs-section__title {
    margin: 0;
    padding: 0 10px 0 0;
    color: var(--paper);
    background: linear-gradient(90deg, #a68ce1 0%, #8ca5dd 25%, #a7eadb 50%, #e1f5bc 75%, #e57c74 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 6rem;
    letter-spacing: -10px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
}

.olixir-country-jobs-section__description {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.3px;
  max-width: 600px;
}

.olixir-country-jobs-section__link {
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #6d7be6;
  color: var(--paper);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 200;
  text-transform: uppercase;
  padding: 10px 25px 9px 25px;
  transition: background-color 0.2s ease;

  &:hover {
    background-color: #3d469e;
  }
}

@media (max-width: 768px) {
  .olixir-country-jobs-section__title {
    padding: 0 5px 0 0;
    font-size: 2.85rem;
    letter-spacing: -5px;
    font-weight: 800;
  }

  .olixir-country-jobs-section__link {
    font-size: 0.7rem;
    padding: 6px 15px 5px 15px;
  }

}

/* ── Editor preview ─────────────────────────────────────────────────────── */

.editor-styles-wrapper .olixir-country-jobs-section.is-editor-preview {
  width: min(100%, 920px);
  margin-inline: auto;
  min-height: 50vh;
  background-color: #1a1713;
}

.editor-styles-wrapper .olixir-country-jobs-section__link-preview {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.editor-styles-wrapper .olixir-country-jobs-section__link-preview .olixir-country-jobs-section__link {
  display: inline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.editor-styles-wrapper .olixir-country-jobs-section__link-preview .olixir-country-jobs-section__link-url {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  font-style: italic;
}

.editor-styles-wrapper .olixir-country-jobs-section__link-placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  font-style: italic;
  margin: 0;
}