.atl-lp {
  padding: 5rem 0.85rem;
  background: #137777;
  color: #fff;
}
@media (min-width: 768px) {
  .atl-lp {
    padding: 6rem 1.5rem;
  }
}

.atl-lp__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.atl-lp__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.atl-lp__title {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: #fff;
}

.atl-lp__text {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
}
.atl-lp__text p {
  margin: 0;
}

.atl-lp__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

.atl-lp__card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  color: #353452;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (min-width: 768px) {
  .atl-lp__card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
  }
}
.atl-lp__card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.atl-lp__card-main {
  flex: 1;
}

.atl-lp__card-title {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.333;
  margin: 0 0 0.85rem;
  color: #353452;
}
@media (min-width: 768px) {
  .atl-lp__card-title {
    font-size: 1.5rem;
  }
}

.atl-lp__card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-testo-attenuato);
  margin-bottom: 0.65rem;
}

.atl-lp__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.atl-lp__meta-item i {
  color: var(--color-testo-attenuato);
  font-size: 0.8em;
}

.atl-lp__meta-item--dept {
  font-weight: 600;
  color: #137777;
}
.atl-lp__meta-item--dept i {
  color: #137777;
}

.atl-lp__meta-item--ral {
  font-weight: 700;
  color: #353452;
  background: rgba(19, 119, 119, 0.1);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
}
.atl-lp__meta-item--ral i {
  color: #137777;
}

.atl-lp__card-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(53, 52, 82, 0.75);
  max-width: 48rem;
}

.atl-lp__card-action {
  flex-shrink: 0;
}

.atl-lp__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 45px;
  padding: 0.9rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  color: #353452;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.atl-lp__card-btn i {
  color: #137777;
}
.atl-lp__card-btn:hover {
  border-color: #137777;
  color: #137777;
}
@media (min-width: 768px) {
  .atl-lp__card-btn {
    width: auto;
  }
}

.atl-lp-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.atl-lp-drawer[hidden] {
  display: none;
}

.atl-lp-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.atl-lp-drawer__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 42rem;
  height: 100%;
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  color: #353452;
}

.atl-lp-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .atl-lp-drawer__head {
    padding: 2rem;
  }
}

.atl-lp-drawer__job-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}
@media (min-width: 768px) {
  .atl-lp-drawer__job-title {
    font-size: 1.5rem;
  }
}

.atl-lp-drawer__close {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 999px;
  color: rgba(53, 52, 82, 0.6);
  cursor: pointer;
  transition: background 0.2s ease;
}
.atl-lp-drawer__close:hover {
  background: rgba(0, 0, 0, 0.05);
}

.atl-lp-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .atl-lp-drawer__body {
    padding: 2rem;
  }
}

.atl-lp-drawer__meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: #fafafa;
  border-radius: 16px;
  padding: 1.25rem;
  font-size: 0.85rem;
}
@media (min-width: 480px) {
  .atl-lp-drawer__meta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.atl-lp-drawer__meta-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(53, 52, 82, 0.4);
  margin-bottom: 0.15rem;
}
.atl-lp-drawer__meta-label--accent {
  color: #137777;
}

.atl-lp-drawer__meta-value {
  font-weight: 600;
  color: #353452;
}
.atl-lp-drawer__meta-value--accent {
  font-weight: 800;
  color: #137777;
}

.atl-lp-drawer__section-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 0.5rem;
  margin: 0 0 0.75rem;
}

.atl-lp-drawer__prose {
  font-weight: 300;
  line-height: 1.7;
  font-size: 0.95rem;
  color: rgba(53, 52, 82, 0.85);
}
.atl-lp-drawer__prose p {
  margin: 0 0 0.75rem;
}
.atl-lp-drawer__prose p:last-child {
  margin-bottom: 0;
}

.atl-lp-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.atl-lp-drawer__list li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(53, 52, 82, 0.85);
}
.atl-lp-drawer__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #137777;
}

.atl-lp-drawer__form-section {
  background: #137777;
  border-radius: 24px;
  padding: 1.5rem;
  color: #fff;
}
@media (min-width: 768px) {
  .atl-lp-drawer__form-section {
    padding: 2rem;
  }
}

.atl-lp-drawer__form-title {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #fff;
}

.atl-lp-drawer__form-text {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
  font-size: 0.85rem;
  margin: 0 0 1.25rem;
}

.atl-lp-drawer__foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(250, 250, 250, 0.6);
}
@media (min-width: 768px) {
  .atl-lp-drawer__foot {
    padding: 1.5rem 2rem;
  }
}

.atl-lp-drawer__apply-btn {
  width: 100%;
  padding: 1rem;
  background: #137777;
  border: none;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s ease;
}
.atl-lp-drawer__apply-btn:hover {
  background: #0d6161;
}

.atl-lp-drawer__form-section .atl-lf-drawer-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .atl-lp-drawer__form-section .atl-lf-drawer-form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__label i {
  margin-right: 0.35rem;
  color: rgba(255, 255, 255, 0.6);
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__input,
.atl-lp-drawer__form-section .atl-lf-drawer-form__select,
.atl-lp-drawer__form-section .atl-lf-drawer-form__textarea {
  box-sizing: border-box;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 300;
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__input::placeholder,
.atl-lp-drawer__form-section .atl-lf-drawer-form__select::placeholder,
.atl-lp-drawer__form-section .atl-lf-drawer-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__input:focus,
.atl-lp-drawer__form-section .atl-lf-drawer-form__select:focus,
.atl-lp-drawer__form-section .atl-lf-drawer-form__textarea:focus {
  outline: none;
  border-color: #fff;
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__select option {
  color: #353452;
  background: #fff;
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__dropzone {
  position: relative;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__dropzone.is-dragover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__dropzone-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__dropzone-label span {
  text-decoration: underline;
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__dropzone-hint {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0.25rem 0 0;
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__privacy {
  margin-bottom: 1.25rem;
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__privacy label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__privacy input[type=checkbox] {
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
  accent-color: #fff;
  flex-shrink: 0;
  cursor: pointer;
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__privacy a {
  color: #fff;
  text-decoration: underline;
}
.atl-lp-drawer__form-section .atl-lf-drawer-form__submit {
  width: 100%;
  padding: 0.9rem;
  background: #fff;
  border: none;
  border-radius: 999px;
  color: #137777;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  cursor: pointer;
}
.atl-lp-drawer__form-section .hf-messages .hf-message {
  font-size: 0.8rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.atl-lp-drawer__form-section .hf-message-success {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.atl-lp-drawer__form-section .hf-message-error {
  background: rgba(255, 0, 0, 0.15);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .atl-lp__card {
    transition: none;
  }
}
@media (min-width: 768px) {
  .editor-styles-wrapper .atl-lp__card {
    flex-direction: row !important;
    align-items: center !important;
  }
}
