/* ========================================
   Component Styles
   Project: DJjobs.uk
======================================== */

/* Reusable UI components (cards, buttons, nav, forms, modals, etc.) */

/*----------------------------------------*/
/* BUTTONS */
/*----------------------------------------*/

.dj-btn-primary {
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  display: inline-block;
  padding: 8px 26px;
  border: 0;
  cursor: pointer;
  transition: background-color 0.3s ease-out, color 0.3s ease-out, border-color 0.3s ease-out, transform 0.3s ease-out;
  color: var(--dj-color-white);
  background-color: var(--dj-color-orange-primary);
}

.dj-btn-primary span {
  line-height: 1;
  margin-right: 4px;
  display: inline-block;
}

.dj-btn-primary:hover {
  color: var(--dj-color-white);
  background-color: var(--dj-color-orange-secondary);
}

.dj-btn-primary.btn-white-bg {
  color: var(--dj-color-black-primary);
  background-color: var(--dj-color-white);
}
.dj-btn-primary.btn-white-bg:hover {
  color: var(--dj-color-black-primary);
  background-color: rgba(255, 255, 255, 0.8);
}

.dj-btn-primary.bdy-style {
  background-color: transparent;
  color: var(--dj-color-white);
  border: 1px solid var(--dj-color-white);
}

.dj-btn-primary.bdy-style:hover {
  border-color: transparent;
  background-color: var(--dj-color-orange-primary);
}

.dj-btn-primary.bdy-style.orange-bdy {
  color: var(--dj-color-orange-primary);
  border-color: var(--dj-color-orange-primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .dj-btn-primary.bdy-style.orange-bdy {
    padding: 8px 18px;
  }
}

.dj-btn-primary.bdy-style.orange-bdy:hover {
  color: var(--dj-color-white);
}

.dj-btn-primary.bdy-style-black {
  background-color: transparent;
  color: var(--dj-color-black-primary);
  border: 1px solid var(--dj-color-black-primary);
}

.dj-btn-primary.bdy-style-black:hover {
  border-color: transparent;
  color: var(--dj-color-white);
  background-color: var(--dj-color-orange-primary);
}

/*----------------------------------------*/
/* HEADER/NAV */
/*----------------------------------------*/

.dj-site-header {
  background-color: var(--dj-color-white);
  border-bottom: 1px solid var(--dj-color-gray-secondary);
  position: sticky;
  top: 0;
  z-index: 30;
  transition: transform 0.36s ease, box-shadow 0.24s ease;
}

.dj-site-header.is-scrolled {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.dj-site-header.is-hidden {
  transform: translateY(-100%);
}

.dj-site-header.is-nav-open {
  transform: translateY(0);
}

.dj-site-header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.dj-site-header-brand {
  display: inline-flex;
  align-items: center;
}

.dj-site-header-brand img {
  width: 184px;
  height: auto;
}

.dj-site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.dj-site-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

.dj-site-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
}

.dj-site-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  color: var(--dj-color-black-primary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.2s ease;
}

.dj-site-nav-link:hover {
  color: var(--dj-color-orange-primary);
}

.has-submenu > .dj-site-nav-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  color: currentColor;
  pointer-events: none;
}

.dj-site-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  margin: 10px 0 0;
  padding: 12px;
  list-style: none;
  border: 1px solid var(--dj-color-gray-secondary);
  border-radius: 12px;
  background-color: var(--dj-color-white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

@media (min-width: 992px) {
  /* Invisible bridge to prevent hover drop-out when moving into submenu */
  .dj-site-submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
  }
}

.has-submenu:hover > .dj-site-submenu,
.has-submenu:focus-within > .dj-site-submenu,
.has-submenu.is-open > .dj-site-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dj-site-submenu li {
  list-style: none;
}

.dj-site-submenu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--dj-color-black-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

.dj-site-submenu a:hover {
  color: var(--dj-color-orange-primary);
  transform: translateX(4px);
  background-color: var(--dj-color-page-bg-primary);
}

.dj-site-nav-cta {
  white-space: nowrap;
  margin-left: auto;
}

@media (min-width: 992px) {
  .dj-site-header-inner {
    position: relative;
  }

  .dj-site-nav-list {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
}

.dj-site-nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--dj-color-black-primary);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.dj-site-nav-toggle:hover {
  color: var(--dj-color-orange-primary);
}

.dj-site-nav-toggle:focus-visible {
  outline: 2px solid var(--dj-color-orange-primary);
  outline-offset: 2px;
}

.dj-site-nav-close {
  display: none;
  border: 0;
  background: transparent;
  color: var(--dj-color-black-primary);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.dj-site-nav-close i {
  display: inline-block;
  transition: transform 0.28s ease;
}

.dj-site-nav-close:hover {
  color: var(--dj-color-orange-primary);
}

.dj-site-nav-close:hover i {
  transform: rotate(90deg);
}

.dj-site-nav-close:focus-visible {
  outline: 2px solid var(--dj-color-orange-primary);
  outline-offset: 2px;
}

@media (max-width: 991.98px) {
  .dj-site-header-inner {
    min-height: 76px;
    justify-content: flex-start;
  }

  .dj-site-header-brand img {
    width: 165px;
  }

  .dj-site-nav-toggle {
    display: inline-flex;
    position: relative;
    top: 2px;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .dj-site-nav {
    margin-left: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: min(400px, 100%);
    height: 100vh;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 48px 24px 40px;
    overflow-y: auto;
    scrollbar-width: none;
    border: 0;
    border-radius: 0;
    background-color: var(--dj-color-white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.32s ease, visibility 0s linear 0.42s;
  }

  .dj-site-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.32s ease, visibility 0s linear 0s;
  }

  .dj-site-nav::-webkit-scrollbar {
    display: none;
  }

  .dj-site-nav-close {
    display: inline-flex;
    position: absolute;
    top: 8px;
    right: 12px;
  }

  .dj-site-nav-list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .dj-site-nav-item {
    width: 100%;
    display: block;
  }

  .dj-site-nav-link {
    position: relative;
    width: 100%;
    justify-content: space-between;
    min-height: 38px;
    padding: 4px 42px 4px 0;
    transition: padding 0.28s ease, border-bottom-color 0.28s ease;
  }

  .has-submenu > .dj-site-nav-link {
    border-bottom: 1px solid transparent;
  }

  .has-submenu > .dj-site-nav-link:hover,
  .has-submenu > .dj-site-nav-link:focus,
  .has-submenu > .dj-site-nav-link:active {
    color: var(--dj-color-black-primary);
  }

  .has-submenu > .dj-site-nav-link i {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    transform: none;
    color: var(--dj-color-black-primary);
    background-color: var(--dj-color-white);
    border: 1px solid rgba(234, 235, 237, 0.7);
    z-index: 1;
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  }

  .has-submenu > .dj-site-nav-link i::before {
    display: block;
    line-height: 1;
    transform: rotate(-90deg);
    transform-origin: center center;
    transition: transform 0.26s ease;
  }

  .has-submenu:hover > .dj-site-nav-link i,
  .has-submenu:focus-within > .dj-site-nav-link i,
  .has-submenu:focus-visible > .dj-site-nav-link i {
    transform: none;
    background-color: var(--dj-color-orange-primary);
    color: var(--dj-color-white);
    border-color: var(--dj-color-orange-primary);
  }

  .has-submenu.is-open > .dj-site-nav-link i {
    transform: none;
    background-color: var(--dj-color-orange-primary);
    color: var(--dj-color-white);
    border-color: var(--dj-color-orange-primary);
  }

  .has-submenu.is-open > .dj-site-nav-link i::before {
    transform: rotate(0deg);
  }

  .dj-site-submenu {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    width: 100%;
    margin-top: 0;
    padding: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: translateY(-4px);
    pointer-events: none;
    transition: max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.24s ease, transform 0.28s ease, visibility 0s linear 0.36s;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
  }

  .has-submenu.is-open > .dj-site-submenu {
    max-height: 420px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: max-height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.24s ease, transform 0.28s ease, visibility 0s linear 0s;
  }

  .has-submenu.is-open > .dj-site-nav-link {
    border-bottom-color: var(--dj-color-gray-secondary);
    padding-bottom: 12px;
  }

  .dj-site-submenu li {
    position: relative;
  }

  .dj-site-submenu li + li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    right: 0;
    border-top: 1px solid var(--dj-color-gray-secondary);
  }

  .dj-site-submenu li:last-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 0;
    border-bottom: 1px solid var(--dj-color-gray-secondary);
  }

  .dj-site-submenu a {
    padding: 12px 0 12px 10px;
    border-radius: 0;
  }

  .dj-site-submenu a:hover {
    background-color: transparent;
  }

  .dj-site-nav-cta {
    width: 100%;
    text-align: center;
  }
}

