/* Jobs / Open Positions Listing — exact match to provided design (image + card SVG + filter CSS) */
.xperia-jobs-listing {
  color: #ffffff;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  max-width: 1240px;
  margin: 0;
  width: 100%;
}

.jobs-header {
  margin-bottom: 24px;
}

.jobs-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 12px;
  color: #ffffff;
}

.jobs-subtitle {
  font-size: 15px;
  line-height: 1.55;
  color: #9ca3af;
  max-width: 620px;
  margin: 0;
}

/* Filter bar — exact per provided CSS + SVG (Frame 2147225258 / filter components) */
.jobs-filter-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 19px;
  max-width: 1240px;
  margin: 0 auto 56px;
  flex-wrap: wrap;
  width: 100%!important;
  justify-content: space-between;
}

.filter-by-label {
  width: 74px;
  height: 29px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  text-align: center;
  color: #FFFFFF;
  opacity: 0.6;
  flex: none;
  white-space: nowrap;
}

.jobs-filter-select-container{
  display: flex;
  justify-content: space-between;
  gap: 19px;
  width: calc(100% - 100px);
}

/* The three tall filter boxes — 369.67px × 69px, border, radius 12px, padding 20px 24px */
.jobs-filter-select {
  box-sizing: border-box;
  width: calc((100% - 38px)/3);
  height: 69px;
  flex: none;

  display: block;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: #FFFFFF;

  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px 52px 20px 24px; /* room for chevron */

  cursor: pointer;
  transition: border-color .2s ease;
}

/* Custom down chevron matching the Huge-icon style in the SVG */
.jobs-filter-select {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 24px 24px;
}

.jobs-filter-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.45);
}

.jobs-filter-select option {
  background: #0A0A0A;
  color: #FFFFFF;
}

/* Job cards — exact structure & styling from the provided card SVG + Component 22 CSS */
.jobs-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.job-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 32px 60px;
  gap: 32px;

  width: 100%;
  max-width: 1240px;
  height: 134px;

  background: linear-gradient(180deg, #1E1E1E 0%, #141414 100%), #0A0A0A;
  border-radius: 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.job-card:hover {
  transform: translateY(-2px);
}

.job-info-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex: 1;
  min-width: 0;
}

/* Left column (title + tag) — approx 269px area per spec */
.job-title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  max-width: 280px;
}

.job-title {
  width: 100%;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%; /* ~29px */
  color: #FFFFFF;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* "Development • Full time" — exact #71FFD7 */
.job-tag-line {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: #71FFD7;
  white-space: nowrap;
}

/* Meta column (location + Hybrid) — approx 190px + 57px per spec, gap 12px */
.job-meta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 190px;
}

.job-location {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: #FFFFFF;
  margin: 0;
}

.job-mode {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: #FFFFFF;
  margin: 0;
}

/* Apply Now button — exact from spec (gradient, border #71FFD7, radius 8px, 16px text #0A0A0A, padding) */
.job-apply-btn {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 40px;

  width: 161px;
  height: 48px;

  background: linear-gradient(180deg, #2BFFC3 0%, #1A9975 100%);
  border: 1px solid #71FFD7;
  border-radius: 8px;

  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #0A0A0A!important;
  text-decoration: none;
  white-space: nowrap;
  transition: filter .15s ease, transform .15s ease;
}

.job-apply-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Small right arrow inside button for fidelity (from design language) */
.job-apply-btn svg {
  flex: none;
}

.wylwax-sec-para-fbtl{
  width: 556px!important;
}

/* Responsive adjustments to keep fidelity on smaller viewports */
@media (max-width: 1100px) {
  .xperia-jobs-listing {
  }

  .job-card {
    height: auto;
    min-height: 134px;
    padding: 24px 28px;
    gap: 20px;
  }

  .job-info-group {
    gap: 20px;
  }
}

@media screen and (max-width: 991px) {
  .jobs-filter-select-container{
    flex-wrap: wrap;
    width: 100%;
  }

  .jobs-filter-select{
    width: 100%;
  }

  .job-info-group{
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 24px;
  }

  .job-info-group {
    width: 100%;
    gap: 16px;
  }

  .job-title-block,
  .job-meta-block {
    width: 100%;
    max-width: none;
  }

  .job-apply-btn {
    width: 100%;
    height: 48px;
    justify-content: center;
  }

  .jobs-filter-row {
    gap: 12px;
  }

  .jobs-filter-select {
    font-size: 16px;
    padding-right: 44px;
  }
}