/*----------------------------------------*/
/* MEMBER LOGIN MODAL */
/*----------------------------------------*/

.member-login-modal .modal-dialog {
  max-width: 908px;
}

.member-login-modal .modal-content {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(15, 24, 44, 0.2);
}

.member-login-modal .modal-body {
  position: relative;
  padding: 0;
}

.member-login-modal .member-login-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(18, 28, 45, 0.16);
}

.member-login-layout {
  display: grid;
  grid-template-columns: repeat(2, 454px);
}

.member-login-media {
  background-color: var(--dj-color-black-secondary);
}

.member-login-media img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.member-login-content {
  width: 454px;
  height: 500px;
  box-sizing: border-box;
  overflow-y: auto;
  padding: 52px 42px 40px;
}

.member-login-title {
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
}

.member-login-form .form-control {
  min-height: 50px;
  border-radius: 10px;
  border: 1px solid var(--dj-color-gray-primary);
  padding: 0 14px;
}

.member-login-form .form-control:focus {
  border-color: var(--dj-color-orange-primary);
  box-shadow: 0 0 0 3px rgba(253, 70, 33, 0.14);
}

.member-login-help {
  display: inline-block;
  margin: 8px 0 20px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--dj-color-gray-tertiary);
}

.member-login-help:hover,
.member-login-help:focus-visible {
  color: var(--dj-color-orange-primary);
}

.member-login-submit {
  min-height: 50px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
}

.member-login-join {
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.45;
  color: var(--dj-color-gray-tertiary);
}

.member-login-join-link {
  color: var(--dj-color-black-primary);
}

.member-login-join-link:hover,
.member-login-join-link:focus-visible {
  color: var(--dj-color-orange-primary);
}

@media (max-width: 991.98px) {
  .member-login-layout {
    grid-template-columns: 1fr;
  }

  .member-login-media img {
    height: 340px;
  }

  .member-login-content {
    padding: 30px 24px 26px;
  }

  .member-login-title {
    font-size: 28px;
  }
}


/*----------------------------------------*/
/* BREADCRUMB */
/*----------------------------------------*/

.dj-breadcrumb-content {
  display: inline-block;
}

.dj-breadcrumb-list ul,
.dj-breadcrumb-list ol {
  display: flex;
  align-items: center;
  column-gap: 5px;
  margin: 0;
  padding: 0;
}

.dj-breadcrumb-list ul li,
.dj-breadcrumb-list ol li {
  font-size: 16px;
  font-weight: 400;
  list-style: none;
  color: var(--dj-color-black-primary);
}

.dj-breadcrumb-list ul li a:hover,
.dj-breadcrumb-list ol li a:hover {
  color: var(--dj-color-orange-primary);
}

.dj-breadcrumb-list li.divider {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.dj-breadcrumb-list li.divider span {
  display: inline-flex;
  align-items: center;
}

.dj-breadcrumb-list li.divider .fi-chevron-right {
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.dj-breadcrumb-list li.divider .fi-chevron-right::before {
  display: block;
}


/*----------------------------------------*/
/* HEROES */
/*----------------------------------------*/

/* Roster Hero Base */
.dj-roster-hero {
  background-color: var(--section-bg-seven)
}

.dj-roster-hero-copy p {
  max-width: 600px;
}

.dj-roster-hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Collage: Desktop Base */
.dj-roster-collage {
  display: grid;
  grid-template-columns: 260px 260px;
  justify-content: end;
  gap: 14px;
  width: min(100%, 534px);
  height: 560px;
  overflow: hidden;
  margin-left: auto;
  margin-right: 0;
}

.dj-roster-collage-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dj-roster-collage-col:first-child {
  margin-top: -74px;
}

.dj-roster-collage-col.is-offset {
  margin-top: -40px;
}

.dj-roster-collage-card {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f3f4f6;
}

.dj-roster-collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.dj-roster-collage-card:hover img {
  transform: scale(1.05);
}

.dj-roster-collage-col:first-child .dj-roster-collage-card:first-child img {
  object-position: center 72%;
}

.dj-roster-collage-col:first-child .dj-roster-collage-card:last-child img {
  object-position: center top;
}

.dj-roster-collage-card.h-220 { height: 220px; }
.dj-roster-collage-card.h-260 { height: 260px; }
.dj-roster-collage-card.h-280 { height: 280px; }

/* Collage: Large Desktop Tuning */
@media (min-width: 992px) {
  .dj-roster-collage-col.is-offset .dj-roster-collage-card {
    height: 260px;
  }
}

/* Collage: Tablet/Desktop Shared Grid */
@media (max-width: 1199.98px) {
  .dj-roster-hero .dj-container {
    padding-left: 0;
    padding-right: 0;
  }

  .dj-roster-hero .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }

  .dj-roster-hero-media {
    height: 367px;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
  }

  .dj-roster-collage {
    grid-template-columns: 169px 206px 169px;
    grid-template-rows: 172px 187px;
    grid-auto-flow: unset;
    column-gap: 8px;
    row-gap: 8px;
    width: 560px;
    max-width: 100%;
    height: auto;
    overflow: visible;
    justify-content: center;
    margin-inline: 0;
    transform: translateY(-20px);
  }

  .dj-roster-collage-col {
    display: contents;
  }

  .dj-roster-collage-col:first-child,
  .dj-roster-collage-col.is-offset {
    margin-top: 0;
  }

  /* Explicit card placement in the 3x2 grid */
  .dj-roster-collage-card,
  .dj-roster-collage-col.is-offset .dj-roster-collage-card {
    width: 100%;
    height: 100% !important;
  }

  .dj-roster-collage-col:first-child .dj-roster-collage-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    width: 169px;
    height: 140px !important;
  }

  .dj-roster-collage-col:first-child .dj-roster-collage-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    width: 169px;
    height: 140px !important;
  }

  .dj-roster-collage-col:first-child .dj-roster-collage-card:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
    width: 205px;
    height: 172px !important;
  }

  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(1) {
    grid-column: 2;
    grid-row: 2;
    width: 206px;
    height: 187px !important;
  }

  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
    width: 169px;
    height: 140px !important;
  }

  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(3) {
    grid-column: 3;
    grid-row: 2;
    width: 169px;
    height: 140px !important;
  }

  /* Keep side-stack vertical spacing visually aligned with 8px center gap */
  .dj-roster-collage-col:first-child .dj-roster-collage-card:nth-child(2),
  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(3) {
    margin-top: -32px;
  }

  /* Crop bottom-row image content from the bottom edge */
  .dj-roster-collage-col:first-child .dj-roster-collage-card:nth-child(2) img,
  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(1) img,
  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(3) img {
    height: calc(100% + 20px);
    object-position: center top;
  }
}

/* Collage: Tablet / Small Laptop Adjustments */
@media (min-width: 700px) and (max-width: 1199.98px) {
  .dj-roster-hero-copy {
    padding: 28px 24px 0;
  }

  .dj-roster-collage {
    grid-template-columns: 1fr 1.22fr 1fr;
    grid-template-rows: auto auto;
    width: calc(100% + 16px);
    max-width: none;
    margin-left: -8px;
    column-gap: 8px;
    row-gap: 8px;
  }

  .dj-roster-collage-col:first-child .dj-roster-collage-card:nth-child(1),
  .dj-roster-collage-col:first-child .dj-roster-collage-card:nth-child(2),
  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(2),
  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(3) {
    width: 100%;
    height: auto !important;
    aspect-ratio: 169 / 140;
  }

  .dj-roster-collage-col:first-child .dj-roster-collage-card:nth-child(3) {
    width: 100%;
    height: auto !important;
    aspect-ratio: 205 / 172;
  }

  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(1) {
    width: 100%;
    height: auto !important;
    aspect-ratio: 206 / 187;
  }

  /* Keep side-column vertical gaps visually aligned with 8px middle gap */
  .dj-roster-collage-col:first-child .dj-roster-collage-card:nth-child(2),
  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(3) {
    margin-top: clamp(-72px, -6.1vw, -44px);
  }
}

/* Collage: Mobile Layout */
@media (max-width: 699.98px) {
  .dj-roster-hero-media {
    height: 260px;
  }

  .dj-roster-hero-copy {
    padding: 24px 16px 0;
  }

  .dj-roster-collage {
    grid-template-columns: 1fr 1.22fr 1fr;
    grid-template-rows: auto auto;
    width: calc(100% + 16px);
    max-width: none;
    margin-left: -8px;
    column-gap: 8px;
    row-gap: 8px;
  }

  .dj-roster-collage-col:first-child .dj-roster-collage-card:nth-child(1),
  .dj-roster-collage-col:first-child .dj-roster-collage-card:nth-child(2),
  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(2),
  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(3) {
    width: 100%;
    height: auto !important;
    aspect-ratio: 169 / 140;
  }

  .dj-roster-collage-col:first-child .dj-roster-collage-card:nth-child(3) {
    width: 100%;
    height: auto !important;
    aspect-ratio: 205 / 172;
  }

  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(1) {
    width: 100%;
    height: auto !important;
    aspect-ratio: 206 / 187;
  }

  .dj-roster-collage-col:first-child .dj-roster-collage-card:nth-child(1),
  .dj-roster-collage-col:first-child .dj-roster-collage-card:nth-child(2) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(2),
  .dj-roster-collage-col.is-offset .dj-roster-collage-card:nth-child(3) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}


/*----------------------------------------*/
/* ARTICLES */
/*----------------------------------------*/

.article-section {
  background-color: var(--section-bg-eight);
}

.article-section-intro {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.article-section h2 {
  font-size: 28px;
  font-weight: 500;
}

.article-section p {
  font-size: 18px;
}

.article-section-intro p {
  margin-bottom: 0;
}


/*----------------------------------------*/
/* FAQS */
/*----------------------------------------*/

.faqs-wrapper .faqs-item {
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid #eee;
  padding: 0 20px;
  background: transparent;
  overflow: hidden;
}

.faqs-wrapper .faqs-item:last-of-type {
  margin-bottom: 0;
}

.faqs-wrapper .faqs-item > summary {
  position: relative;
  padding: 20px 26px 15px 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  width: 100%;
  text-align: left;
  color: var(--dj-color-black-primary);
  cursor: pointer;
  list-style: none;
}

.faqs-item h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}

.faqs-item h4:not(:first-of-type) {
  margin-top: 30px;
}

.faqs-wrapper .faqs-item > summary::-webkit-details-marker {
  display: none;
}

.faqs-wrapper .faqs-item > summary::after {
  content: "\f147";
  font-family: "dj-icons";
  font-weight: 400;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 16px;
  line-height: 1;
  transition: transform .3s ease;
}

.faqs-wrapper .faqs-item[open] > summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faqs-wrapper .faqs-item > p {
  font-size: 16px;
  margin: 0 0 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 0.48s ease, opacity 0.34s ease, transform 0.34s ease;
}

.faqs-wrapper .faqs-item > p:last-of-type {
  margin-bottom: 0;
}

.faqs-wrapper .faqs-item[open] {
  padding-bottom: 20px;
}

.faqs-wrapper .faqs-item[open] > p {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

/*----------------------------------------*/
/* CTAs */
/*----------------------------------------*/

/* FUll Width CTA 1 */

.fw-cta-section {
  background-color: var(--dj-cta-orange);
}

.fw-cta-section.silver {
  background-color: var(--dj-color-gray-secondary) !important;
  background-image: none;
}

.fw-cta-section.silver .shape-fill {
  fill: var(--dj-color-gray-secondary);
}

.fw-cta-thumb {
  position: relative;
  width: 100%;
}

.fw-cta-thumb img {
  width: 100%;
  display: block;
}

.fw-cta-thumb .shape-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100px;
}

@media (max-width: 991.98px) {
  .fw-cta-thumb .shape-right {
    display: none;
  }

  .fw-cta-heading {
    padding: 50px 30px;
  }
}

.fw-cta-heading .fw-section-title {
  margin-bottom: 8px;
  color: var(--dj-color-white);
}

.fw-cta-section.silver .fw-cta-heading .fw-section-title {
  color: var(--dj-color-black-primary);
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fw-cta-heading .fw-section-title {
    font-size: 30px;
  }
}

.fw-cta-heading p {
  color: var(--dj-color-white);
}

.fw-cta-section.silver p {
  color: var(--dj-color-black-primary);
}

/* Rounded CTAs */

.cta-section {
  background-color: var(--section-bg-eight);
}

.dj-cta {

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  background-color: var(--dj-cta-orange);
    /*
  background-color: var(--dj-color-red);
  */
  border-radius: 24px;
  overflow: hidden;
  padding: 60px 60px;
  color: var(--dj-color-white);
}

.dj-cta h2 {
  color: var(--dj-color-white);
  font-size: 32px;
}

.dj-cta p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  padding: 0;
  margin: 0;
}


/*----------------------------------------*/
/* FOOTER */
/*----------------------------------------*/

.footer-wrap {
  background-color: var(--dj-color-footer-bg);
}

.footer-description {
  color: var(--dj-color-gray-tertiary);
  padding-right: 50px;
}

.footer-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dj-color-gray-secondary);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: var(--dj-color-gray-secondary);
}

a.hover-line,
button.hover-line {
  position: relative;
  display: inline-block;
  transition: color 0.2s ease-in-out;
}

a.hover-line::before,
button.hover-line::before,
a.hover-line::after,
button.hover-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
}

a.hover-line::before,
button.hover-line::before {
  background-color: var(--dj-color-gray-secondary);
  transition: transform 0.22s ease-in-out;
}

a.hover-line::after,
button.hover-line::after {
  background-color: var(--dj-color-orange-primary);
  transition: transform 0.26s ease-in-out;
}

a.hover-line:hover,
a.hover-line:focus-visible,
button.hover-line:hover,
button.hover-line:focus-visible {
  color: var(--dj-color-orange-primary);
}

a.hover-line:hover::before,
a.hover-line:focus-visible::before,
button.hover-line:hover::before,
button.hover-line:focus-visible::before {
  transform: scaleX(1);
  transition-delay: 0.06s;
}

a.hover-line:hover::after,
a.hover-line:focus-visible::after,
button.hover-line:hover::after,
button.hover-line:focus-visible::after {
  transform: scaleX(1);
  transition-delay: 0.24s;
}

.footer-bottom {
  border-top: 1px solid var(--dj-color-line);
}

.footer-bottom {
  color: var(--dj-color-gray-secondary);
}

.footer-bottom-text {
  text-align: left; /* mobile/tablet default */
}

@media (min-width: 1200px) {
  .footer-bottom-text {
    text-align: center; /* desktop */
  }
}

.footer-bottom-text a {
  color: var(--dj-color-orange-primary);
}

.footer-bottom-text a:hover {
  color: var(--dj-color-white);
}

/*----------------------------------------*/
/* BACK TO TOP */
/*----------------------------------------*/

.to-the-top-wrapper {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.to-the-top-wrapper.show-to-top {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-the-top-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dj-color-black-primary);
  background-color: var(--dj-color-white);
  box-shadow: 0 10px 24px rgba(3, 4, 28, 0.24);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.to-the-top-btn:hover {
  transform: translateY(-4px);
}

.to-the-top-btn:focus-visible {
  outline: 2px solid var(--dj-color-orange-primary);
  outline-offset: 2px;
}

.to-the-top-btn i {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .to-the-top-wrapper {
    right: 16px;
    bottom: 16px;
  }
}


/*----------------------------------------*/
/* DJ LISTINGS */
/*----------------------------------------*/

.dj-listings-section {
  background-color: var(--section-bg-eight);

}

.dj-listings-section h2 {
  font-size: 28px;
  font-weight: 600;
}

/* Filter Button */

.dj-listings-filter-btn {
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  padding: 10px 30px;
  border-radius: 21px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
  color: var(--dj-color-black-primary);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--dj-color-black-primary);
}
.dj-listings-filter-btn:hover  {
  color: var(--dj-color-orange-primary);
  border-color: var(--dj-color-orange-primary);
  background-color: var(--dj-color-white);
}

/* Clear Filter Link */

.clear-listings-filter {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.2;
  color: var(--dj-color-black-primary);
}

.clear-listings-filter::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 2px;
  background-color: currentColor;
}

.clear-listings-filter::after {
  content: "";
  position: absolute;
  left: -8px;
  bottom: 0;
  width: 5px;
  height: 2px;
  background-color: var(--dj-color-white);
  transition: left 0.5s cubic-bezier(0.59, 0.23, 0.22, 0.96);
}

.clear-listings-filter:hover::after,
.clear-listings-filter:focus-visible::after {
  left: calc(100% + 8px);
}

/* Filter Drawer */

body.is-filter-drawer-open {
  overflow: hidden;
}

.dj-filter-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  opacity: 0;
  background-color: rgba(17, 17, 17, 0.35);
  transition: opacity 0.26s ease;
}

.dj-filter-drawer-backdrop.is-open {
  opacity: 1;
}

.dj-filter-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: min(350px, 100%);
  height: 100vh;
  border-right: 1px solid var(--dj-color-gray-secondary);
  background-color: var(--dj-color-white);
  box-shadow: 18px 0 36px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.dj-filter-drawer.is-open {
  transform: translateX(0);
}

.dj-filter-drawer-inner {
  height: 100%;
  overflow-y: auto;
  padding: 24px 22px 28px;
}

.dj-filter-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.dj-filter-drawer-header h3 {
  margin: 0;
  font-size: 24px;
}

.dj-filter-drawer-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dj-color-black-primary);
  cursor: pointer;
  background-color: transparent;
}

.dj-filter-drawer-close i {
  display: inline-block;
  line-height: 1;
  font-size: 18px;
  transition: transform 0.28s ease;
}

.dj-filter-drawer-close:hover {
  color: var(--dj-color-orange-primary);
}

.dj-filter-drawer-close:hover i {
  transform: rotate(90deg);
}

.dj-filter-drawer-close:focus-visible {
  outline: 2px solid var(--dj-color-orange-primary);
  outline-offset: 2px;
}

.dj-filter-field {
  padding-bottom: 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid #eee;
}

.dj-filter-field-title {
  margin: 0;
  cursor: pointer;
  font-size: 18px;
  position: relative;
  transition: 0.3s ease-in;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--dj-color-black-primary);
}

.dj-filter-field input,
.dj-filter-field select {
  width: 100%;
  height: 46px;
  font-size: 15px;
  line-height: 46px;
  padding: 0 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: var(--dj-color-black-primary);
  background-color: var(--dj-color-white);
  margin-bottom: 8px;
}

.dj-filter-actions {
  padding-top: 8px;
}

/* Quote Flow Modal */

body.is-quote-modal-open {
  overflow: hidden;
}

.dj-quote-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1098;
  opacity: 0;
  background-color: rgba(15, 15, 15, 0.56);
  transition: opacity 0.26s ease;
}

.dj-quote-modal-backdrop.is-open {
  opacity: 1;
}

.dj-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1099;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 24px;
}

.dj-quote-modal-shell {
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  border-radius: 18px;
  border: 1px solid var(--dj-color-gray-secondary);
  background-color: var(--dj-color-white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.dj-quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 9px;
  color: var(--dj-color-black-primary);
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.dj-quote-modal-close:hover {
  color: var(--dj-color-orange-primary);
}

.dj-quote-form {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 640px;
}

.dj-quote-form-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.dj-quote-header {
  padding: 28px 34px 18px;
  border-bottom: 1px solid #f0f0f0;
}

.dj-quote-kicker {
  margin: 0 0 2px;
  font-size: 13px;
  color: var(--dj-color-gray-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dj-quote-header h2 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.25;
}

.dj-quote-progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background-color: #efefef;
  overflow: hidden;
}

.dj-quote-progress-bar {
  height: 100%;
  width: 20%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #fd4621 0%, #ff7142 100%);
  transition: width 0.25s ease;
}

.dj-quote-progress-label {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--dj-color-gray-tertiary);
}

.dj-quote-content {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 24px;
  flex: 1;
  min-height: 0;
  padding: 26px 34px;
}

.dj-quote-main {
  min-height: 0;
  overflow-y: auto;
  padding-right: 8px;
}

.dj-quote-step h3 {
  margin: 0 0 6px;
  font-size: 30px;
  line-height: 1.25;
}

.dj-quote-step-text {
  margin: 0 0 22px;
  font-size: 17px;
}

/* Prevent Bootstrap row gutters from being clipped inside modal scroll areas. */
.dj-quote-step .row {
  --bs-gutter-x: 0;
  margin-left: 0;
  margin-right: 0;
}

.dj-quote-step .row > * {
  padding-left: 0;
  padding-right: 0;
}

.dj-quote-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.dj-quote-option-grid--duration {
  max-width: 420px;
}

.dj-quote-time-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 690px;
}

.dj-quote-time-grid .dj-quote-option span {
  justify-content: center;
  min-height: 50px;
  font-weight: 400;
}

.dj-quote-option {
  margin: 0;
  display: block;
  cursor: pointer;
}

.dj-quote-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dj-quote-option span {
  width: 100%;
  min-height: 54px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #dedede;
  color: var(--dj-color-black-primary);
  background-color: var(--dj-color-white);
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.22s ease;
}

.dj-quote-option input:checked + span {
  border-color: var(--dj-color-orange-primary);
  background-color: #fff0ea;
}

.dj-quote-option span:hover {
  border-color: var(--dj-color-orange-primary);
}

.dj-quote-option-other {
  margin-top: 12px;
  max-width: 420px;
}

.dj-quote-modal .dj-contact-input input,
.dj-quote-modal .dj-contact-input select,
.dj-quote-modal .dj-contact-input textarea {
  width: 100%;
  box-sizing: border-box;
}

.dj-quote-modal .dj-contact-input input,
.dj-quote-modal .dj-contact-input select {
  padding-left: 16px;
  padding-right: 16px;
}

.dj-quote-step--schedule .dj-contact-input {
  max-width: 380px;
}

.dj-quote-step--schedule input[type="date"] {
  width: 100%;
  min-width: 0;
  height: 52px;
  line-height: 1.2;
  padding: 0 44px 0 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--dj-site-body);
  font-size: 16px;
}

.dj-quote-modal .dj-contact-input input:focus,
.dj-quote-modal .dj-contact-input select:focus,
.dj-quote-modal .dj-contact-input textarea:focus,
.dj-quote-step--schedule input[type="date"]:focus {
  outline: none;
  border-color: #3f73e0;
  box-shadow: 0 0 0 2px rgba(63, 115, 224, 0.18);
}

.dj-quote-step--schedule input[type="date"]::-webkit-datetime-edit {
  padding: 0;
}

.dj-quote-step--schedule input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
  min-height: 1.4em;
}

.dj-quote-step--schedule input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.9;
  cursor: pointer;
  margin: 0;
}

.dj-quote-field-label {
  margin: 0 0 7px;
  display: inline-block;
  font-size: 14px;
  color: var(--dj-color-black-primary);
}

.dj-quote-check-wrap {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.dj-quote-check {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.dj-quote-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--dj-color-orange-primary);
}

.dj-quote-side {
  border-radius: 14px;
  border: 1px solid #e8ecea;
  background-color: #f6faf8;
  padding: 18px 16px;
  height: fit-content;
}

.dj-quote-side h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.dj-quote-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.dj-quote-side li {
  display: flex;
  gap: 8px;
  line-height: 1.4;
}

.dj-quote-side li i {
  color: #1f8d57;
  margin-top: 2px;
  font-size: 13px;
}

.dj-quote-footer {
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 34px;
}

.dj-quote-error {
  margin: 0 auto 0 0;
  padding-right: 12px;
  font-size: 14px;
  color: #b42318;
}

.dj-quote-footer .dj-btn-primary {
  min-width: 122px;
  text-align: center;
}

.dj-quote-success {
  margin: auto;
  max-width: 580px;
  text-align: center;
  padding: 24px 30px 36px;
}

.dj-quote-success h3 {
  margin: 0 0 10px;
  font-size: 32px;
}

.dj-quote-success p {
  margin: 0 0 24px;
}

@media (max-width: 991.98px) {
  .dj-quote-modal {
    padding: 0;
  }

  .dj-quote-modal-shell {
    max-height: 100vh;
    height: 100%;
    width: 100%;
    border: 0;
    border-radius: 0;
  }

  .dj-quote-form {
    min-height: 100%;
  }

  .dj-quote-header {
    padding: 20px 18px 16px;
  }

  .dj-quote-header h2 {
    font-size: 28px;
    padding-right: 28px;
  }

  .dj-quote-content {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px;
  }

  .dj-quote-main {
    padding-right: 0;
  }

  .dj-quote-side {
    display: none;
  }

  .dj-quote-step h3 {
    font-size: 24px;
  }

  .dj-quote-option-grid {
    grid-template-columns: 1fr;
  }

  .dj-quote-time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dj-quote-footer {
    padding: 16px 18px;
    flex-wrap: wrap;
  }

  .dj-quote-error {
    order: -1;
    width: 100%;
    padding-right: 0;
    margin-bottom: 4px;
  }
}

/* Listing Cards */

.dj-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--dj-color-gray-secondary);
  background-color: var(--dj-color-white);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.dj-card:hover,
.dj-card:focus-within {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.035);
}

.dj-card-image {
  border-radius: 16px 16px 0 0;
  aspect-ratio: 16 / 9;
  margin-bottom: 15px;
  overflow: hidden;
}

.dj-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center top;
  transition: transform 0.35s ease;
}

.dj-card:hover .dj-card-image img,
.dj-card:focus-within .dj-card-image img {
  transform: scale(1.04);
}

.dj-card-content {
  padding: 0 16px 12px;
}

.dj-card-content h3 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 12px;
}

.dj-card-content p,
.dj-card-summary {
  font-size: 16px;
  line-height: 1.5;
  min-height: 4.5em;
  margin-bottom: 12px;
  color: var(--dj-color-text-body);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.dj-card-content hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 0 0 12px 0;
}

.dj-card-content a:hover {
  color: var(--dj-color-orange-primary);
}

.dj-card-location {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
  line-height: 1.2;
  color: var(--dj-color-gray-tertiary);
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 300;
}

.dj-card-location > i[class^="fi-"],
.dj-card-location > i[class*=" fi-"] {
  display: inline-block;
  line-height: 1;
  transform: translateY(1px);
  color: var(--dj-color-gray-tertiary);
}

.view-dj {
  height: 36px;
  width: 36px;
  text-align: center;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
  background-color: #f9f9f9;
  color: var(--dj-color-black-primary);
}

.view-dj span,
.view-dj i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.view-dj i {
  color: inherit;
  transform: translateY(0);
}

.view-dj:hover,
.view-dj:focus-visible {
  background-color: var(--dj-color-orange-primary);
  color: var(--dj-color-white);
}

.dj-card-content a.view-dj:hover,
.dj-card-content a.view-dj:focus-visible,
.dj-card-content a.view-dj:hover i,
.dj-card-content a.view-dj:focus-visible i {
  color: var(--dj-color-white);
}

.dj-card-footer {
  gap: 25px;
  display: flex;
  align-items: center;
}

/* Listing Pagination */

.dj-pagination-list { gap: 8px; }

.dj-pagination-list a,
.dj-pagination-dots {
  min-width: 38px;
  height: 38px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  color: var(--dj-color-black-primary);
  font-weight: 500;
}

.dj-pagination-list a:hover {
  border-color: var(--dj-color-orange-primary);
  color: var(--dj-color-orange-primary);
}

.dj-pagination-list a.is-active {
  background: var(--dj-color-orange-primary);
  border-color: var(--dj-color-orange-primary);
  color: #fff;
}

/*----------------------------------------*/
/* JOB LISTINGS */
/*----------------------------------------*/

.job-listing-section {
  background-color: var(--section-bg-eight);

}

.job-listing-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 991.98px) {
  .job-listing-section h2 {
    font-size: 26px;
  }
}

.job-listing-section p {
  font-size: 18px;
}

.dj-job-card {
  display: flex;
  position: relative;
  border-radius: 16px;
  align-items: center;
  border: 1px solid #EEE;
  padding: 24px 38px 24px 30px;
  justify-content: space-between;
  background: var(--dj-color_white);
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.05);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.dj-job-card:hover,
.dj-job-card:focus-within {
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.08);
}

.dj-job-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.dj-job-card h3 a {
  color: inherit;
  transition: color 0.22s ease;
}

.dj-job-card h3 a:hover {
  color: var(--dj-color-orange-primary);
}

.dj-job-card span {
  display: inline-block;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 300;
}

.dj-job-card p {
  font-size: 18px;
}

.dj-job-card-copy p {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--job-line-clamp, 3);
  overflow: hidden;
}

.dj-job-card-copy.is-expanded p {
  display: block;
  -webkit-line-clamp: unset;
}

.dj-job-card-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--dj-color-black);
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  width: fit-content;
}

.dj-job-card-toggle:hover {
  color: var(--dj-color-orange-primary);
}

.dj-job-card-toggle:focus-visible {
  outline: 2px solid var(--dj-color-orange-primary);
  outline-offset: 2px;
}

.dj-job-card .dj-btn-primary {
  margin-top: 4px;
}

/*----------------------------------------*/
/* HOW IT WORKS */
/*----------------------------------------*/

.hiw-section {
  background-color: var(--section-bg-four);
}

.hiw-join-page {
  background-color: var(--section-bg-eight);
}

.hiw-section-image {
  display: block;
  width: min(100%, 480px);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}

@media (max-width: 991.98px) {
  .hiw-section-image {
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 3;
  }
}

.hiw-section-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.hiw-section-content h4 {
  font-size: 20px;
}

.hiw-section-content p {
  margin: 0;
}

.hiw-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hiw-step {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background-color: var(--section-bg-two);
}

.hiw-step + .hiw-step {
  margin-top: 40px;
}

.hiw-step-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-content: center;
  line-height: 0;
  background-color: var(--dj-color-white);
}

.hiw-step-icon i {
  display: block;
  font-size: 38px;
  line-height: 1;
  color: var(--dj-color-orange-primary);
}

.hiw-step-icon i::before {
  display: block;
}

.hiw-step-content {
  flex: 1;
  min-width: 0;
}

@media (min-width: 992px) {
  .hiw-step {
    max-width: 83.333333%;
  }

  .hiw-step--offset {
    margin-left: 80px;
  }
}

/*----------------------------------------*/
/* INFO SECTION */
/*----------------------------------------*/

.info-section {
  background-color: var(--section-bg-two);
}

.info-section-jobs {
  background-color: var(--section-bg-four);
}

.info-section-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  background-color: var(--dj-color-white);
  border-radius: 28px;
  overflow: hidden;
}

.info-section-text {
  padding: 36px 28px;
}

.info-section-eyebrow {
  margin-bottom: 14px;
  color: var(--dj-color-orange-primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-section-text h2 {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.info-section-text p:last-of-type {
  margin-bottom: 30px;
}

.info-section-text .dj-btn-primary {
  align-self: flex-start;
}

.info-section-image {
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.info-section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-section-form {
  padding: 28px;
  display: flex;
  align-items: center;
  background-color: var(--section-bg-eight);
}

.info-section-form form {
  width: 100%;
}

.info-section-form .dj-contact-input textarea {
  min-height: 130px;
}

@media (min-width: 992px) {
  .info-section-content {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    min-height: 520px;
  }

  .info-section-text {
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .info-section-image {
    height: 100%;
    aspect-ratio: unset;
    min-height: 100%;
  }

  .info-section-form {
    height: 100%;
    padding: 44px;
  }
}

@media (max-width: 575.98px) {
  .info-section-content {
    border-radius: 22px;
  }

  .info-section-text {
    padding: 28px 22px;
  }

  .info-section-text h2 {
    font-size: 28px;
  }
}

/* Reusable image lift utility (opt-in only) */
.dj-image-shadow-soft {
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.12);
}


/*----------------------------------------*/
/* SIGNUP PAGE */
/*----------------------------------------*/

.dj-pricing-section {
  background-color: var(--section-bg-eight);
  scroll-margin-top: 96px;

}

.dj-pricing-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 991.98px) {
  .dj-pricing-section h2 {
    font-size: 26px;
  }
}


.dj-pricing-section h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 991.98px) {
  .dj-pricing-section h4 {
    font-size: 18px;
  }
}

.dj-pricing-section p {
  font-size: 18px;
  font-weight: 400;
}


.signup-pricing-section {
  background-color: var(--section-bg-eight);
}

.signup-pricing-card {
  position: relative;
  height: 100%;
  padding: 34px 30px 30px;
  border: 1px solid var(--dj-color-gray-secondary);
  border-radius: 24px;
  background-color: var(--dj-color-white);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.05);
}

.signup-pricing-card-featured {
  border-color: rgba(253, 70, 33, 0.18);
  box-shadow: 0 14px 36px rgba(253, 70, 33, 0.1);
}

.signup-pricing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.signup-pricing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background-color: #fff1e9;
  color: var(--dj-color-orange-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signup-pricing-badge-secondary {
  background-color: #f3f4f6;
  color: var(--dj-color-black-primary);
}

.signup-pricing-card-header h3 {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 16px;
}

.signup-pricing-tagline {
  margin-bottom: 26px;
  font-size: 22px;
  line-height: 1.45;
  color: var(--dj-color-black-primary);
}

.signup-pricing-price {
  margin-bottom: 18px;
  color: var(--dj-color-black-primary);
  font-size: 58px;
  font-weight: 600;
  line-height: 1;
}

.signup-pricing-currency {
  display: inline-block;
  margin-right: 4px;
  font-size: 42px;
  transform: translateY(-3px);
}

.signup-pricing-price small {
  font-size: 24px;
  font-weight: 500;
}

.signup-pricing-note {
  margin-bottom: 26px;
  font-size: 17px;
  line-height: 1.6;
}

.signup-pricing-card hr {
  margin: 0 0 26px;
  border: 0;
  border-top: 1px solid var(--dj-color-gray-secondary);
}

.signup-pricing-features {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.signup-pricing-features li {
  position: relative;
  padding-left: 34px;
  font-size: 18px;
  line-height: 1.5;
}

.signup-pricing-features li + li {
  margin-top: 16px;
}

.signup-pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff1e9;
  box-shadow: inset 0 0 0 1px rgba(253, 70, 33, 0.16);
  transform: translateY(-50%);
}

.signup-pricing-features li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--dj-color-orange-primary);
  border-bottom: 2px solid var(--dj-color-orange-primary);
  transform: translateY(-60%) rotate(45deg);
}

@media (max-width: 991.98px) {
  .signup-pricing-card-header h3 {
    font-size: 36px;
  }

  .signup-pricing-tagline {
    font-size: 20px;
  }

  .signup-pricing-price {
    font-size: 52px;
  }
}

@media (max-width: 575.98px) {
  .signup-pricing-card {
    padding: 28px 22px 24px;
    border-radius: 20px;
  }

  .signup-pricing-card-header h3 {
    font-size: 32px;
  }

  .signup-pricing-tagline {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .signup-pricing-price {
    font-size: 44px;
  }

  .signup-pricing-currency {
    font-size: 32px;
  }

  .signup-pricing-price small {
    font-size: 20px;
  }

  .signup-pricing-features li {
    font-size: 16px;
  }
}

.signup-steps {
  background-color: var(--dj-color-orange-primary);
  border-top: 10px solid var(--section-bg-three);
  border-bottom: 10px solid var(--section-bg-three); 
}

.signup-steps ol,
.signup-steps ul {
  list-style: none;
  counter-reset: signup-step;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
}

.signup-steps ol li,
.signup-steps ul li {
  counter-increment: signup-step;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dj-color-white);
  font-weight: 500;
  margin-right: 0;
}

.signup-steps ol li::before,
.signup-steps ul li::before {
  content: counter(signup-step);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: var(--dj-color-orange-primary);
  background-color: var(--dj-color-white);
}

@media (max-width: 767.98px) {
  .signup-steps ol,
  .signup-steps ul {
    gap: 8px 12px;
  }

  .signup-steps ol li,
  .signup-steps ul li {
    font-size: 14px;
  }
}

.signup-steps ol li,
.signup-steps ul li {
  line-height: 1.3;
}

.signup-steps ol li.is-active,
.signup-steps ul li.is-active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}


ol.create-profile {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  padding: 0;
  list-style-position: inside;
  color: var(--dj-color-gray-tertiary);
}

ol.create-profile li {
  margin-bottom: 5px;
}

ol.create-profile li:last-child {
  margin-bottom: 0px;
}

.selected-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.selected-option-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #DDD;
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--dj-color-white);
  color: var(--dj-color-black-primary);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.selected-option-pill:hover {
  border-color: var(--dj-color-orange-primary);
}

.selected-option-pill i {
  font-size: 12px;
  line-height: 1;
}

/*----------------------------------------*/
/* REVIEWS */
/*----------------------------------------*/

.reviews-section {
  background-color: var(--section-bg-seven);
  scroll-margin-top: 96px;
}

.reviews-section h2 {
  font-size: 28px;
  font-weight: 500;
}

.reviews-section p {
  font-size: 18px;
}

.reviews-logo-strip {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.reviews-logo-item {
  flex: 0 0 auto;
  height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  background-color: rgba(17, 17, 17, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reviews-logo-item img {
  max-width: 100%;
  width: auto;
  height: 24px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
}

.reviews-cards {
  overflow: visible;
}

.review-card {
  position: relative;
  border-radius: 16px;
  padding: 20px 35px 24px 24px;
  background: var(--dj-color-white);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card-quote {
  position: absolute;
  top: 0;
  right: 28px;
}

.review-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dj-color-orange-primary);
}

.review-card-rating i {
  font-size: 14px;
  line-height: 1;
}

.review-card-title {
  font-size: 18px;
  margin-bottom: 15px;
}

.review-card-content {
  margin: 0;
}

.review-card-content p {
  font-size: 16px;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--review-line-clamp, 5);
  overflow: hidden;
}

.review-card.is-expanded .review-card-content p {
  display: block;
  -webkit-line-clamp: unset;
}

.review-card-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--dj-color-orange-primary);
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  width: fit-content;
}

.review-card-toggle:hover {
  color: var(--dj-color-orange-secondary);
}

.review-card-toggle:focus-visible {
  outline: 2px solid var(--dj-color-orange-primary);
  outline-offset: 2px;
}

.review-card-user-info {
  gap: 16px;
  align-items: center;
  margin-top: auto;
}

.review-card-user-image {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 50%;
  overflow: hidden;
}

.review-card-user-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50%;
}

.review-card-user-name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.review-card-user-content span {
  font-size: 16px;
  display: inline-block;
}

@media (min-width: 768px) {
  .reviews-logo-strip {
    flex-wrap: wrap;
    gap: 12px 18px;
    overflow: visible;
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {
  .reviews-logo-strip {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .reviews-logo-item {
    height: 54px;
    padding: 0 18px;
  }

  .reviews-logo-item img {
    height: 28px;
  }

  .reviews-cards .col {
    display: flex;
  }
}


/*----------------------------------------*/
/* TERMS PAGES */
/*----------------------------------------*/

.terms-hero {
  background-color: var(--section-bg-ten)
}

.terms-hero h1 {
  font-size: 40px;
  font-weight: 400;
}

.terms-hero p {
  max-width: 600px;
  font-weight: 300;
}

.terms-hero a {
  color: var(--dj-color-orange-primary);
  font-weight: 500;
}

.terms-hero a:hover {
  text-decoration: underline;
  color: var(--dj-color-orange-secondary);
}

.terms-section {
  padding: 60px 0  !important;
}

.terms-section h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}

.terms-section h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.terms-section p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.6;
}

.terms-section ul {
  font-size: 16px;
  color: var(--dj-color-black);
  font-weight: 400;
  line-height: 1.6;
  list-style-type: disc;
  margin-bottom: 20px;
}

.terms-section ul li {
  margin-bottom: 0px;
}

.terms-section ul li:not(:last-child) {
  margin-bottom: 15px;
}

.terms-section a {
  text-decoration: underline;
}

.terms-section a:hover {
  text-decoration: none;
  color: var(--dj-color-orange-primary);
}


/*----------------------------------------*/
/* ARTICLE PAGES */
/*----------------------------------------*/


.article-title {
  margin: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
}

.article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  line-height: 1.2;
  color: var(--dj-color-text-body);
}

.article-meta-item > i[class^="fi-"],
.article-meta-item > i[class*=" fi-"] {
  display: inline-block;
  line-height: 1;
  transform: translateY(1px);
  color: var(--dj-color-gray-tertiary);
}

.article-side-content-wrap {
  margin: 0;
}

.article-side-content {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #EEE;
  background: var(--dj-color-white);
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.05);
}

.article-side-content ul {
  margin: 0;
  padding: 0;
}

.article-side-content ul li {
  gap: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  list-style: none;
}

.article-side-content ul li:not(:last-of-type) {
  margin-bottom: 10px;
}

.article-side-content .article-check-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 52% 48% 55% 45% / 48% 53% 47% 52%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #34c759;
  transform: rotate(-8deg);
}

.article-side-content .article-check-icon i {
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  transform: rotate(8deg);
}

.article-side-content .article-check-text {
  transform: translateY(-0.5px);
}

@media (min-width: 992px) {
  .article-content .dj-profile-content-side {
    position: sticky;
    top: 110px;
    align-self: flex-start;
  }
}

.article-section {
  margin: 0px;
  padding: 0px;
  background-color: var(--dj-color-page-bg-primary);
}

.article-section h1,
.article-section h2,
.article-section h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 30px;
}

.article-section h3 {
  font-size: 22px;
}

.article-section h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 20px;
}

.article-section hr {
  border: 0;
  border-top: 1px solid #eee;
  opacity: 1;
  margin-top: 40px;
  margin-bottom: 40px;
}

.article-section hr:last-child {
  display: none;
}

.article-section p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.6;
}

.article-section p:last-child {
  margin-bottom: 0;
}

.article-section p:empty {
  display: none;
  margin: 0;
}

.article-section ul {
  font-size: 16px;
  color: var(--dj-color-black);
  font-weight: 400;
  line-height: 1.6;
  list-style-type: disc;
  margin-bottom: 20px;
}

.article-section ul li {
  margin-bottom: 0px;
}

.article-section ul li:not(:last-child) {
  margin-bottom: 15px;
}

.article-section a {
  text-decoration: underline;
}

.article-section a:hover {
  text-decoration: none;
  color: var(--dj-color-orange-primary);
}


/*----------------------------------------*/
/* DASHBOARD */
/*----------------------------------------*/

.dashboard-content {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 0;
  background-color: #fbfbfb;
  transition: grid-template-columns 0.28s ease;
}

.dashboard-content.is-collapsed {
  grid-template-columns: 52px minmax(0, 1fr);
}

.dashboard-side {
  position: sticky;
  top: 0;
  height: auto;
  min-height: 0;
  align-self: stretch;
  overflow-y: auto;
  padding: 26px;
  width: 250px;
  border-right: 1px solid rgba(238, 238, 238, 0.9333333333);
  background-color: var(--dj-color-white);
  transition: width 0.28s ease, padding 0.28s ease;
}

.dashboard-side-brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 42px;
  margin-bottom: 35px;
}

.dashboard-side-logo {
  display: inline-flex;
  align-items: center;
  max-width: 170px;
  overflow: hidden;
  white-space: nowrap;
  opacity: 1;
  transition: max-width 0.26s ease, opacity 0.2s ease;
}

.dashboard-side-logo img {
  width: 160px;
  height: auto;
}

.dashboard-side-collapse {
  position: absolute;
  right: 0;
  top: 60%;
  width: 27px;
  height: 27px;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: var(--dj-color-black-primary);
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: color 0.24s ease, left 0.24s ease, right 0.24s ease, transform 0.24s ease;
}

.dashboard-side-collapse i {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.24s ease;
}

.dashboard-side-collapse:hover {
  color: var(--dj-color-orange-primary);
}

.dashboard-side-nav-list {
  margin: 0;
  padding: 12px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-side-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 22px;
  padding: 0;
  color: var(--dj-color-black-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.22s ease;
}

.dashboard-side-nav-link span {
  display: inline-block;
  max-width: 170px;
  overflow: hidden;
  white-space: nowrap;
  opacity: 1;
  transform: translateX(0);
  transition: max-width 0.24s ease, opacity 0.2s ease, transform 0.24s ease;
}

.dashboard-side-nav-link i {
  width: 24px;
  margin-right: 4px;
  text-align: center;
  color: currentColor;
  font-size: 18px;
  line-height: 1;
  transform: translateY(1.5px);
}

.dashboard-side-nav-link:hover,
.dashboard-side-nav-link.is-active {
  color: var(--dj-color-orange-primary);
}

.dashboard-side.is-collapsed {
  width: 52px;
  padding: 26px 8px;
  overflow: visible;
}

.dashboard-side.is-collapsed .dashboard-side-logo {
  max-width: 0;
  opacity: 0;
  pointer-events: none;
}

.dashboard-side.is-collapsed .dashboard-side-brand {
  justify-content: center;
  margin-bottom: 35px;
}

.dashboard-side.is-collapsed .dashboard-side-collapse {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}

.dashboard-side.is-collapsed .dashboard-side-nav-list {
  padding: 12px 0 0;
  gap: 18px;
}

.dashboard-side.is-collapsed .dashboard-side-nav-link {
  justify-content: center;
  gap: 0;
}

.dashboard-side.is-collapsed .dashboard-side-nav-link span {
  max-width: 0;
  opacity: 0;
  transform: translateX(-8px);
}

.dashboard-side.is-collapsed .dashboard-side-nav-link i {
  width: auto;
  margin-right: 0;
}

.dashboard-side.is-collapsed .dashboard-side-collapse i {
  transform: scaleX(-1);
}

.dashboard-main {
  min-width: 0;
  background-color: #fbfbfb;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.9333333333);
  background-color: var(--dj-color-white);
}

.dashboard-header-logo-mobile {
  display: none;
  align-items: center;
  flex: 0 0 auto;
}

.dashboard-header-logo-mobile img {
  width: 160px;
  height: auto;
  display: block;
}

.dashboard-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dj-color-black-primary);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.24s ease;
}

.dashboard-back-home:hover {
  color: var(--dj-color-orange-primary);
}

.dashboard-user-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dashboard-user-dropdown {
  position: relative;
}

.dashboard-user-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
}

.dashboard-user-toggle::-webkit-details-marker {
  display: none;
}

.dashboard-user-dropdown[open] .dashboard-user-name {
  color: var(--dj-color-orange-primary);
}

.dashboard-notification {
  position: relative;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  cursor: pointer;
  background-color: transparent;
  color: var(--dj-color-black-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.24s ease;
}

.dashboard-notification i {
  font-size: 20px;
}

.dashboard-notification:hover {
  color: var(--dj-color-orange-primary);
}

.dashboard-notification-dot {
  position: absolute;
  top: -3px;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--dj-color-orange-primary);
}

.dashboard-user-name {
  font-size: 17px;
  font-weight: 500;
  color: var(--dj-color-black-primary);
}

.dashboard-user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #d9d9d9;
  color: #4b4b4b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  display: block;
}

.dashboard-user-avatar--small {
  width: 30px;
  height: 30px;
  font-size: 10px;
}

.dashboard-user-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 20;
  width: 220px;
  min-width: 220px;
  padding: 20px;
  border: 1px solid #e9e9e9;
  border-radius: 0 0 16px 16px;
  box-shadow: 1px 9px 26px 0 rgba(0, 0, 0, 0.04);
  background-color: #ffffff;
}

.dashboard-user-menu-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #efefef;
}

.dashboard-user-menu-head-name {
  font-size: 15px;
  color: #232323;
  font-weight: 500;
}

.dashboard-user-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  color: #222222;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  padding: 5px 10px;
}

.dashboard-user-menu-item i {
  width: 16px;
  font-size: 15px;
  color: #555555;
  text-align: center;
  transform: translateY(2px);
}

.dashboard-user-menu-item:hover,
.dashboard-user-menu-item.is-active {
  color: var(--dj-color-orange-primary);
  background-color: #fff4ee;
}

.dashboard-user-menu-item:hover i,
.dashboard-user-menu-item.is-active i {
  color: var(--dj-color-orange-primary);
}

.dashboard-main-body {
  max-width: 1460px;
  margin: 0 auto;
  padding: 50px 24px 60px;
}

.dashboard-welcome-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
}

.dashboard-metrics {
  margin-top: 18px;
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.dashboard-metric-card {
  border-radius: 16px;
  padding: 26px;
}

.dashboard-metric-card--green {
  background-color: #eaf8e7;
}

.dashboard-metric-card--gray {
  background-color: #f1f3f9;
}

.dashboard-metric-card--pink {
  background-color: #fff2f5;
}

.dashboard-metric-card--yellow {
  background-color: #fff6e4;
}

.dashboard-metric-label {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #222222;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.dashboard-metric-label i {
  font-size: 18px;
  transform: translateY(1.5px);
}

.dashboard-metric-value {
  margin: 0;
  font-size:18px;
  font-weight: 400;
  line-height: 1;
}

.dashboard-panel {
  padding: 25px;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  background-color: var(--dj-color-white);
}

.dashboard-panel-head {
  padding: 0;
  margin-bottom: 20px;
}

.dashboard-panel-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.dashboard-panel-placeholder {
  min-height: 315px;
  margin: 0;
  border-radius: 12px;
  border: 1px dashed #e4e4e4;
  background-color: #fcfcfc;
  padding: 20px;
  color: var(--dj-color-gray-tertiary);
  font-size: 16px;
  display: flex;
  align-items: flex-start;
}

.dashboard-panel + .dashboard-panel {
  margin-top: 24px;
}

.dashboard-table {
  margin-bottom: 0;
}

.dashboard-table > :not(caption) > * > * {
  padding: 14px 12px;
  vertical-align: middle;
  border-bottom-color: #eeeeee;
}

.dashboard-table thead th {
  background: #f8f8f8;
  color: #434343;
  font-size: 14px;
  font-weight: 600;
}

.dashboard-table tbody td {
  color: #222222;
  font-size: 15px;
}

.dashboard-panel .form-group {
  margin-bottom: 18px;
}

.dashboard-panel .form-label {
  display: block;
  margin-bottom: 8px;
  color: #232323;
  font-size: 15px;
  font-weight: 500;
}

.dashboard-panel .form-control {
  min-height: 48px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 16px;
  background: #ffffff;
}

.dashboard-panel textarea.form-control {
  min-height: 160px;
}

.dashboard-panel .djj-file-button {
  margin-top: 10px;
}

.dashboard-panel .btn_wrap {
  margin-top: 20px;
}

body.dashboard-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.dashboard-page #wrapper {
  flex: 1 0 auto;
  display: flex;
}

body.dashboard-page .dashboard-content {
  flex: 1 0 auto;
  width: 100%;
}

body.dashboard-page footer {
  flex-shrink: 0;
  margin-top: 0;
  background-color: var(--dj-color-white);
}

body.dashboard-page .footer-bottom {
  border-top: 1px solid rgba(238, 238, 238, 0.9333333333);
  color: var(--dj-color-text-body);
  background-color: var(--dj-color-white);
}

body.dashboard-page .footer-bottom-text {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
}

body.dashboard-page .footer-bottom-text a:hover {
  color: var(--dj-color-orange-secondary);
}

@media (max-width: 1399.98px) {
  .dashboard-metrics {
    gap: 16px;
  }
}

@media (max-width: 1600px) {
  .dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) {
  .dashboard-content {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .dashboard-content.is-collapsed {
    grid-template-columns: 52px minmax(0, 1fr);
  }
}

@media (max-width: 767.98px) {
  .dashboard-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .dashboard-content.is-collapsed {
    grid-template-columns: 1fr;
  }

  .dashboard-side {
    display: none;
  }

  .dashboard-header {
    justify-content: space-between;
    padding: 12px 16px;
  }

  .dashboard-header-logo-mobile {
    display: inline-flex;
  }

  .dashboard-main-body {
    padding: 24px 16px 30px;
  }

  .dashboard-welcome-title {
    font-size: 28px;
  }

  .dashboard-panel-head h2 {
    font-size: 26px;
  }

  .dashboard-panel-placeholder {
    min-height: 220px;
  }
}

@media (max-width: 575.98px) {
  .dashboard-header {
    gap: 10px;
  }

  .dashboard-header-logo-mobile img {
    width: 140px;
  }

  .dashboard-back-home {
    font-size: 14px;
    gap: 5px;
  }

  .dashboard-back-home i {
    font-size: 13px;
  }

  .dashboard-user-meta {
    gap: 12px;
  }

  .dashboard-user-name {
    font-size: 15px;
  }

  .dashboard-user-avatar {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .dashboard-user-menu {
    width: 220px;
    min-width: 220px;
    max-width: calc(100vw - 20px);
    padding: 16px;
  }

  .dashboard-user-menu-item {
    font-size: 14px;
  }

  .dashboard-welcome-title {
    font-size: 26px;
  }

  .dashboard-metric-card {
    padding: 18px;
  }

  .dashboard-panel {
    padding: 18px;
  }
}

/*----------------------------------------*/
/* JOB POST */
/*----------------------------------------*/

.job-bc-bg {
  background-color: var(--section-bg-five);
}

.apply-text {
  color: var(--dj-color-gray-tertiary);
  font-weight: 200;
  font-size: 16px !important;
}

.job-details-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.job-details-section p {
  font-size: 18px;
  color: var(--dj-color-text-body);
}

.apply-text-alt a {
  color: var(--dj-color-orange-primary);
  font-weight: 500;
}

.apply-text-alt a:hover {
  color: var(--dj-color-orange-secondary);
  text-decoration: underline;
}

.job-details-section {
  background-color: var(--dj-color-white);
}

#details,
#apply {
  scroll-margin-top: 104px;
}
