
.admin_header {
  color: #333;
}

.content-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
}
.content-header h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #274154;
}
.content-header .header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.admin-table {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.admin-table thead th {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  color: #495057;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  white-space: nowrap;
}
.admin-table tbody tr {
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}
.admin-table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.025);
}
.admin-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #dee2e6;
}
.admin-table tbody td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
  font-size: 0.9rem;
  color: #212529;
}
.admin-table .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.admin-table .btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

.admin-card {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin-bottom: 1.5rem;
}
.admin-card .card-header {
  background-color: #f8f9fa;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.admin-card .card-header h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #274154;
}
.admin-card .card-header.bg-primary h5, .admin-card .card-header.bg-success h5, .admin-card .card-header.bg-info h5, .admin-card .card-header.bg-warning h5, .admin-card .card-header.bg-secondary h5 {
  color: #fff;
}
.admin-card .card-body {
  padding: 1.25rem;
}
.admin-card .card-subtitle {
  font-size: 0.875rem;
  margin-top: -0.25rem;
  margin-bottom: 0.75rem;
}

.advertising-guide h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #274154;
}
.advertising-guide p,
.advertising-guide ul {
  font-size: 0.875rem;
  color: #495057;
}
.advertising-guide ul {
  padding-left: 1.25rem;
}
.advertising-guide ul li {
  margin-bottom: 0.5rem;
}

.form-control-sm {
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  height: calc(1.5em + 0.5rem + 2px);
}

.dropdown-menu {
  font-size: 0.875rem;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
}
.dropdown-menu .dropdown-divider {
  margin: 0.5rem 0;
}

.alert {
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

.container-fluid .border-bottom {
  border-color: #dee2e6 !important;
}
.container-fluid .text-muted {
  color: #6c757d;
  font-size: 0.9rem;
}
.container-fluid .row {
  margin-bottom: 1.5rem;
}
.container-fluid .row:last-child {
  margin-bottom: 0;
}
.container-fluid .col-3,
.container-fluid .col-6 {
  padding: 0.75rem;
}

.card {
  margin-bottom: 1.5rem;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  height: 100%;
  -webkit-transition: -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.card.bg-primary .card-body, .card.bg-success .card-body, .card.bg-info .card-body, .card.bg-warning .card-body {
  padding: 1.25rem;
}
.card.bg-primary .card-title, .card.bg-success .card-title, .card.bg-info .card-title, .card.bg-warning .card-title {
  font-size: 1rem;
  font-weight: 500;
}
.card.bg-primary .display-4, .card.bg-success .display-4, .card.bg-info .display-4, .card.bg-warning .display-4 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.card.bg-primary .stretched-link, .card.bg-success .stretched-link, .card.bg-info .stretched-link, .card.bg-warning .stretched-link {
  font-size: 0.875rem;
  font-weight: 500;
}
.card.bg-primary .stretched-link:hover, .card.bg-success .stretched-link:hover, .card.bg-info .stretched-link:hover, .card.bg-warning .stretched-link:hover {
  text-decoration: underline !important;
}
.card.bg-primary .stretched-link .bi-arrow-right, .card.bg-success .stretched-link .bi-arrow-right, .card.bg-info .stretched-link .bi-arrow-right, .card.bg-warning .stretched-link .bi-arrow-right {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.card.bg-primary .stretched-link:hover .bi-arrow-right, .card.bg-success .stretched-link:hover .bi-arrow-right, .card.bg-info .stretched-link:hover .bi-arrow-right, .card.bg-warning .stretched-link:hover .bi-arrow-right {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.card-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 0.75rem 1.25rem;
}
.card-header h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #495057;
}
.card-header .btn-group .btn {
  font-size: 0.75rem;
}
.card-header .btn-group .btn.active {
  background-color: #6c757d;
  color: #fff;
  border-color: #6c757d;
}

.card-body {
  padding: 1.25rem;
}
.card-body canvas {
  margin-top: 0.5rem;
  height: 250px !important;
}

.list-group .list-group-item {
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.125);
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}
.list-group .list-group-item:hover {
  background-color: rgba(0, 0, 0, 0.025);
}
.list-group .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.list-group .list-group-item:last-child {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.list-group .list-group-item h6 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.list-group .list-group-item p {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.list-group .list-group-item small {
  font-size: 0.75rem;
}

.badge {
  padding: 0.35em 0.65em;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 10rem;
}
.badge.bg-primary {
  background-color: #007bff !important;
}

canvas {
  max-width: 100%;
  height: 250px !important;
  width: 100% !important;
}

.bi-people, .bi-building, .bi-briefcase, .bi-calendar-check, .bi-graph-up, .bi-activity, .bi-info-circle, .bi-hdd-stack, .bi-gem, .bi-braces, .bi-server {
  vertical-align: -0.125em;
}

.pageTitle_h6 {
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 3rem;
}
.pageTitle_h6 i {
  margin-right: 8px;
}

.news_adminIndex {
  padding: 80px 0;
  min-height: 90vh;
}
.news_adminIndex .alert-info {
  background: none !important;
  border: none;
  color: #272727;
  padding: 0 !important;
}

.news_edit {
  padding: 80px 0;
}
.news_edit h6 {
  font-size: 24px;
  letter-spacing: 2px;
}
.news_edit h6 i {
  margin-right: 8px;
}
.news_edit .edit_table {
  width: 100%;
}
.news_edit .edit_table th,
.news_edit .edit_table td {
  display: block;
  width: 100%;
}
.news_edit .edit_table th {
  text-align: left;
  margin: 1rem 0;
}
.news_edit .edit_table td .form-text {
  font-size: 12px;
  color: #666;
  margin: 1rem 0;
}
.news_edit .edit_table tr {
  border-bottom: 1px solid #ccc;
  padding: 2rem 0;
  margin: 1rem 0;
  display: block;
}

.create_btn {
  background: #333;
  color: white;
  padding: 8px 24px;
  display: block;
  width: 80px;
  margin-bottom: 3rem;
  font-size: 14px;
}

.back_btn {
  background: #272727;
  color: white;
  padding: 8px 24px;
  display: block;
  width: 100px;
  margin-bottom: 3rem;
  font-size: 14px;
}

.btn_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin: 2rem 0;
}
.btn_group .approval＿btn {
  background: #272727;
  color: white;
  padding: 8px 24px;
}
.btn_group .cancel_btn {
  background: #ccc;
  color: #272727;
  padding: 8px 24px;
}

.admin_category {
  padding: 80px 0;
}
.admin_category table {
  border-top: none !important;
}
.admin_category table th {
  text-align: left !important;
}

.admin_categoryEdit {
  padding: 80px 0;
}
.admin_categoryEdit .container {
  max-width: 960px;
  margin: 0 auto;
}
.admin_categoryEdit .edit_table {
  width: 100%;
}
.admin_categoryEdit .edit_table th,
.admin_categoryEdit .edit_table td {
  display: block;
  width: 100%;
}
.admin_categoryEdit .edit_table th {
  text-align: left;
  margin-bottom: 8px;
}
.admin_categoryEdit .edit_table tr {
  display: block;
  padding: 16px 0;
}

.admin_joblistsIndex {
  padding: 80px 0;
}
.admin_joblistsIndex .admin-table {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: none;
}
.admin_joblistsIndex .recommend_job_offerList {
  margin: 3rem 0;
}
.admin_joblistsIndex .recommend_job_offerList h5 {
  margin: 1rem 0;
}
.admin_joblistsIndex .recommend_job_offerList h5 span {
  font-size: 80%;
  margin-left: 8px;
}
.admin_joblistsIndex .general_job_offerList {
  margin: 3rem 0;
}
.admin_joblistsIndex .general_job_offerList h5 {
  margin: 1rem 0;
}
.admin_joblistsIndex .general_job_offerList h5 span {
  font-size: 80%;
  margin-left: 8px;
}

.admin_joblistsShow {
  padding: 80px 0;
}
.admin_joblistsShow .status_info {
  background: white;
  padding: 16px;
  margin-bottom: 40px;
}
.admin_joblistsShow .status_info h6::before {
  content: "■";
  margin-right: 8px;
}
.admin_joblistsShow .status_info .row .col-3 dl {
  margin: 1rem 0;
}
.admin_joblistsShow .status_info .row .col-3 dl dt {
  float: left;
}
.admin_joblistsShow .status_info .row .col-3 dl dt::after {
  content: ":";
  margin-right: 8px;
}
.admin_joblistsShow .status_info .row .col-3 dl dd {
  margin: 0;
}
.admin_joblistsShow .status_info .row .col-3 dl dd .success {
  padding: 0.4rem 0.8rem;
  color: #272727;
}
.admin_joblistsShow .status_info .row .col-3 dl dd .danger {
  padding: 0.4rem 0.8rem;
  color: #dc3545;
}
.admin_joblistsShow .status_info .row .col-3 dl dd .green {
  color: green;
}
.admin_joblistsShow table {
  width: 100%;
  table-layout: fixed;
}
.admin_joblistsShow table tr {
  border-bottom: 1px solid #ccc;
}
.admin_joblistsShow table th,
.admin_joblistsShow table td {
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
}
.admin_joblistsShow table th {
  width: 20%;
  text-align: left;
}
.admin_joblistsShow table td {
  width: 90%;
}

.company_dashboard {
  padding: 80px 0;
}
.company_dashboard .row {
  margin: 40px 0 !important;
}
@media screen and (max-width: 767px) {
  .company_dashboard .row .col-3 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .company_dashboard .table-responsive,
  .company_dashboard .job-table {
    width: 100%;
    overflow-x: auto;
    display: block;
    -webkit-overflow-scrolling: touch;
  }
  .company_dashboard .job-table {
    min-width: 1200px;
  }
}
.company_dashboard .col-2 {
  padding: 0 8px;
  min-height: 100% !important;
}
@media screen and (max-width: 767px) {
  .company_dashboard .col-2 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    padding: 8px;
  }
}
.company_dashboard .col-2 h5 {
  font-size: 1rem;
}

.company_profile_edit {
  padding: 80px 0;
  overflow: visible !important;
}
.company_profile_edit .back_btn {
  width: 200px !important;
}
.company_profile_edit .row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.company_profile_edit .col-3 {
  position: sticky;
  top: 100px;
  z-index: 10;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.company_profile_edit .col-3 h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.company_profile_edit .col-3 p {
  font-size: 12px;
  margin-bottom: 16px;
}
.company_profile_edit .col-3 .company_setting {
  background: white;
  padding: 24px 16px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}

.company_profile_page {
  padding: 0;
}
.company_profile_page .container {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company_profile_page .container {
    width: calc(100% - 32px);
    margin: 0 auto;
  }
}
.company_profile_page .company_main_visual {
  position: relative;
  height: 90vh;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
}
.company_profile_page .main_visual_title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  position: absolute;
  padding: 16px 24px;
  top: 50%;
  left: 0;
  background: white;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.company_profile_page .about_contents {
  padding: 120px 0;
  background-color: #f8f9fa;
}
.company_profile_page .about_contents h6 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}
.company_profile_page .about_contents h6 span {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  color: #666;
  margin-top: 0.5rem;
}
.company_profile_page .about_contents p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company_profile_page .about_contents p {
    font-size: 1rem;
    text-align: left;
  }
}
.company_profile_page .company_detile {
  padding: 120px 0;
  background-color: #eef3f5;
}
.company_profile_page .company_detile h6 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}
.company_profile_page .company_detile h6 span {
  font-size: 50%;
  display: block;
  font-weight: normal;
}
.company_profile_page .company_detile .company_info_table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .company_profile_page .company_detile .company_info_table {
    max-width: calc(100% - 32px);
    margin: 0 auto;
  }
}
.company_profile_page .company_detile .company_info_table th, .company_profile_page .company_detile .company_info_table td {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .company_profile_page .company_detile .company_info_table th, .company_profile_page .company_detile .company_info_table td {
    display: block;
    border-bottom: none;
    padding: 0;
  }
}
.company_profile_page .company_detile .company_info_table th {
  width: 30%;
  color: #333;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .company_profile_page .company_detile .company_info_table th {
    width: 100%;
    padding: 16px 0 8px;
    color: #888;
  }
}
.company_profile_page .company_detile .company_info_table td {
  width: 70%;
  color: #555;
}
@media screen and (max-width: 767px) {
  .company_profile_page .company_detile .company_info_table td {
    width: 100%;
    border-bottom: 1px solid #ccc !important;
    padding-bottom: 16px !important;
    color: #272727 !important;
  }
}
.company_profile_page .company_detile .company_info_table td p {
  margin: 0;
}
.company_profile_page .company_detile .company_info_table tr:last-child th, .company_profile_page .company_detile .company_info_table tr:last-child td {
  border-bottom: none;
}
.company_profile_page .company_detile .company_info_table .website_link {
  color: #667eea;
  text-decoration: none;
}
.company_profile_page .company_detile .company_info_table .website_link:hover {
  text-decoration: underline;
}
.company_profile_page .main_visual_category {
  font-size: 1.3rem;
  color: white;
  text-align: center;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.company_profile_page .company_header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.company_profile_page .company_main_image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
.company_profile_page .company_image_placeholder {
  width: 100%;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3rem;
}
.company_profile_page .company_name {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.company_profile_page .company_category, .company_profile_page .company_station {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.company_profile_page .company_section {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.company_profile_page .section_title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
  border-bottom: 2px solid #667eea;
  padding-bottom: 0.5rem;
}
.company_profile_page .section_content {
  line-height: 1.8;
  color: #555;
}
.company_profile_page .joblists_grid, .company_profile_page .oneday_jobs_grid {
  display: grid;
  gap: 1rem;
}
.company_profile_page .joblist_card, .company_profile_page .oneday_job_card {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 1.5rem;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}
.company_profile_page .joblist_card:hover, .company_profile_page .oneday_job_card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.company_profile_page .joblist_title, .company_profile_page .oneday_job_title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.company_profile_page .joblist_link, .company_profile_page .oneday_job_link {
  color: #667eea;
  text-decoration: none;
}
.company_profile_page .joblist_link:hover, .company_profile_page .oneday_job_link:hover {
  color: #5a6fd8;
  text-decoration: underline;
}
.company_profile_page .joblist_salary, .company_profile_page .oneday_job_salary {
  background-color: #667eea;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: bold;
}
.company_profile_page .joblist_details, .company_profile_page .oneday_job_details {
  margin-top: 1rem;
}
.company_profile_page .joblist_location, .company_profile_page .joblist_work_time, .company_profile_page .oneday_job_date, .company_profile_page .oneday_job_location {
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}
.company_profile_page .company_sidebar {
  position: sticky;
  top: 2rem;
}
.company_profile_page .sidebar_section {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.company_profile_page .sidebar_title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}
.company_profile_page .company_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.company_profile_page .info_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.company_profile_page .info_item:last-child {
  border-bottom: none;
}
.company_profile_page .info_label {
  font-weight: bold;
  color: #666;
}
.company_profile_page .info_value {
  color: #333;
}
.company_profile_page .website_link {
  color: #667eea;
  text-decoration: none;
}
.company_profile_page .website_link:hover {
  text-decoration: underline;
}
.company_profile_page .company_address {
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 0.5rem;
}
.company_profile_page .address_text {
  margin: 0;
  line-height: 1.6;
  color: #555;
}
.company_profile_page .action_buttons {
  text-align: center;
}
@media (max-width: 768px) {
  .company_profile_page .company_main_visual {
    height: 300px;
  }
  .company_profile_page .main_visual_title {
    font-size: 1.2rem;
    padding: 12px 16px;
  }
  .company_profile_page .main_visual_category {
    font-size: 1.1rem;
  }
  .company_profile_page .company_name {
    font-size: 2rem;
  }
  .company_profile_page .company_section {
    padding: 1.5rem;
  }
  .company_profile_page .company_sidebar {
    position: static;
    margin-top: 2rem;
  }
}

.company_access {
  padding: 80px 0;
}
.company_access h6 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
.company_access h6 span {
  display: block;
  font-size: 50%;
  font-weight: normal;
}

.entry_box {
  padding: 80px 0;
}
.entry_box h6 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
.entry_box h6 span {
  display: block;
  font-size: 50%;
  font-weight: normal;
}
.entry_box .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin: 80px 0 !important;
}
.entry_box .row h5 {
  margin-bottom: 1.5rem;
}
.entry_box .row .tel_link {
  background: none;
  border: none;
  color: #272727;
  font-size: 32px;
  padding: 0;
  margin: 0;
}
.entry_box .row .entry_btn {
  background: #F4A300;
  border: none;
  font-size: 18px;
  padding: 0;
  margin: 0 auto;
  color: white;
  padding: 8px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: block;
  width: 60%;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.joblist_detile {
  padding: 80px 0;
}
.joblist_detile h2 {
  margin: 2rem 0 1rem;
  font-size: 24px;
}
.joblist_detile h2 span {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .joblist_detile h2 {
    font-size: 20px;
  }
}
.joblist_detile .joblist-detail__title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 1rem;
}
.joblist_detile .joblist-detail__title-row .card-title {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.joblist_detile .joblist-detail__favorite {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.joblist_detile .joblist-detail__favorite i {
  font-size: 1.75rem;
  color: #bbb;
}
.joblist_detile .joblist-detail__favorite .text-danger {
  color: #ff5a5f !important;
}
.joblist_detile h3 {
  margin: 2rem 0;
  font-size: 16px;
}
.joblist_detile h4 {
  margin: 1rem 0;
  font-size: 16px;
}
.joblist_detile .job-description, .joblist_detile .target-resources, .joblist_detile .job-conditions, .joblist_detile .welfare-benefits {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .joblist_detile .company-info h2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .joblist_detile .company-info a {
    display: block;
    margin: 24px auto;
    width: 60%;
    border-radius: 30px;
  }
}
@media screen and (max-width: 767px) {
  .joblist_detile .company-info {
    margin: 40px 0;
    background: white;
    padding: 32px 16px;
  }
}

.job-conditions table {
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .job-conditions table th, .job-conditions table td {
    display: block;
    border-bottom: none;
    padding: 0;
  }
}
.job-conditions table th {
  width: 20%;
  text-align: left;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .job-conditions table th {
    width: 100%;
    padding: 16px 0 8px;
    color: #888;
    border-bottom: none;
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .job-conditions table td {
    width: 100%;
    border-bottom: 1px solid #ccc !important;
    padding-bottom: 16px !important;
    color: #272727 !important;
    border-top: none !important;
  }
}
.job-conditions table tr:last-of-type th, .job-conditions table tr:last-of-type td {
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .job-conditions table tr:last-of-type th, .job-conditions table tr:last-of-type td {
    border-bottom: none !important;
  }
}

.welfare-benefits .benefits-list span {
  background: #FFE5B0;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.entry_login_btn {
  max-width: 250px;
  margin: 0 auto;
  background: #007bff;
  color: white;
  padding: 8px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: block;
}

.information_management .row .col-3 .inner_cotents {
  background: white;
  padding: 32px 16px;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.information_management .row .col-3 .inner_cotents h3 {
  font-size: 1.5rem;
}
.information_management .row .col-3 .inner_cotents p {
  margin: 0;
  font-size: 1.2rem;
}

.recruit_management .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #dee2e6;
}
.recruit_management .tab-content {
  padding: 1rem;
  background: white;
  margin-top: 0 !important;
}
.recruit_management .nav-item {
  margin-right: 2px;
  font-size: 1rem;
}
.recruit_management .nav-item .nav-link {
  display: block;
  font-size: 1rem !important;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #6c757d;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.recruit_management .nav-item .nav-link i {
  margin-right: 8px;
}
.recruit_management .nav-item .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
  color: #0d6efd;
}
.recruit_management .nav-item .nav-link.active {
  color: #0d6efd;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
  font-weight: 500;
}

.nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #dee2e6;
}

.nav-item {
  margin-right: 2px;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #6c757d;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
  color: #0d6efd;
}
.nav-link.active {
  color: #0d6efd;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
  font-weight: 500;
}

.tab-content {
  padding: 1rem 0;
}

.tab-pane {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.tab-pane.active {
  display: block;
  opacity: 1;
}

.job-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.job-table th,
.job-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #dee2e6;
  text-align: left;
}
.job-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #495057;
}
.job-table tbody tr {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.job-table tbody tr:hover {
  background-color: #f8f9fa;
}

.job-title {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}
.job-title:hover {
  text-decoration: underline;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  min-width: 60px;
}
.status-badge.draft {
  background-color: #6c757d;
  color: #fff;
}
.status-badge.pending {
  background-color: #ffc107;
  color: #000;
}
.status-badge.approved {
  background-color: #198754;
  color: #fff;
}
.status-badge.rejected {
  background-color: #dc3545;
  color: #fff;
}
.status-badge.published {
  background-color: #198754;
  color: #fff;
}

.action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .action-buttons {
    display: block;
  }
}
.action-buttons .btn {
  padding: 0.25rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .action-buttons .btn {
    display: block;
    padding: 8px 0;
    width: 60%;
    border-radius: 30px;
    margin: 40px auto;
  }
}

.status-select {
  min-width: 100px;
}

.status-selector {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  border: 1px solid #dee2e6;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.status-selector:hover {
  border-color: #0d6efd;
}
.status-selector:focus {
  border-color: #0d6efd;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  outline: none;
}
.status-selector option[value=draft] {
  color: #6c757d;
}
.status-selector option[value=published] {
  color: #198754;
}

.user_management_company {
  padding: 40px 0;
  margin: 80px 0;
  min-height: 90vh;
}
.user_management_company h3 {
  margin-bottom: 3rem;
}
.user_management_company .inner_contents {
  padding: 40px 16px;
  background: white;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.user_management_company .inner_contents .table thead th {
  background: none;
  border-top: none;
  text-align: left;
}
.user_management_company .inner_contents .table thead th {
  background: none;
  border-top: none;
  text-align: left;
}
.user_management_company .inner_contents .table th,
.user_management_company .inner_contents .table td {
  font-size: 14px;
  padding: 8px;
}
.user_management_company .inner_contents .table .status-select {
  font-size: 14px;
}
.user_management_company .show_table {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
.user_management_company .show_table th,
.user_management_company .show_table td {
  padding: 24px 0;
  border-bottom: 1px solid #dee2e6;
}
.user_management_company .show_table th {
  width: 30%;
  text-align: left;
}
.user_management_company .show_table td {
  width: 70%;
}

.recruit_form .btn-group {
  margin: 40px 0 80px;
}

.edit_section {
  background: white;
  padding: 16px;
  margin: 24px 0;
}
.edit_section table {
  width: 100%;
}
.edit_section table th, .edit_section table td {
  display: block;
  width: 100%;
  padding: 8px 0;
}
.edit_section table th {
  text-align: left;
  margin-top: 8px;
}
.edit_section table .half {
  display: inline-block;
  width: 48%;
  padding: 0 8px;
}
.edit_section table td input, .edit_section table td select, .edit_section table td textarea {
  width: 100%;
  padding: 12px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.edit_section table td .form-check {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 8px;
}
.edit_section table td .form-check .form-check-input {
  margin-right: 6px;
  width: 20px;
}
.edit_section table td .form-check .form-check-label {
  font-weight: normal;
  cursor: pointer;
}
.edit_section table td .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.edit_section table td .row .col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 8px);
          flex: 0 0 calc(50% - 8px);
}
.edit_section table td .row .col-6 .form-check {
  display: block;
  margin-bottom: 8px;
}
.edit_section table td .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.edit_section table td .input-group .form-control, .edit_section table td .input-group .form-select {
  width: 40%;
}
.edit_section table td .input-group .btn {
  width: auto;
  white-space: nowrap;
  background: #272727;
  color: white;
}

.company_dashboard .alert {
  background: rgb(253, 228, 228) !important;
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
}
.company_dashboard .alert h5, .company_dashboard .alert p {
  color: crimson;
  margin-bottom: 1rem;
}
.company_dashboard .alert p {
  margin-bottom: 1rem !important;
}
.company_dashboard .alert i {
  margin-right: 8px;
}

.onedaypage.onedaypage--detail {
  padding: 0;
  background: #ffffff;
}

.oneday-show {
  padding-top: calc(68px + 0.75rem);
  padding-bottom: 2.5rem;
  max-width: 960px;
}
.oneday-show__toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.oneday-show__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f3d66;
  text-decoration: none;
  padding: 0.25rem 0;
}
.oneday-show__back i {
  font-size: 1rem;
}
.oneday-show__back:hover {
  color: #075985;
  text-decoration: underline;
}
.oneday-show__edit {
  border-radius: 999px;
}
.oneday-show__sheet {
  background: #fff;
  border: 1px solid #d0d7e2;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 4px rgba(15, 30, 55, 0.07);
          box-shadow: 0 1px 4px rgba(15, 30, 55, 0.07);
}
.oneday-show__hero {
  margin: 0;
  padding: 1.25rem 1.5rem 1.15rem;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (max-width: 767px) {
  .oneday-show__hero {
    padding: 1.1rem 1rem 1rem;
  }
}
.oneday-show__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #107bdd;
}
.oneday-show__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.25rem, 3.2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.38;
  color: #0f172a;
}
.oneday-show__company {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #334155;
}
.oneday-show__pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.oneday-show__pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.55rem;
  max-width: 100%;
  padding: 0.55rem 0.85rem;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 600;
  color: #1e293b;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.oneday-show__pill > span,
.oneday-show__pill .oneday-show__pill-text {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.oneday-show__pill i {
  margin-top: 0.12em;
  font-size: 1.05rem;
  color: #0b6efd;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.oneday-show__pill--accent {
  background: #fff8e6;
  border-color: #e6c35c;
}
.oneday-show__pill--accent i {
  color: #b45309;
}
.oneday-show__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.35rem;
}
.oneday-show__tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  background: #e2e8f0;
  color: #334155;
}
.oneday-show__tag--ad {
  background: #fef3c7;
  color: #92400e;
}
.oneday-show__tag--live {
  background: #bbf7d0;
  color: #14532d;
}
.oneday-show__body {
  margin-left: 0;
  margin-right: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.oneday-show__main-col {
  padding: 1.2rem 1.5rem 1.5rem;
  min-width: 0;
  border-right: 1px solid #e2e8f0;
}
@media screen and (max-width: 767px) {
  .oneday-show__main-col {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.1rem 1rem 1.25rem;
  }
}
.oneday-show__aside-col {
  padding: 1.2rem 1.25rem 1.35rem;
  min-width: 0;
  background: #fafbfc;
}
@media screen and (max-width: 767px) {
  .oneday-show__aside-col {
    padding: 1.1rem 1rem 1.25rem;
    background: #fff;
  }
}
.oneday-show__section {
  padding-top: 1.1rem;
  margin-top: 1.1rem;
  border-top: 1px solid #e8ecf1;
}
.oneday-show__section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.oneday-show__block-title {
  margin: 0 0 0.65rem;
  padding: 0.4rem 0 0.4rem 0.75rem;
  border-left: 4px solid #FFB000;
  background: -webkit-gradient(linear, left top, right top, from(#fff9ec), color-stop(85%, transparent));
  background: linear-gradient(90deg, #fff9ec 0%, transparent 85%);
  border-radius: 0 6px 6px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}
.oneday-show__prose {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #1e293b;
}
.oneday-show__prose p {
  margin-bottom: 0.6rem;
}
.oneday-show__prose p:first-child {
  margin-top: 0;
}
.oneday-show__prose p:last-child {
  margin-bottom: 0;
}
.oneday-show__aside-section {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #e2e8f0;
}
.oneday-show__aside-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.oneday-show__aside-section--cta {
  border-top: 2px solid #fde68a;
  margin-top: 1.05rem;
  padding-top: 1.1rem;
}
.oneday-show__aside-heading {
  margin: 0 0 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #475569;
}
.oneday-show__aside-name {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}
.oneday-show__aside-text {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #475569;
}
.oneday-show__cta-lead {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #475569;
}
.oneday-show__dl {
  margin: 0;
}
.oneday-show__dl-row {
  display: grid;
  grid-template-columns: 5.75rem 1fr;
  gap: 0.25rem 0.65rem;
  font-size: 0.88rem;
  line-height: 1.55;
}
.oneday-show__dl-row dt {
  margin: 0;
  color: #64748b;
  font-weight: 700;
}
.oneday-show__dl-row dd {
  margin: 0;
  color: #0f172a;
  font-weight: 600;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .oneday-show__dl-row {
    grid-template-columns: 1fr;
  }
}
.oneday-show__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.58rem 0.75rem;
  margin-top: 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none !important;
  border-radius: 999px;
  overflow-wrap: anywhere;
  word-break: break-word;
  -ms-hyphens: auto;
      hyphens: auto;
}
.oneday-show__btn--outline {
  border: 2px solid #0b6efd;
  color: #075985 !important;
  background: #fff;
}
.oneday-show__btn--outline:hover {
  background: #eff6ff;
  color: #0c4a6e !important;
}
.oneday-show__btn--primary {
  gap: 0.4rem;
  margin-top: 0.5rem;
  color: #1a1a1a !important;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffd54a), to(#f5a600));
  background: linear-gradient(180deg, #ffd54a 0%, #f5a600 100%);
  border: 1px solid #e59b00;
  -webkit-box-shadow: 0 1px 6px rgba(245, 166, 0, 0.3);
          box-shadow: 0 1px 6px rgba(245, 166, 0, 0.3);
}
.oneday-show__btn--primary:hover {
  -webkit-filter: brightness(1.04);
          filter: brightness(1.04);
  color: #111 !important;
}

.company-app {
  --company-app-header-height: 68px;
  scroll-padding-top: var(--company-app-header-height);
}
.company-app__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(15, 30, 55, 0.08);
          box-shadow: 0 2px 8px rgba(15, 30, 55, 0.08);
}
.company-app__header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: var(--company-app-header-height);
  padding: 0.75rem 1rem;
}
.company-app__brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  min-width: 0;
  max-width: min(180px, 45vw);
}
.company-app__brand img {
  display: block;
  width: auto;
  max-width: 100%;
  height: calc(var(--company-app-header-height) - 1.5rem);
  max-height: calc(var(--company-app-header-height) - 1.5rem);
}
.company-app__header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: auto;
}
.company-app__sidebar-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.company-app__sidebar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #334155;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.company-app__sidebar-toggle.is-active span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.company-app__sidebar-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.company-app__sidebar-toggle.is-active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
.company-app__user-menu {
  position: relative;
}
.company-app__user-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  background: #fff;
  color: #0f3d66;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.company-app__user-button i {
  font-size: 1.75rem;
  line-height: 1;
}
.company-app__user-button:hover, .company-app__user-button[aria-expanded=true] {
  background: #eef7ff;
  border-color: #93c5fd;
}
.company-app__user-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 220px;
  padding: 0.75rem;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(15, 30, 55, 0.12);
          box-shadow: 0 10px 30px rgba(15, 30, 55, 0.12);
}
.company-app__user-dropdown[hidden] {
  display: none !important;
}
.company-app__user-name {
  margin: 0 0 0.5rem;
  padding: 0 0.25rem 0.5rem;
  border-bottom: 1px solid #eef2f7;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}
.company-app__user-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.55rem 0.25rem;
  border: none;
  background: transparent;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.company-app__user-link:hover {
  color: #0f3d66;
}
.company-app__user-link--logout {
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eef2f7;
}
.company-app__backdrop {
  position: fixed;
  inset: var(--company-app-header-height) 0 0;
  z-index: 1090;
  background: rgba(15, 23, 42, 0.35);
}
.company-app__backdrop[hidden] {
  display: none !important;
}
.company-app__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: calc(100vh - var(--company-app-header-height));
  padding-top: var(--company-app-header-height);
}
.company-app__sidebar {
  position: fixed;
  top: var(--company-app-header-height);
  left: 0;
  bottom: 0;
  width: 240px;
  padding: 1rem 0.75rem;
  border-right: 1px solid #dbe3ee;
  background: #fff;
  overflow-y: auto;
  z-index: 1100;
}
.company-app__sidebar-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.company-app__sidebar-nav li + li {
  margin-top: 0.35rem;
}
.company-app__sidebar-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  color: #334155;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.company-app__sidebar-link i {
  font-size: 1.2rem;
  color: #64748b;
}
.company-app__sidebar-link:hover {
  background: #f8fafc;
  color: #0f3d66;
}
.company-app__sidebar-link.is-active {
  background: #e8f4ff;
  color: #0f3d66;
}
.company-app__sidebar-link.is-active i {
  color: #107bdd;
}
.company-app__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-left: 240px;
}
.company-app__main-inner {
  padding: 1.25rem 1rem 3rem;
}
.company-app .company_dashboard,
.company-app .company_profile_edit {
  padding-top: 0;
}
.company-app .joblist-form-page {
  padding-top: 0;
}
@media screen and (max-width: 991px) {
  .company-app__sidebar-toggle {
    display: block;
  }
  .company-app__sidebar {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
    -webkit-box-shadow: 0 12px 30px rgba(15, 30, 55, 0.18);
            box-shadow: 0 12px 30px rgba(15, 30, 55, 0.18);
  }
  .company-app__sidebar.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .company-app__main {
    margin-left: 0;
  }
}

.user_mypage {
  padding: 80px 0;
  min-height: 70vh;
}
.user_mypage h3 span {
  font-size: 50%;
  display: block;
}
.user_mypage .btn-group {
  margin: 2rem 0;
}
.user_mypage .btn-group .btn {
  width: 200px;
  padding: 8px 0;
}
.user_mypage .btn-group .btn::before {
  content: "\f2bb";
  font-family: "Line Awesome Free";
  font-weight: 600;
  margin-right: 8px;
}
.user_mypage .btn-group a {
  color: white;
  width: 200px !important;
  padding: 8px 0;
  display: inline-block;
  text-align: center;
}
.user_mypage .btn-group a:last-of-type {
  background: #888;
  padding: 8px 0;
  line-height: 1.5;
  border-radius: 0.25rem;
}
.user_mypage .btn-group a:last-of-type::after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 600;
  margin-right: 8px;
}
.user_mypage .tab-content {
  padding: 1rem;
  background: white;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0;
}
.user_mypage .tab-content .alert, .user_mypage .tab-content .alert-info {
  background: none;
  border: none;
}
.user_mypage .tab-content ul {
  padding: 0;
}
.user_mypage .tab-content ul li {
  list-style: none;
  border: none;
  border-bottom: 1px solid #f2f2f2;
}
.user_mypage .tab-content ul li span {
  display: block;
  margin: 4px 0;
  color: #888;
}
.user_mypage .tab-content ul li span:last-of-type {
  display: inline-block;
  color: #272727;
}

.mypage-tabs {
  margin-bottom: 1.5rem;
}
.mypage-tabs .nav-tabs {
  border-bottom: 2px solid #dee2e6;
}
.mypage-tabs .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  color: #6c757d;
}
.mypage-tabs .nav-tabs .nav-link.active {
  color: #0d6efd;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
  font-weight: 500;
}

.profile_edit {
  padding: 80px 0;
}
.profile_edit h3 {
  margin-bottom: 2rem;
}
.profile_edit h3 span {
  font-size: 50%;
  display: block;
  margin-top: 8px;
}
.profile_edit .edit_table th {
  width: 20%;
  vertical-align: middle;
}
.profile_edit .edit_table td input, .profile_edit .edit_table td select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px;
}
.profile_edit .btn-group {
  margin: 2rem 0;
}
.profile_edit .btn-group .btn {
  width: 200px;
  padding: 8px 0;
}
.profile_edit .btn-group .btn::before {
  content: "\f2ea" !important;
  font-family: "Line Awesome Free";
  font-weight: 600;
  margin-right: 8px;
}
.profile_edit .btn-group a {
  color: white;
  width: 200px !important;
  padding: 8px 0;
  display: inline-block;
  text-align: center;
}
.profile_edit .btn-group a:last-of-type {
  background: #888;
  padding: 8px 0;
  line-height: 1.5;
  border-radius: 0.25rem;
}
.profile_edit .btn-group a:last-of-type::after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 600;
  margin-right: 8px;
}

.edit_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.edit_table th {
  width: 30%;
  padding: 1rem;
  font-weight: 600;
  vertical-align: top;
  text-align: left;
}
.edit_table td {
  padding: 1rem;
  vertical-align: top;
}
.edit_table .form-control,
.edit_table .form-select {
  width: 100%;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.edit_table .form-control:focus,
.edit_table .form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.edit_table .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.edit_table .input-group .form-control, .edit_table .input-group .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.edit_table .input-group .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}
.edit_table .form-text {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.25rem;
}
.edit_table textarea.form-control, .edit_table textarea.form-select {
  resize: vertical;
  min-height: 100px;
}

.contact_form_page {
  padding: 80px 0;
}
.contact_form_page__target {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
  margin: 0 0 1.5rem;
}
.contact_form_page .form_contents {
  max-width: 960px;
  margin: 0 auto;
}
.contact_form_page table {
  width: 100%;
}
.contact_form_page table th, .contact_form_page table td {
  display: block;
}
.contact_form_page table th {
  text-align: left;
  border: none;
  font-weight: 500;
  margin-top: 12px;
}
.contact_form_page table td {
  border-top: none;
  border-bottom: 1px solid #ccc;
}
.contact_form_page table td input, .contact_form_page table td textarea, .contact_form_page table td select {
  width: 100%;
  border-radius: 6px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --gutter-width: 1rem;
  --outer-margin: 2rem;
  --gutter-compensation: calc((var(--gutter-width) * 0.5) * -1);
  --half-gutter-width: calc((var(--gutter-width) * 0.5));
  --xs-min: 30;
  --sm-min: 48;
  --md-min: 64;
  --lg-min: 75;
  --screen-xs-min: var(--xs-min)em;
  --screen-sm-min: var(--sm-min)em;
  --screen-md-min: var(--md-min)em;
  --screen-lg-min: var(--lg-min)em;
  --container-sm: calc(var(--sm-min) + var(--gutter-width));
  --container-md: calc(var(--md-min) + var(--gutter-width));
  --container-lg: calc(var(--lg-min) + var(--gutter-width));
}

.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 16px;
  margin-left: 16px;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: var(--half-gutter-width, 0.5rem);
  padding-left: var(--half-gutter-width, 0.5rem);
}

.col-xs {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
      flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
      flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
      flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
      flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
      flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
      flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
      flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
      flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.start-xs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (--sm-viewport) {
  .container {
    width: var(--container-sm, 46rem);
  }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-right: var(--half-gutter-width, 0.5rem);
    padding-left: var(--half-gutter-width, 0.5rem);
  }
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
        flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
        flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-sm {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .middle-sm {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bottom-sm {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .between-sm {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .first-sm {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .last-sm {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (--md-viewport) {
  .container {
    width: var(--container-md, 61rem);
  }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-right: 16px;
    padding-left: 16px;
  }
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
        flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
        flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-md {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .middle-md {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bottom-md {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .between-md {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .first-md {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .last-md {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-offset-0,
.col-offset-1,
.col-offset-2,
.col-offset-3,
.col-offset-4,
.col-offset-5,
.col-offset-6,
.col-offset-7,
.col-offset-8,
.col-offset-9,
.col-offset-10,
.col-offset-11,
.col-offset-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 16px;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .col,
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12,
  .col-offset-0,
  .col-offset-1,
  .col-offset-2,
  .col-offset-3,
  .col-offset-4,
  .col-offset-5,
  .col-offset-6,
  .col-offset-7,
  .col-offset-8,
  .col-offset-9,
  .col-offset-10,
  .col-offset-11,
  .col-offset-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-xs {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 100%;
}

.col-1 {
  -ms-flex-preferred-size: 8.33333333%;
      flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}
@media screen and (max-width: 767px) {
  .col-1 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-2 {
  -ms-flex-preferred-size: 16.66666667%;
      flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}
@media screen and (max-width: 767px) {
  .col-2 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-3 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}
@media screen and (max-width: 991px) {
  .col-3 {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
}
@media screen and (max-width: 767px) {
  .col-3 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    margin-bottom: 16px;
  }
}

.col-4 {
  -ms-flex-preferred-size: 33.33333333%;
      flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}
@media screen and (max-width: 991px) {
  .col-4 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .col-4 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    margin-bottom: 16px;
  }
}

.col-5 {
  -ms-flex-preferred-size: 41.66666667%;
      flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}
@media screen and (max-width: 991px) {
  .col-5 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .col-5 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }
}

.col-6 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .col-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    margin-bottom: 16px;
  }
}

.col-7 {
  -ms-flex-preferred-size: 58.33333333%;
      flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}
@media screen and (max-width: 767px) {
  .col-7 {
    -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
}

.col-8 {
  -ms-flex-preferred-size: 66.66666667%;
      flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}
@media screen and (max-width: 767px) {
  .col-8 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-9 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
}
@media screen and (max-width: 767px) {
  .col-9 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-10 {
  -ms-flex-preferred-size: 83.33333333%;
      flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}
@media screen and (max-width: 767px) {
  .col-10 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-11 {
  -ms-flex-preferred-size: 91.66666667%;
      flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}
@media screen and (max-width: 767px) {
  .col-11 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-12 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

.col-offset-0 {
  margin-left: 0;
}

.col-offset-1 {
  margin-left: 8.33333333%;
}

.col-offset-2 {
  margin-left: 16.66666667%;
}

.col-offset-3 {
  margin-left: 25%;
}

.col-offset-4 {
  margin-left: 33.33333333%;
}

.col-offset-5 {
  margin-left: 41.66666667%;
}

.col-offset-6 {
  margin-left: 50%;
}

.col-offset-7 {
  margin-left: 58.33333333%;
}

.col-offset-8 {
  margin-left: 66.66666667%;
}

.col-offset-9 {
  margin-left: 75%;
}

.col-offset-10 {
  margin-left: 83.33333333%;
}

.col-offset-11 {
  margin-left: 91.66666667%;
}

.start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: start;
}

.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: end;
}

.top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.last {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

img {
  display: block;
  max-width: 100%;
}

.first {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  .first {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
}

.second {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 767px) {
  .second {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .inline {
    display: inline-block !important;
  }
}

.readmore {
  display: inline;
  text-align: center;
  font-size: 0.8rem;
  margin: 0;
  color: #675852;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

h2 {
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: bold;
}

h3 {
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: bold;
}

h4 {
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: bold;
}

h5 {
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  h2, h3, h4, h5, h6, p {
    letter-spacing: 0.03em !important;
  }
}

h4, h5, h6 {
  line-height: 1.5;
}

p {
  line-height: 2;
}

article:not([class]) {
  padding: calc(40px + 3vw) 0;
}

a {
  text-decoration: none;
  color: #272727;
}

.pc {
  display: block;
}
@media screen and (max-width: 991px) {
  .pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 991px) {
  .sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.row {
  margin: 0 !important;
}

.container-fluid {
  width: calc(100% - 32px);
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.container {
  max-width: 1368px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 1399px) {
  .container {
    width: calc(100% - 32px);
  }
}
@media screen and (max-width: 1199px) {
  .container {
    width: calc(100% - 32px);
  }
}
@media screen and (max-width: 991px) {
  .container {
    width: calc(100% - 32px);
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: calc(100% - 32px);
    padding: 0 !important;
    margin: 0 auto;
  }
}

.block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0;
}

.wp-pagenavi { /* 全体 */
  margin: 20px 0;
  font-size: 12px;
  text-align: center;
}

.wp-pagenavi a { /* フォント色 */
  color: #4a4a4a;
  margin: 0 8px;
}

.pages { /* 左の表記 */
  margin-right: 20px;
}

.sfwppa-pages {
  margin: 0 8px;
}

.wp-pagenavi .current,
.wp-pagenavi a.page { /* ボタン */
  margin: 0 6px 6px 0;
  display: inline-block;
  border: solid 1px #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
}

.wp-pagenavi .current { /* カレント数字 */
  border: none;
  background: #87e6e9;
  color: #fff;
}

.wp-pagenavi a.page:hover { /* マウスオーバー */
  background: #87e6e9;
  color: #fff;
}

.wp-pagenavi .first,
.wp-pagenavi .extend { /* ... */
  margin-right: 10px;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink { /* 記号の削除 */
  display: none;
}

#stickyBox {
  position: relative;
  width: 100%;
}
#stickyBox.is-show #floating-menu {
  left: 30px;
  position: fixed;
  top: 0;
}

.sticky #floating-menu {
  top: 0;
  position: fixed;
}

.automatic_quote {
  background: #0068b7;
  color: white;
  border-radius: 30px;
  display: block;
  width: 250px;
  margin: 3rem auto;
  padding: 8px 16px;
  font-size: 24px;
}

.Iinner_btnGroup ul {
  width: 60%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .Iinner_btnGroup ul {
    display: block;
  }
}
.Iinner_btnGroup ul li {
  background: white;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #272727;
  border-radius: 6px;
  margin: 0 8px;
}
@media screen and (max-width: 767px) {
  .Iinner_btnGroup ul li {
    width: 90%;
    display: block;
    margin: 1rem auto;
  }
}
.Iinner_btnGroup ul li span {
  display: block;
  font-size: 50%;
}
.Iinner_btnGroup ul li a {
  font-size: clamp(24px, 2.8vw, 28px);
  text-align: center;
}

.blueBtn {
  display: block;
  margin: 0 auto;
  max-width: 200px;
  background: #00b9e7;
  color: white;
  text-align: center;
  font-weight: 600;
  padding: 12px 0;
}

.stripBtn_blue {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(0, 185, 231, 0.5) 10px, rgba(0, 185, 231, 0.5) 25px);
  display: block;
  max-width: 400px;
  margin: 2rem auto;
  padding: 18px 0;
  text-align: center;
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 600;
  text-align: center;
}

.stripBtn_yellow {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(255, 219, 0, 0.5) 10px, rgba(255, 219, 0, 0.5) 25px);
  display: block;
  max-width: 400px;
  margin: 2rem auto;
  padding: 18px 0;
  text-align: center;
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 600;
  text-align: center;
}
.stripBtn_yellow i {
  font-weight: 500;
}

.dmtitle {
  text-align: center;
}

.dm-text {
  white-space: pre-line;
}

#trial_period_fields {
  display: none;
}
#trial_period_fields.show {
  display: block;
}

.trial-period-fields {
  display: none;
}

.trial-period-toggle:checked ~ .trial-period-fields {
  display: block;
}

footer {
  border-top: 1px solid #ccc;
  padding-top: 80px;
  background: white;
}
@media screen and (max-width: 991px) {
  footer {
    padding-top: 56px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 40px;
    padding-bottom: 24px;
  }
}
footer h2 {
  font-size: 16px;
  margin-top: 2rem;
}
footer h2 span {
  display: block;
  font-size: 80%;
  margin-bottom: 8px;
}
footer h2 span::before {
  content: "■";
  margin-right: 4px;
}
@media screen and (max-width: 767px) {
  footer h2 {
    margin-top: 1.25rem;
  }
}
footer .row .col-6 .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  footer > .container > .row > .col-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  footer > .container > .row > .col-6:first-child {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  footer > .container > .row > .col-6:nth-child(2) {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  footer .col-6 .col-6 {
    margin: 1.25rem 0;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    text-align: center;
  }
  footer .col-6 .col-6 img {
    width: 70%;
    max-width: 160px;
    height: auto;
    margin: 0 auto;
  }
}
footer address {
  font-style: normal;
  margin-bottom: 8px;
}
footer .tel::before {
  content: "TEL";
  margin-right: 4px;
}
footer ul {
  padding: 0;
  margin: 2rem 0;
}
footer ul li {
  margin-bottom: 8px;
  margin: 0 16px;
  display: inline-block;
  list-style: none;
}
@media screen and (max-width: 767px) {
  footer ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0;
  }
}
footer ul li a {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  footer ul li a {
    display: inline-block;
    font-size: 13px;
    padding: 8px 0;
  }
}
@media screen and (max-width: 767px) {
  footer ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 0.75rem;
    margin: 1rem 0 0;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  footer .text-center {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 12px;
    color: #64748b;
  }
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1200;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  padding: 16px 0;
}
@media (max-width: 768px) {
  #main-header {
    padding: 0;
  }
}
#main-header.is-scrolled {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#main-header .logo {
  max-width: 250px !important;
  height: auto !important;
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  #main-header .logo {
    padding: 16px 0;
    max-width: 200px !important;
  }
}
#main-header .logo img {
  width: auto !important;
  max-width: 100%;
  height: 48px;
  max-height: 48px;
}
#main-header .up_menu {
  display: block;
  text-align: right;
}
#main-header .up_menu li {
  padding: 0;
  padding-top: 8px;
}
#main-header .up_menu li a {
  font-size: 12px !important;
}
#main-header .up_menu li:last-of-type {
  border-left: none;
  border-right: none;
}
#main-header .nav-menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
#main-header .site-header__auth-actions {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
#main-header .site-header__auth-login {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
#main-header .site-header__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 999px;
  background-color: #107bdd;
  background-image: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
#main-header .site-header__cta, #main-header .site-header__cta:link, #main-header .site-header__cta:visited, #main-header .site-header__cta:hover, #main-header .site-header__cta:focus, #main-header .site-header__cta:active {
  color: #fff;
}
#main-header .nav-menu .nav-item--full {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}
#main-header .nav-menu .nav-item--full form {
  margin: 0;
  padding: 0;
  background: none !important;
  border: none !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#main-header .nav-menu .nav-item--full .nav-link--logout {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  padding: 0.5rem 0 !important;
  margin: 0;
  color: #444;
  font-weight: 500;
  font-size: inherit;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
#main-header .nav-menu .nav-item--full .nav-link--logout i {
  margin: 0;
  font-size: 1.1rem;
}
#main-header .nav-menu .nav-item--full .nav-link--logout:hover, #main-header .nav-menu .nav-item--full .nav-link--logout:focus {
  color: #107bdd;
  background: none !important;
  text-decoration: none;
}

body:not(.home-page) main {
  padding-top: 80px;
}

@media (max-width: 768px) {
  #main-header .site-header__auth-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0.75rem;
    width: 100%;
  }
  #main-header .site-header__cta {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
.admin-header {
  padding: 0.75rem 0;
  margin-bottom: 0.5rem;
}
.admin-header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  gap: 1.5rem;
}
.admin-header img {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.admin-header .admin-info {
  margin-left: auto;
  font-size: 0.9rem;
  padding-right: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin-header .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.admin-header .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.col-2 {
  min-height: calc(100vh - 60px);
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}
.col-2 ul {
  list-style: none;
  padding: 0;
}
.col-2 ul li {
  padding: 1rem 0;
}
.col-2 ul li a i {
  margin-right: 0.5rem;
}
.col-2 .nav-link {
  border-radius: 0.25rem;
  padding: 0.8rem 1rem;
  margin-bottom: 0.25rem;
  text-decoration: none;
  list-style: none;
}
.col-2 .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.col-2 .nav-link.active {
  background-color: #1f9ee5;
  color: #fff;
}
.col-2 hr {
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  #main-header .navbar .nav-menu {
    display: none !important;
    padding: 84px 16px 32px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    width: auto;
    height: 100vh;
    overflow-y: auto;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-left: 0 !important;
  }
  #main-header .navbar .nav-menu.open {
    display: block !important;
  }
  #main-header .navbar .nav-menu ul {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
    justify-items: stretch !important;
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
    -ms-flex-wrap: initial;
        flex-wrap: initial;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #main-header .navbar .nav-menu li {
    display: block !important;
    width: 100%;
    margin: 0 !important;
    padding: 0;
    text-align: left;
    border: none;
    background: none !important;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #main-header .navbar .nav-menu .nav-section-heading {
    grid-column: 1/-1;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.45rem;
    margin: 8px 0 -2px !important;
    padding: 4px 2px !important;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: none;
    list-style: none;
  }
  #main-header .navbar .nav-menu .nav-section-heading::after {
    content: "";
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    height: 1px;
    background: #e2e8f0;
  }
  #main-header .navbar .nav-menu .nav-section-heading i {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 22px;
    height: 22px;
    margin: 0 !important;
    border-radius: 6px;
    background: #eaf3ff;
    color: #107bdd;
    font-size: 0.95rem;
  }
  #main-header .navbar .nav-menu .nav-section-heading:first-child {
    margin-top: 0 !important;
  }
  #main-header .navbar .nav-menu .nav-link {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 80px;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px;
    background: #fff;
    color: #0f3554;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    -webkit-transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  }
  #main-header .navbar .nav-menu .nav-link::after {
    display: none !important;
    content: none !important;
  }
  #main-header .navbar .nav-menu .nav-link:hover,
  #main-header .navbar .nav-menu .nav-link:focus {
    background: #eaf3ff;
    border-color: #b7d6f5 !important;
    color: #107bdd;
    -webkit-box-shadow: 0 4px 12px rgba(16, 123, 221, 0.12);
            box-shadow: 0 4px 12px rgba(16, 123, 221, 0.12);
  }
  #main-header .navbar .nav-menu .nav-link.active {
    background: #107bdd;
    border-color: #107bdd !important;
    color: #fff;
    -webkit-box-shadow: 0 6px 16px rgba(16, 123, 221, 0.22);
            box-shadow: 0 6px 16px rgba(16, 123, 221, 0.22);
  }
  #main-header .navbar .nav-menu .nav-link__icon {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0;
    border-radius: 50%;
    background: #eaf3ff;
    color: #107bdd;
    font-size: 1.1rem;
    line-height: 1;
    -webkit-transition: background-color 0.2s ease, color 0.2s ease;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  #main-header .navbar .nav-menu .nav-link.active .nav-link__icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
  }
  #main-header .navbar .nav-menu .nav-link__label {
    display: block;
    width: 100%;
    word-break: keep-all;
    line-height: 1.4;
  }
  #main-header .navbar .nav-menu .nav-item--full {
    grid-column: 1/-1;
  }
  #main-header .navbar .nav-menu .nav-link--logout {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    min-height: 52px;
    padding: 12px 16px !important;
    border-radius: 999px;
    border: 1px solid #fda4af !important;
    background: #fff5f5 !important;
    color: #b91c1c !important;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
  }
  #main-header .navbar .nav-menu .nav-link--logout i {
    font-size: 1.1rem;
    margin-right: 0.4rem;
  }
  #main-header .navbar .nav-menu form {
    width: 100%;
    margin: 0;
    background: none !important;
    border: none !important;
  }
  #main-header .navbar .nav-menu .site-header__auth {
    grid-column: 1/-1;
    border: none !important;
  }
  #main-header .navbar .nav-menu .site-header__auth-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 10px;
    width: 100%;
    margin: 4px 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #main-header .navbar .nav-menu .site-header__auth-login {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.4rem;
    width: 100% !important;
    min-height: 48px;
    padding: 12px 8px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 999px;
    background: #fff !important;
    color: #0f3554 !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    white-space: nowrap;
  }
  #main-header .navbar .nav-menu .site-header__auth-login i {
    font-size: 1.05rem;
    margin: 0;
  }
  #main-header .navbar .nav-menu .site-header__cta {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.4rem;
    width: 100% !important;
    min-height: 48px;
    padding: 12px 8px !important;
    border: none !important;
    border-radius: 999px;
    background-color: #107bdd !important;
    background-image: none !important;
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    -webkit-box-shadow: 0 8px 18px rgba(16, 123, 221, 0.25);
            box-shadow: 0 8px 18px rgba(16, 123, 221, 0.25);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    white-space: nowrap;
  }
  #main-header .navbar .nav-menu .site-header__cta i {
    font-size: 1.05rem;
    margin: 0;
  }
  #main-header .navbar .nav-menu .nav-item--contact {
    grid-column: 1/-1;
    margin-top: 4px !important;
  }
  #main-header .navbar .nav-menu .nav-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0.4rem;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    text-align: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #main-header .navbar .nav-menu .nav-contact__company {
    margin: 0;
    color: #0f3554;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
  }
  #main-header .navbar .nav-menu .nav-contact__address {
    margin: 0;
    color: #475569;
    font-size: 0.78rem;
    line-height: 1.5;
  }
  #main-header .navbar .nav-menu .nav-contact__tel {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.45rem;
    margin-top: 0.4rem;
    padding: 0.6rem 0.9rem;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #fff;
    color: #0f3554;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
  }
  #main-header .navbar .nav-menu .nav-contact__tel i {
    color: #107bdd;
    font-size: 1.15rem;
    margin: 0;
  }
  #main-header .navbar .nav-menu .nav-contact__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.45rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #107bdd;
    color: #107bdd;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: background-color 0.2s ease, color 0.2s ease;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  #main-header .navbar .nav-menu .nav-contact__button i {
    font-size: 1.05rem;
    margin: 0;
  }
  #main-header .navbar .nav-menu .nav-contact__button:hover, #main-header .navbar .nav-menu .nav-contact__button:focus {
    background: #107bdd;
    color: #fff;
  }
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    width: auto;
    min-width: 52px;
    min-height: 48px;
    padding: 4px 6px 2px;
    position: relative;
    z-index: 1100;
    background: none;
    border: none;
    margin-right: 10px;
  }
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
  .nav-menu {
    display: block !important;
  }
  .nav-menu .nav-link__icon {
    display: none !important;
  }
  .nav-menu .nav-link__label {
    display: inline;
  }
  .nav-menu .nav-section-heading,
  .nav-menu .nav-item--contact,
  .nav-menu .nav-contact {
    display: none !important;
  }
}
.hamburger__bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 26px;
}
.hamburger__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transition: transform 0.35s ease, opacity 0.25s ease, -webkit-transform 0.35s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.hamburger__label {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #333;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.hamburger.active .hamburger__bar:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger__bar:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

#main-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#main-header .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1rem;
}
#main-header .navbar .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  min-width: 0;
  max-width: 220px;
}
@media screen and (max-width: 767px) {
  #main-header .navbar .logo {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: none;
    padding: 16px 0;
  }
}
#main-header .navbar .up_menu li a {
  font-size: 12px !important;
}
#main-header .navbar .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: auto;
}
#main-header .navbar .nav-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}
#main-header .navbar .nav-menu ul li {
  margin: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#main-header .navbar .nav-menu ul li i {
  margin-right: 8px;
}
#main-header .navbar .nav-menu ul li:last-child {
  margin-right: 0;
  background: none !important;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 0.8rem 1rem;
}
@media screen and (max-width: 767px) {
  #main-header .navbar .nav-menu ul li:last-child {
    border-left: none;
    border-right: none;
  }
}
#main-header .navbar .nav-menu ul li:last-child .nav-link,
#main-header .navbar .nav-menu ul li:last-child a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
#main-header .navbar .nav-menu ul li:last-child i {
  display: inline-block;
  font-size: 1.25rem;
  margin: 0;
  text-align: left;
}
#main-header .navbar .nav-menu ul li:last-child form {
  background: none !important;
}
#main-header .navbar .nav-menu ul li:last-child form button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  background: none !important;
  border: none !important;
}
#main-header .navbar .navbar-brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
}
#main-header .navbar .navbar-brand img {
  width: auto;
  max-width: 100%;
  height: 48px;
  max-height: 48px;
}
#main-header .navbar .nav-link {
  padding: 0.5rem 0;
  color: #444;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  border: none !important;
}
#main-header .navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #007bff;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
#main-header .navbar .nav-link:hover, #main-header .navbar .nav-link:focus {
  color: #007bff;
}
#main-header .navbar .nav-link:hover::after, #main-header .navbar .nav-link:focus::after {
  width: 100%;
}
#main-header .navbar .nav-link.active {
  color: #007bff;
}
#main-header .navbar .nav-link.active::after {
  width: 100%;
}

body.home-page #main-header .navbar .nav-link {
  color: #334155;
}
body.home-page #main-header .navbar .nav-link::after {
  background-color: #107bdd;
}
body.home-page #main-header .navbar .nav-link:hover, body.home-page #main-header .navbar .nav-link:focus, body.home-page #main-header .navbar .nav-link.active {
  color: #107bdd;
}
body.home-page #main-header .navbar .nav-menu ul li a:not(.site-header__cta) {
  color: #334155;
}
body.home-page #main-header .navbar .site-header__cta,
body.home-page #main-header .navbar .site-header__cta:link,
body.home-page #main-header .navbar .site-header__cta:visited,
body.home-page #main-header .navbar .site-header__cta:hover,
body.home-page #main-header .navbar .site-header__cta:focus,
body.home-page #main-header .navbar .site-header__cta:active {
  color: #fff;
}
body.home-page #main-header .navbar .nav-menu ul li:last-child {
  border-left-color: rgba(15, 30, 55, 0.12);
  border-right-color: rgba(15, 30, 55, 0.12);
}
@media (max-width: 768px) {
  body.home-page #main-header .hamburger__bar {
    background: #334155;
  }
  body.home-page #main-header .nav-menu {
    background: #fff;
  }
  body.home-page #main-header .nav-menu ul li a:not(.site-header__cta),
  body.home-page #main-header .nav-menu .nav-link {
    color: #444;
  }
  body.home-page #main-header .nav-menu .site-header__cta,
  body.home-page #main-header .nav-menu .site-header__cta:link,
  body.home-page #main-header .nav-menu .site-header__cta:visited,
  body.home-page #main-header .nav-menu .site-header__cta:hover,
  body.home-page #main-header .nav-menu .site-header__cta:focus,
  body.home-page #main-header .nav-menu .site-header__cta:active {
    color: #fff;
  }
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
main .alert {
  margin-bottom: 1rem;
}

.debug-info {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 5px;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  #main-header .navbar .navbar-brand {
    width: auto;
    margin-right: 0;
    margin-bottom: 0;
    text-align: left;
  }
  #main-header .navbar .navbar-menu {
    width: 100%;
  }
  #main-header .navbar .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 1rem;
  }
  #main-header .navbar .navbar-nav .nav-item {
    margin: 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  #main-header .navbar .navbar-nav .nav-link {
    padding: 0.75rem 0;
  }
  #main-header .navbar .navbar-nav .nav-link::after {
    display: none;
  }
  #main-header .navbar .nav-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  #main-header .navbar .nav-buttons .btn {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
  #main-header .navbar .nav-buttons .btn:last-child {
    margin-bottom: 0;
  }
}
.index_page {
  margin: calc(80px + 3rem) 0;
}
.index_page h2,
.index_page h3 {
  font-size: 2rem;
  text-align: center;
  font-style: italic;
  text-transform: uppercase;
}
.index_page h2 span,
.index_page h3 span {
  font-size: 14px;
  display: block;
  margin-top: 8px;
}
.index_page p {
  text-align: center;
  font-size: 14px;
  color: #888;
}
.index_page .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto !important;
}
.index_page .row .col-2 {
  height: auto !important;
  min-height: 100%;
  padding: 0 !important;
}
.index_page .card h5 {
  margin: 1rem 0;
}
.index_page .card a {
  margin-top: 1rem;
  padding: 0.5rem 2rem;
}

#home_search_hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 80px;
  padding: 0;
  background: transparent;
  overflow: hidden;
  min-height: clamp(560px, 78vh, 820px);
}
#home_search_hero .home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #6aaad0;
  background-image: var(--home-hero-image);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
#home_search_hero .home-hero__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1240px;
  height: auto;
  min-height: 100%;
  margin: 0 auto;
  padding: calc(80px + 2.5rem) 0 3rem;
}
#home_search_hero .home-hero__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 640px;
  margin-bottom: 0;
}
#home_search_hero .home-hero__headline {
  margin: 0 0 1rem;
  color: #082a48;
  font-size: clamp(1.75rem, 4.8vw, 2.75rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
  white-space: pre-line;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 0 16px rgba(255, 255, 255, 0.45);
}
#home_search_hero .home-hero__lead {
  margin: 0;
  max-width: 34rem;
  color: #082a48;
  font-size: 1.05rem;
  line-height: 1.8;
}
#home_search_hero .home-hero__search {
  width: 100%;
  max-width: none;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
#home_search_hero h2,
#home_search_hero h3 {
  font-size: 2rem;
  text-align: center;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
}
#home_search_hero h2 span,
#home_search_hero h3 span {
  font-size: 14px;
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
}
#home_search_hero p.text,
#home_search_hero > .container > p {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}
#home_search_hero .search-form .row {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
#home_search_hero .search-form .row > [class*=col-] {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
#home_search_hero .search-form select,
#home_search_hero .search-form input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#home_search_hero .search-form select {
  padding: 10px 14px;
}
#home_search_hero .search-form .btn {
  background: #FFB000;
  margin: 0;
  width: 100%;
  font-weight: bold;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  #home_search_hero .search-form .btn {
    width: 100%;
    margin: 20px auto 0;
    display: block;
  }
}
#home_search_hero .search-tabs {
  margin: 0;
}
@media screen and (max-width: 767px) {
  #home_search_hero .search-tabs {
    margin: 0;
  }
}
#home_search_hero .search-tabs .tab-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
#home_search_hero .search-tabs .tab-link {
  background: transparent;
  color: #082a48;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  #home_search_hero .search-tabs .tab-link {
    font-size: 14px;
  }
}
#home_search_hero .search-tabs .tab-link:hover {
  background: transparent;
  color: #107bdd;
}
#home_search_hero .search-tabs .active {
  background: transparent;
  border-bottom: 2px solid #FFB000;
  color: #082a48;
}
#home_search_hero .search-tabs .active:hover {
  background: transparent;
  color: #082a48;
}
#home_search_hero .search-tabs .tab-content {
  background-color: #fff;
  padding: 1.75rem 2rem 2rem;
  margin: 0 !important;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  #home_search_hero .search-tabs .tab-content {
    padding: 1rem 1rem 1.25rem;
  }
}
#home_search_hero .row {
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  height: auto !important;
}
#home_search_hero .row .col-2 {
  height: auto !important;
  min-height: 100%;
}
@media screen and (max-width: 767px) {
  #home_search_hero {
    min-height: auto;
  }
  #home_search_hero .home-hero__inner {
    gap: 1.5rem;
    min-height: auto;
    padding: calc(80px + 1.5rem) 0 2rem;
  }
  #home_search_hero .home-hero__copy {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #home_search_hero .home-hero__search {
    margin-top: 0;
  }
  #home_search_hero .home-hero__lead {
    font-size: 0.95rem;
  }
}

.tab-link {
  padding: 12px 32px;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #222;
  font-size: 1.1rem;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  margin-right: 4px;
  cursor: pointer;
}

.tab-link.active {
  background: #cceaff;
  color: #222;
  font-weight: bold;
  border-bottom: 2px solid #2196f3;
}

.tab-link:hover {
  background: #e3f4fd;
  color: #1976d2;
}

.tab-content {
  margin-top: 16px;
}

.job-new-arrivals h3 {
  text-align: center;
  margin-bottom: 4rem;
}
.job-new-arrivals .row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.job-new-arrivals .row .col-4 {
  margin: 16px 0;
}
.job-new-arrivals h5 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 16px;
}
.job-new-arrivals h5 span {
  font-size: 12px;
  display: block;
  padding: 0;
  background: none !important;
  color: #272727;
  margin: 4px 0;
}
.job-new-arrivals h2 {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 1.5rem;
}
.job-new-arrivals i {
  color: #007bff;
  font-weight: bold;
  margin-right: 4px;
}
.job-new-arrivals a {
  width: 100%;
  display: block;
}
.job-new-arrivals .box {
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 16px;
  background: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .job-new-arrivals .box {
    padding: 8px;
    display: block;
    width: 95%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.job-new-arrivals .box .mb-1 {
  font-size: 12px;
  color: #666;
  padding: 4px 0;
}

.spot-oneday-jobs {
  margin-top: 3.5rem;
  margin-bottom: 5rem;
  padding-bottom: 1rem;
}
.spot-oneday-jobs__title {
  text-align: center;
  margin-bottom: 1rem !important;
  font-size: 2rem;
  font-style: italic;
  text-transform: uppercase;
}
.spot-oneday-jobs__title span {
  display: block;
  margin-top: 0.5rem;
  font-size: 14px;
  font-style: normal;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #333;
}
.spot-oneday-jobs__lead {
  text-align: center;
  margin: 0 auto 2.75rem;
  max-width: 38em;
  line-height: 1.65;
  color: #666;
  font-size: 14px;
}
.spot-oneday-jobs__grid {
  row-gap: 1.35rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.spot-oneday-jobs__grid > .col-4 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .spot-oneday-jobs__grid > .col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
.spot-oneday-jobs__card.box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  min-height: 100%;
  padding: 1.25rem 1.35rem 1.15rem;
  border: 1px solid #e4e8ed;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0 2px 12px rgba(15, 30, 55, 0.06);
          box-shadow: 0 2px 12px rgba(15, 30, 55, 0.06);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.15s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.15s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.15s ease;
}
.spot-oneday-jobs__card.box:hover {
  border-color: #4BB4FF;
  -webkit-box-shadow: 0 8px 24px rgba(75, 180, 255, 0.2);
          box-shadow: 0 8px 24px rgba(75, 180, 255, 0.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.spot-oneday-jobs__job-title {
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.65rem !important;
  line-height: 1.45 !important;
  color: #1a1a1a;
  text-align: left;
}
.spot-oneday-jobs__job-title .spot-oneday-jobs__badge {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 10px !important;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  vertical-align: middle;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff8e6), to(#ffecc4));
  background: linear-gradient(180deg, #fff8e6 0%, #ffecc4 100%);
  color: #7a5a00;
  border-radius: 4px;
  border: 1px solid rgba(255, 176, 0, 0.45);
}
.spot-oneday-jobs__company {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.45;
  color: #333;
  text-align: left;
}
.spot-oneday-jobs__meta {
  margin: 0;
  padding: 0.15rem 0;
}
.spot-oneday-jobs__meta-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #555;
}
.spot-oneday-jobs__meta-text i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.15em;
  margin-top: 0.12em;
  text-align: center;
  color: #4BB4FF;
}
.spot-oneday-jobs__more {
  text-align: center;
  margin-top: 2.75rem !important;
  margin-bottom: 0;
}
.spot-oneday-jobs__more-btn.btn {
  display: inline-block;
  width: auto;
  min-width: 15rem;
  padding: 0.7rem 2rem;
  background: #FFB000;
  color: #272727 !important;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  letter-spacing: 0.06em;
  -webkit-box-shadow: 0 2px 8px rgba(255, 176, 0, 0.35);
          box-shadow: 0 2px 8px rgba(255, 176, 0, 0.35);
}
.spot-oneday-jobs__more-btn.btn:hover {
  -webkit-filter: brightness(1.06);
          filter: brightness(1.06);
  color: #272727 !important;
}

.urgent-jobs h3 {
  text-align: center;
}

.site_information {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .site_information {
    padding-bottom: 40px;
  }
}
.site_information > h2 {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.06em;
  line-height: 1.35;
}
.site_information h2 span {
  text-transform: capitalize;
  font-style: normal;
}
.site_information h3 {
  font-size: 18px;
  font-style: normal;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .site_information h3 {
    font-size: 13px;
  }
}
.site_information .row {
  margin: 80px 0 !important;
}
.site_information .col-3 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .site_information .col-3 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    padding: 8px;
  }
}
.site_information .col-3 img {
  width: 70%;
  height: auto;
  margin: 0 auto;
}
.site_information .col-3 .infoBox {
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 16px;
  background: white;
}
@media screen and (max-width: 767px) {
  .site_information .col-3 .infoBox {
    padding: 8px;
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .search-form {
    margin: 40px 0;
  }
  .search-form .col-3, .search-form .col-4 {
    margin: 8px 0;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.joblist-cards {
  padding-bottom: 80px;
}

.urgent-jobs {
  margin-bottom: 40px;
}

.urgent-box {
  border: 2px solid #dc3545;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.urgent-box:hover {
  border-color: #c82333;
  -webkit-box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
          box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.urgent-badge {
  background: #dc3545;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7em;
  margin-left: 8px;
  font-weight: normal;
}

.job-category-badge {
  background-color: #007bff;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7em;
  margin-right: 8px;
  font-weight: normal;
  display: inline-block;
}

.category-section {
  margin-bottom: 40px;
}

.category-box {
  display: block;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
}

.category-box:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: #007bff;
  text-decoration: none;
  color: inherit;
}

.category-content {
  text-align: center;
  position: relative;
}

.category-content h4 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.job-count {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.category-arrow {
  color: #007bff;
  font-size: 1.2rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.category-box:hover .category-arrow {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.home-page main {
  padding-top: 0;
}
body.home-page #main-header .navbar {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
body.home-page #main-header .nav-menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
body.home-page #main-header .nav-menu ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem 1.25rem;
}
body.home-page #main-header .nav-menu .nav-link,
body.home-page #main-header .nav-menu ul li a:not(.site-header__cta) {
  color: #334155;
  font-weight: 600;
}
body.home-page #main-header .nav-menu .nav-link::after {
  background-color: #107bdd;
}

.home-top {
  color: #0f3554;
  background: white;
}
.home-top__hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 82vh, 860px);
  margin-bottom: 0;
}
.home-top__hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #6aaad0;
  background-image: var(--home-top-hero-image);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-top__hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.5) 28%, rgba(255, 255, 255, 0.2) 48%, rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}
.home-top__hero-inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  min-height: 70vh;
  padding: calc(88px + 2.5rem) 0 3rem;
}
.home-top__hero-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: min(100%, 44rem);
}
.home-top__hero-title {
  margin: 0 0 1rem;
}
.home-top__hero-title img {
  display: block;
  max-width: 100%;
  height: auto;
}
.home-top__hero-lead {
  margin: 0;
  color: #1e3a5f;
  font-size: 1.05rem;
  line-height: 1.85;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}
.home-top__hero-search {
  width: 100%;
  max-width: none;
  margin: 0;
}
.home-top__search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0.75rem;
  padding: 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  -webkit-box-shadow: 0 12px 32px rgba(15, 30, 55, 0.12);
          box-shadow: 0 12px 32px rgba(15, 30, 55, 0.12);
}
.home-top__search-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0 0.75rem 0 1rem;
}
.home-top__search-field i {
  color: #64748b;
  font-size: 1.25rem;
}
.home-top__search-input {
  width: 100%;
  border: none;
  background: transparent;
  color: #0f3554;
  font-size: 1rem;
  outline: none;
}
.home-top__search-input::-webkit-input-placeholder {
  color: #94a3b8;
}
.home-top__search-input::-moz-placeholder {
  color: #94a3b8;
}
.home-top__search-input:-ms-input-placeholder {
  color: #94a3b8;
}
.home-top__search-input::-ms-input-placeholder {
  color: #94a3b8;
}
.home-top__search-input::placeholder {
  color: #94a3b8;
}
.home-top__search-submit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0.95rem 1.75rem;
  border: none;
  border-radius: 999px;
  background-color: #107bdd;
  background-image: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.home-top__area-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
}
.home-top__area-label {
  color: #0a3553;
  font-size: 0.9rem;
  font-weight: 700;
}
.home-top__area-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #0a3553;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.home-top__section {
  padding: 4.5rem 0;
}
.home-top__section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  margin: 0 0 2rem;
  color: #0a3553;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  text-align: center;
}
.home-top__section-title i {
  color: #4bb4ff;
  font-size: 80%;
}
.home-top__section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.home-top__section-heading {
  margin: 0;
  color: #0a3553;
  font-size: 1.6rem;
  font-weight: 500;
}
.home-top__section-link {
  color: #107bdd;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.home-top__section-heading--center {
  width: 100%;
  text-align: center;
}
.home-top__companies {
  overflow: hidden;
}
.home-top__companies-header {
  margin-bottom: 1.5rem;
  text-align: center;
}
.home-top__companies-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 1.5rem 0 0;
}
.home-top__companies-more .home-top__section-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
}
.home-top__companies-more .home-top__section-link::after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1;
}
.home-top__charm-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.home-top__charm-card {
  padding: 1.5rem 1.25rem;
  border: 1px solid #dbe7f1;
  border-radius: 18px;
  background: #fff;
  -webkit-box-shadow: 0 8px 24px rgba(15, 30, 55, 0.05);
          box-shadow: 0 8px 24px rgba(15, 30, 55, 0.05);
  text-align: center;
}
.home-top__charm-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.home-top__charm-card p {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.75;
}
.home-top__charm-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.25rem;
  background: transparent;
  font-size: 4.25rem;
  line-height: 1;
}
.home-top__charm-icon i {
  color: inherit;
}
.home-top__charm-card--sky .home-top__charm-icon,
.home-top__charm-card--sky h3 {
  color: #00a0e9;
}
.home-top__charm-card--green .home-top__charm-icon,
.home-top__charm-card--green h3 {
  color: #4caf50;
}
.home-top__charm-card--orange .home-top__charm-icon,
.home-top__charm-card--orange h3 {
  color: #f39800;
}
.home-top__charm-card--teal .home-top__charm-icon,
.home-top__charm-card--teal h3 {
  color: #009b9f;
}
.home-top__charm-card--leaf .home-top__charm-icon,
.home-top__charm-card--leaf h3 {
  color: #2e8b57;
}
.home-top__company-marquee {
  width: 100vw;
  max-width: 100%;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 0.25rem 0 1rem;
}
.home-top__company-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 1.25rem;
  -webkit-animation: home-top-company-marquee 48s linear infinite;
          animation: home-top-company-marquee 48s linear infinite;
  will-change: transform;
}
.home-top__company-track:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.home-top__company-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(210px, (100vw - 4.5rem) / 4.6, 250px);
          flex: 0 0 clamp(210px, (100vw - 4.5rem) / 4.6, 250px);
  width: clamp(210px, (100vw - 4.5rem) / 4.6, 250px);
  min-width: 0;
}
.home-top__company-card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #dbe7f1;
  border-radius: 18px;
  background: #fff;
  -webkit-box-shadow: 0 8px 24px rgba(15, 30, 55, 0.06);
          box-shadow: 0 8px 24px rgba(15, 30, 55, 0.06);
  color: inherit;
  text-decoration: none;
}
.home-top__company-image, .home-top__company-image img, .home-top__company-image-placeholder {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-top__company-image-placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #e8f4ff;
  color: #107bdd;
  font-size: 2rem;
}
.home-top__company-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
}
.home-top__company-body h3 {
  margin: 0;
  color: #0a3553;
  font-size: 1.1rem;
  font-weight: 500;
}
.home-top__company-category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #e8f4ff;
  color: #107bdd;
  font-size: 0.75rem;
  font-weight: 700;
}
.home-top__company-location, .home-top__company-text {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.7;
}
.home-top__company-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: auto;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #fff7e6;
  color: #9a6700;
  font-size: 0.75rem;
  font-weight: 700;
}
.home-top__news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
}
.home-top__news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.home-top__news-meta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
}
.home-top__news-meta time {
  color: #64748b;
  font-size: 0.9rem;
  white-space: nowrap;
}
.home-top__news-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #dbe7f1;
  color: inherit;
  text-decoration: none;
}
.home-top__news-item > .home-top__news-title {
  min-width: 0;
}
.home-top__news-item i {
  color: #94a3b8;
}
.home-top__news-category {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #e8f4ff;
  color: #107bdd;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.home-top__news-title {
  color: #0a3553;
  font-weight: 700;
}
.home-top__news-empty {
  margin: 0;
  padding: 1.25rem;
  border-radius: 14px;
  background: #fff;
  color: #64748b;
}
.home-top__news-promo {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 16rem;
  padding: 1.75rem;
  border-radius: 18px;
  border: 1px solid #cfe6f7;
  background-color: #f8fcff;
  background-image: var(--home-top-news-promo-image);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  text-decoration: none !important;
  color: inherit;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.home-top__news-promo:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 24px rgba(15, 30, 55, 0.12);
          box-shadow: 0 12px 24px rgba(15, 30, 55, 0.12);
}
.home-top__news-promo h3 {
  margin: 0 0 0.5rem;
  max-width: 14rem;
  color: #0a3553;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.35;
}
.home-top__news-promo p {
  margin: 0;
  max-width: 15rem;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}
.home-top__news-promo-label {
  margin: 0 0 0.75rem;
  max-width: 15rem;
  color: #107bdd;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.home-top__news-promo-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  color: #107bdd;
  font-weight: 700;
  text-decoration: none;
}
.home-top__line {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  background-color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}
.home-top__line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-image: var(--home-top-line-image);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.home-top__line-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.home-top__line-visual {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 9rem;
  height: 11rem;
  border-radius: 0;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.home-top__line-visual-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  -webkit-filter: drop-shadow(0 12px 24px rgba(15, 30, 55, 0.18));
          filter: drop-shadow(0 12px 24px rgba(15, 30, 55, 0.18));
}
.home-top__line-copy h2 {
  margin: 0 0 0.5rem;
  color: #0a3553;
  font-size: 1.6rem;
  font-weight: 500;
}
.home-top__line-copy p {
  margin: 0 0 1rem;
  color: #334155;
  line-height: 1.75;
}
.home-top__line-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-top__line-points li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  color: #0a3553;
  font-size: 0.92rem;
  font-weight: 600;
}
.home-top__line-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: #06c755;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  .home-top__hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: clamp(640px, 90vh, 820px);
  }
  .home-top__hero-shade {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.92)), color-stop(38%, rgba(255, 255, 255, 0.78)), color-stop(65%, rgba(255, 255, 255, 0.35)), color-stop(90%, rgba(255, 255, 255, 0)));
    background: linear-gradient(to top, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 38%, rgba(255, 255, 255, 0.35) 65%, rgba(255, 255, 255, 0) 90%);
  }
  .home-top__hero-inner {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    min-height: auto;
    padding-top: 1rem !important;
    padding-right: 16px !important;
    padding-bottom: 2.5rem !important;
    padding-left: 16px !important;
  }
  .home-top__hero-copy {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .home-top__charm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-top__news-grid, .home-top__line-inner {
    grid-template-columns: 1fr;
  }
  .home-top__line-inner {
    text-align: center;
  }
  .home-top__line-visual {
    justify-self: center;
  }
  .home-top__line-action {
    justify-self: center;
  }
}
@media screen and (max-width: 767px) {
  .home-top__hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: clamp(620px, 100svh, 780px);
  }
  .home-top__hero-media {
    background-position: 70% top;
  }
  .home-top__hero-shade {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.96)), color-stop(35%, rgba(255, 255, 255, 0.85)), color-stop(65%, rgba(255, 255, 255, 0.35)), color-stop(90%, rgba(255, 255, 255, 0)));
    background: linear-gradient(to top, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.85) 35%, rgba(255, 255, 255, 0.35) 65%, rgba(255, 255, 255, 0) 90%);
  }
  .home-top__hero-inner {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    min-height: auto;
    padding-top: 1rem !important;
    padding-right: 16px !important;
    padding-bottom: 2rem !important;
    padding-left: 16px !important;
  }
  .home-top__hero-copy {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 1rem;
    max-width: 100%;
  }
  .home-top__hero-title {
    margin: 0 0 0.25rem;
  }
  .home-top__hero-title img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .home-top__hero-lead {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .home-top__hero-lead br {
    display: none;
  }
  .home-top__search-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    padding: 0.55rem;
    border-radius: 22px;
  }
  .home-top__search-field {
    padding: 0.4rem 0.5rem 0.4rem 0.9rem;
  }
  .home-top__search-submit {
    width: 100%;
    padding: 0.85rem 1rem;
  }
  .home-top__area-tags {
    gap: 0.4rem;
    margin-top: 0.5rem;
  }
  .home-top__area-label {
    width: 100%;
    margin-bottom: 0.15rem;
    font-size: 0.85rem;
  }
  .home-top__area-tag {
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
  }
  .home-top__section {
    padding: 2.5rem 0;
  }
  .home-top__section-title {
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    font-size: 1.25rem;
  }
  .home-top__section-head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5rem;
  }
  .home-top__section-heading {
    font-size: 1.25rem;
  }
  .home-top__charm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .home-top__charm-card {
    padding: 1rem 0.85rem;
  }
  .home-top__charm-card h3 {
    font-size: 0.95rem;
  }
  .home-top__charm-card p {
    font-size: 0.85rem;
    line-height: 1.65;
  }
  .home-top__charm-icon {
    font-size: 3rem;
    margin-bottom: 0.85rem;
  }
  .home-top__company-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70vw;
            flex: 0 0 70vw;
    width: 70vw;
  }
  .home-top__company-image, .home-top__company-image img, .home-top__company-image-placeholder {
    height: 150px;
  }
  .home-top__news-item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0.65rem;
       -moz-column-gap: 0.65rem;
            column-gap: 0.65rem;
    row-gap: 0.45rem;
    padding: 0.9rem;
  }
  .home-top__news-item .home-top__news-meta {
    grid-column: 1;
    grid-row: 1;
  }
  .home-top__news-item > i {
    grid-column: 2;
    grid-row: 1;
  }
  .home-top__news-item > .home-top__news-title {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .home-top__news-promo {
    min-height: 13.5rem;
    padding: 1.25rem;
  }
  .home-top__news-promo h3 {
    max-width: 100%;
    font-size: 1.25rem;
  }
  .home-top__news-promo p {
    max-width: 100%;
    font-size: 0.9rem;
  }
  .home-top__line {
    padding: 2.5rem 0 3.5rem;
  }
  .home-top__line::before {
    height: 60%;
  }
  .home-top__line-visual {
    width: 7rem;
    height: 9rem;
  }
  .home-top__line-copy h2 {
    font-size: 1.3rem;
  }
  .home-top__line-button {
    padding: 0.85rem 1.25rem;
  }
}

@-webkit-keyframes home-top-company-marquee {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

@keyframes home-top-company-marquee {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-top__company-track {
    -webkit-animation: none;
            animation: none;
  }
}
.page-visual {
  position: relative;
  overflow: hidden;
  min-height: clamp(220px, 30vw, 320px);
  margin-bottom: 5rem;
}
.page-visual__media {
  position: absolute;
  inset: 0;
  background-color: #b8d9f0;
  background-image: var(--page-visual-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-visual__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: clamp(220px, 30vw, 320px);
  padding: calc(88px + 1.75rem) 0 2.5rem;
}
.page-visual__inner--meta-first {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 1px 0 rgba(10, 53, 83, 0.15);
          box-shadow: 0 1px 0 rgba(10, 53, 83, 0.15);
}
.page-visual__inner--meta-first .page-visual__title {
  margin-top: 0.35rem;
  font-weight: 600;
}
.page-visual__meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}
.page-visual__meta time {
  font-variant-numeric: tabular-nums;
}
.page-visual__title {
  margin: 0;
  color: #0a3553;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
}
.page-visual__lead {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  color: #1e3a5f;
  font-size: 1rem;
  line-height: 1.75;
}

body.has-page-visual .registration_guide_page,
body.has-page-visual .companies-index-page,
body.has-page-visual .recruiter_guide_page,
body.has-page-visual .advertisement_guide_page,
body.has-page-visual .oneday-index-page,
body.has-page-visual .features-index-page,
body.has-page-visual .feature-show-page,
body.has-page-visual .other_page,
body.has-page-visual .legal-page,
body.has-page-visual .contactPage,
body.has-page-visual .news-detail-page {
  padding-top: 0;
}
body.has-page-visual #main-header {
  background-color: rgba(255, 255, 255, 0.92);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.recruit_form h3 {
  font-size: 80px;
  text-transform: uppercase;
  font-style: italic;
  font-weight: bold;
  margin: 1rem 0 4rem;
  opacity: 0.7;
}
.recruit_form h3 span {
  font-size: 16px;
  font-weight: normal;
  display: block;
  padding-left: 16px;
  opacity: 1;
  font-style: normal;
  font-weight: 500;
}
.recruit_form h6 {
  font-size: 24px;
  font-weight: 600;
  margin: 1rem 0;
  color: #888;
}
.recruit_form .mb-3 {
  margin-bottom: 2rem !important;
}
.recruit_form .row {
  padding: 0 !important;
}
.recruit_form .row .col-4,
.recruit_form .row .col-6 {
  padding: 0 !important;
}

.login_info {
  margin: 160px 0;
  min-height: 100%;
}
.login_info h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 1rem 0 4rem;
  color: #272727;
  text-align: center;
}
.login_info .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.login_info .row .login_info_box {
  text-align: center;
  background: white;
  padding: 2rem;
}
.login_info .text-link {
  margin: 4rem 0;
  text-align: center;
}

.login {
  height: 80vh;
  position: relative;
}
.login .login_form {
  max-width: 400px;
  background: white;
  width: 100%;
  padding: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.login .login_form h5 {
  margin-bottom: 3rem;
  font-size: 24px;
  background: none;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}
.login .login_form label {
  margin-bottom: 8px;
  display: block;
}
.login .login_form .mb-3 {
  margin-bottom: 1rem !important;
}
.login .login_form .d-grid .btn {
  margin: 0 auto;
  display: block;
  padding: 8px 48px;
}

.company .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.recruit_show {
  padding: 80px 0;
}
.recruit_show h2 span {
  display: block;
  font-size: 16px;
}
.recruit_show h2 span::before {
  content: "エリア:";
  margin-right: 10px;
}
.recruit_show h4 {
  font-size: 16px;
}
.recruit_show table {
  text-align: left;
}
.recruit_show .job-description h4 {
  margin: 1rem 0;
}
.recruit_show .company-message {
  margin-bottom: 3rem;
}

.onedaypage {
  padding: 80px 0;
}

.companiespage {
  padding: 80px 0;
}

.news-section {
  margin: 4rem 0;
}
.news-section .container {
  max-width: 960px;
  margin: 0 auto;
}
.news-section .news-ticker {
  background: #f8f9fa;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  margin: 2rem 0;
}

.job-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.job-main-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.advanced-search-slide {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8f9fa;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 0 0;
  margin-bottom: 1rem;
}
.advanced-search-slide.open {
  padding: 1.5rem 0.5rem;
}

.search-section {
  background: white;
  margin: 3rem 0;
  padding: 32px 16px;
}
.search-section h6 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 3rem;
  color: #888;
  text-align: center;
}
.search-section h6 span {
  font-size: 16px;
  display: block;
}
.search-section input,
.search-section select {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 16px;
  margin: 0 0 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.search-section .advanced-search-slide.open {
  max-height: 100%;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: none !important;
}

.joblist-cards .job-card-wrap {
  position: relative;
  margin-bottom: 2rem;
}
.joblist-cards .job-card-wrap .favorite-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
}
.joblist-cards .job-card {
  background: #fff;
  border: 2px solid #f8c471;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .joblist-cards .job-card {
    padding: 16px;
  }
}
.joblist-cards .job-card p {
  margin: 0;
  color: #888;
  font-size: 12px;
}
.joblist-cards .job-card .title_box h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0.5rem 0 0.2rem 0;
  position: relative;
  letter-spacing: 0.08em;
}
.joblist-cards .job-card .title_box h3 span {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ff9800;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .joblist-cards .job-card .title_box h3 span {
    font-size: 10px;
    top: -80px;
    right: 8px;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
}
.joblist-cards .job-card .job-card-header {
  position: relative;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}
.joblist-cards .job-card .job-card-header h2 {
  font-size: 14px;
  font-weight: normal;
  margin: 0.5rem 0 0.2rem 0;
}
.joblist-cards .job-card .job-card-header .favorite-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  z-index: 2;
  cursor: pointer;
}
.joblist-cards .job-card .job-card-header .favorite-btn i {
  font-size: 1.7rem;
  color: #bbb;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.joblist-cards .job-card .job-card-header .favorite-btn:hover i {
  color: #ff5a5f;
}
.joblist-cards .job-card .job-card-header .favorite-btn .text-danger {
  color: #ff5a5f !important;
}
.joblist-cards .job-card .job-card-header .badge {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.3em 0.8em;
  border-radius: 1em;
}
.joblist-cards .job-card .job-card-header .badge-featured {
  background: #ffb300;
  color: #fff;
}
.joblist-cards .job-card .job-card-header .badge-fulltime {
  background: #4caf50;
  color: #fff;
}
.joblist-cards .job-card .job-card-header .badge-parttime {
  background: #2196f3;
  color: #fff;
}
.joblist-cards .job-card .job-card-header .company-info {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.2rem;
}
.joblist-cards .job-card .job-card-header .company-info .appeal-point {
  color: #ff9800;
  font-weight: 500;
  font-size: 0.98em;
}
.joblist-cards .job-card .job-card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .joblist-cards .job-card .job-card-body .col-8,
  .joblist-cards .job-card .job-card-body .col-4 {
    padding: 0;
  }
}
.joblist-cards .job-card .job-card-body .job-main-image {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .joblist-cards .job-card .job-card-body .job-main-image {
    height: 100%;
  }
}
.joblist-cards .job-card .job-card-body .job-info-table {
  width: 100%;
  table-layout: fixed;
  margin-bottom: 0.5rem;
}
.joblist-cards .job-card .job-card-body .job-info-table th {
  width: 30%;
  color: #666;
  font-weight: 500;
  background: #f8f8f8;
  padding: 0.3em 0.5em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .joblist-cards .job-card .job-card-body .job-info-table th {
    background: none;
    width: 100%;
    border-bottom: none !important;
  }
}
.joblist-cards .job-card .job-card-body .job-info-table td {
  color: #222;
  padding: 0.3em 0.5em;
}
@media screen and (max-width: 767px) {
  .joblist-cards .job-card .job-card-body .job-info-table td {
    border-bottom: 1px solid #f2f2f2 !important;
    font-size: 14px;
    padding: 0 0 4px;
  }
}
.joblist-cards .job-card .job-card-body .job-info-table th,
.joblist-cards .job-card .job-card-body .job-info-table td {
  padding: 8px 16px;
  border-bottom: 1px solid #f2f2f2;
}
@media screen and (max-width: 767px) {
  .joblist-cards .job-card .job-card-body .job-info-table th,
  .joblist-cards .job-card .job-card-body .job-info-table td {
    display: block;
    border-bottom: none;
  }
}
.joblist-cards .job-card .job-card-footer {
  margin-top: 1rem;
}
.joblist-cards .job-card .job-card-footer .btn {
  margin-right: 0.5rem;
}

.job-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.job-card-link:hover .job-card {
  -webkit-box-shadow: 0 4px 16px rgba(255, 179, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(255, 179, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: #ffb300;
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, border-color 0.2s;
  transition: box-shadow 0.2s, border-color 0.2s, -webkit-box-shadow 0.2s;
}

.ticker-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .ticker-wrapper {
    height: 60px;
  }
}
.ticker-wrapper .ticker-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 5px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ticker-wrapper .ticker-item p {
  margin: 0;
  font-size: 0.9em;
}
.ticker-wrapper .ticker-date {
  color: #666;
  margin-right: 10px;
}
.ticker-wrapper .ticker-category {
  background: #007bff;
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.7em;
  margin-right: 10px;
}
.ticker-wrapper .ticker-title {
  color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .ticker-item {
    padding: 0 15px;
  }
  .ticker-item p {
    font-size: 16px;
  }
  .ticker-date {
    margin-bottom: 4px;
  }
  .ticker-title {
    display: block;
  }
  .ticker-title, .ticker-category {
    font-size: 16px;
  }
}
.other_page {
  padding: 80px 0;
}
.other_page .page_title {
  font-size: 32px;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 3rem;
}
.other_page .page_title span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: #888;
  margin-top: 8px;
}
.other_page .privacy_contents {
  max-width: 960px;
  margin: 0 auto;
}
.other_page .privacy_contents h2 {
  font-size: 20px;
  margin-top: 3rem;
}
.other_page .privacy_contents ul {
  padding: 0;
}
.other_page .privacy_contents ul li {
  padding: 8px 16px;
  list-style: none;
}
.other_page .privacy_contents .text-end {
  text-align: right;
}

.search-section .card {
  border: none;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.search-section .form-label {
  font-weight: 500;
  color: #495057;
}
.search-section .btn-primary {
  min-width: 120px;
}

.card {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.advertisements .card {
  border: 2px solid #dc3545;
  -webkit-box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
          box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
}
.advertisements .card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 6px 12px rgba(220, 53, 69, 0.3);
          box-shadow: 0 6px 12px rgba(220, 53, 69, 0.3);
}
.advertisements .card-header {
  background: linear-gradient(135deg, #dc3545, #c82333);
}
.advertisements .badge {
  font-size: 0.8rem;
  padding: 0.4rem 0.6rem;
}
.advertisements .card-title {
  font-weight: bold;
}
.advertisements .btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}
.advertisements .btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

.category-jobs {
  border-top: 1px solid #e9ecef;
  padding-top: 2rem;
}
.category-jobs h2 {
  color: #495057;
  border-bottom: 2px solid #007bff;
  padding-bottom: 0.5rem;
  display: inline-block;
}
.category-jobs .card {
  border: 1px solid #e9ecef;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category-jobs .card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-color: #007bff;
}
.category-jobs .btn-outline-primary {
  border-width: 2px;
  font-weight: 500;
}
.category-jobs .btn-outline-primary:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
          box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.highlight-keyword {
  background-color: #fff3cd;
  color: #856404;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
  border: 1px solid #ffeaa7;
}

mark {
  background-color: #fff3cd;
  color: #856404;
  padding: 1px 3px;
  border-radius: 2px;
  font-weight: bold;
}

.job-category-badge {
  background-color: #007bff;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7em;
  margin-right: 8px;
  font-weight: normal;
  display: inline-block;
}

.previe_btn {
  background: #007bff;
  color: white;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
  text-align: center;
}
.previe_btn i {
  margin-right: 4px;
}

.Recruitment_info {
  padding: 120px 0;
}
.Recruitment_info h6 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}
.Recruitment_info h6 span {
  display: block;
  font-size: 50%;
  font-weight: normal;
}
.Recruitment_info .row {
  margin: 80px 0 0 !important;
}
.Recruitment_info .joblist_Box {
  background-color: white;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.Recruitment_info .joblist_Box h4 {
  font-size: 1.2rem;
  margin: 16px 0;
}
.Recruitment_info .joblist_Box h4 a {
  color: #272727;
}
.Recruitment_info .joblist_Box ol {
  padding: 0;
}
.Recruitment_info .joblist_Box ol li {
  list-style-type: none;
}
.Recruitment_info .joblist_Box ol li i {
  color: #007bff;
}

.entry_form {
  padding: 80px 0;
}
.entry_form .container {
  max-width: 960px;
  margin: 0 auto;
}
.entry_form .mb-3 {
  margin: 24px 0;
}
.entry_form h3 {
  margin-bottom: 4rem;
}
.entry_form label {
  margin: 24px 0 16px;
}
.entry_form input,
.entry_form select,
.entry_form textarea {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 16px;
  margin: 8px 0 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.entry_form .half {
  width: 45%;
  display: inline-block;
}
.entry_form .flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.entry_form .btn {
  display: block;
  width: 200px;
  margin: 2rem 0;
}

.new_user_form {
  width: 100%;
  min-height: 100vh;
  position: relative;
}
@media screen and (max-width: 767px) {
  .new_user_form {
    min-height: 100vh;
    height: 100%;
    padding: 80px 0;
  }
}
.new_user_form .new_form {
  max-width: 600px;
  background: white;
  width: 100%;
  padding: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .new_user_form .new_form {
    max-width: calc(100% - 32px);
    margin: 32px auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.new_user_form .new_form h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 1rem 0 4rem;
  text-align: center;
}

.contactPage {
  padding: 120px 0;
}
.contactPage h3, .contactPage p {
  text-align: center;
}
.contactPage .row {
  margin: 80px 0 !important;
}
@media screen and (max-width: 767px) {
  .contactPage .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .contactPage .row .col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}
.contactPage .row .col-6 {
  text-align: center;
}
.contactPage .row .col-6 .mtBox {
  border: 1px solid #ccc;
  padding: 2rem;
  border-radius: 6px;
}
.contactPage .row .col-6 .mtBox h6 {
  font-size: 1.3rem;
}
.contactPage .row .col-6 .mtBox p {
  margin: 0 !important;
  font-size: 14px;
}
.contactPage .row .col-6 .mtBox .tel {
  font-size: 2rem;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
  display: block;
}
.contactPage .row .col-6 .mtBox .btn {
  margin-top: 10px;
}
.contactPage .row .col-6 .mtBox .btn i {
  margin-right: 8px;
}
.contactPage .contact-info {
  margin-bottom: 80px;
}
.contactPage .contact-info h4 {
  text-align: center;
  margin-bottom: 3rem;
}
.contactPage .contact-info table {
  max-width: 960px;
  margin: 0 auto;
}
.contactPage .contact-info table th {
  width: 30%;
  text-align: left;
  font-weight: 500;
}
.contactPage .contact-info table td {
  text-align: left;
}
.contactPage .contact-info table th, .contactPage .contact-info table td {
  padding: 8px 0;
}
.contactPage .faq-section {
  max-width: 960px;
  margin: 0 auto;
}
.contactPage .faq-section h4 {
  text-align: center;
  margin-bottom: 3rem;
}
.contactPage .faq-section .faq-accordion {
  padding: 0 16px;
}
.contactPage .faq-section .faq-accordion .faq-item:first-of-type .faq-question {
  border-top: 1px solid #ccc;
}
.contactPage .faq-section .faq-accordion .faq-item .faq-answer {
  padding: 16px;
  border: none;
  background: none;
}
.contactPage .faq-section .faq-question {
  border: none;
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 16px;
}

.news-detail-page {
  padding: 2rem 0 4rem;
  min-height: auto;
}
@media screen and (max-width: 767px) {
  .news-detail-page {
    padding: 1.5rem 0 3rem;
  }
}
.news-detail-page__body {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  color: #1e293b;
  font-size: 1.05rem;
  line-height: 1.85;
}
.news-detail-page__body .news-detail-page__date {
  margin: 0 0 0.35rem;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.news-detail-page__body .news-detail-page__article-title {
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
  color: #0a3553;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.45;
}
.news-detail-page__body p {
  margin: 0 0 1rem;
}
.news-detail-page__actions {
  margin-top: 2rem;
  text-align: center;
  padding: 0 16px;
}
.news-detail-page__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.45rem;
  min-width: 220px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: #107bdd;
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-box-shadow: 0 6px 18px rgba(16, 123, 221, 0.28);
          box-shadow: 0 6px 18px rgba(16, 123, 221, 0.28);
  -webkit-transition: -webkit-filter 0.2s ease;
  transition: -webkit-filter 0.2s ease;
  transition: filter 0.2s ease;
  transition: filter 0.2s ease, -webkit-filter 0.2s ease;
}
.news-detail-page__btn:hover {
  -webkit-filter: brightness(1.06);
          filter: brightness(1.06);
}
.news-detail-page__btn i {
  font-size: 1.1rem;
}

.recruiter_guide_page {
  padding: 80px 0;
  background-color: #f8f9fa;
  min-height: 100vh;
}
.recruiter_guide_page .guide-header {
  padding: 3rem 2rem;
  margin-bottom: 3rem;
}
.recruiter_guide_page .guide-header h3 {
  font-size: 2rem;
}
.recruiter_guide_page .guide-header p {
  font-size: 1rem;
}
.recruiter_guide_page .guide-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.recruiter_guide_page .guide-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}
.recruiter_guide_page .guide-section {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 80px;
}
.recruiter_guide_page .guide-section .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 80px 0 !important;
}
@media screen and (max-width: 767px) {
  .recruiter_guide_page .guide-section .row .col-3,
  .recruiter_guide_page .guide-section .row .col-4,
  .recruiter_guide_page .guide-section .row .col-6 {
    margin: 16px 0;
  }
}
.recruiter_guide_page .guide-section .contact-info .row {
  margin: 80px 0 !important;
}
.recruiter_guide_page .guide-section .contact-info .row .col-6 {
  text-align: center;
}
.recruiter_guide_page .guide-section .contact-info .row .col-6 .mtBox {
  border: 1px solid #ccc;
  padding: 2rem;
  border-radius: 6px;
}
.recruiter_guide_page .guide-section .contact-info .row .col-6 .mtBox h6 {
  font-size: 1.3rem;
}
.recruiter_guide_page .guide-section .contact-info .row .col-6 .mtBox p {
  margin: 0 !important;
  font-size: 14px;
}
.recruiter_guide_page .guide-section .contact-info .row .col-6 .mtBox .tel {
  font-size: 2rem;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
  display: block;
}
.recruiter_guide_page .guide-section .contact-info .row .col-6 .mtBox .btn {
  margin-top: 10px;
}
.recruiter_guide_page .guide-section .contact-info .row .col-6 .mtBox .btn i {
  margin-right: 8px;
}
.recruiter_guide_page .section-title {
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.recruiter_guide_page .feature-card, .recruiter_guide_page .service-card, .recruiter_guide_page .support-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  position: relative;
  padding: 2rem 1rem;
}
.recruiter_guide_page .feature-card:hover, .recruiter_guide_page .service-card:hover, .recruiter_guide_page .support-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.recruiter_guide_page .feature-card h4, .recruiter_guide_page .service-card h4, .recruiter_guide_page .support-card h4 {
  font-size: 1.2rem;
  text-align: center;
}
.recruiter_guide_page .feature-card p, .recruiter_guide_page .service-card p, .recruiter_guide_page .support-card p {
  line-height: 1.75;
  font-size: 14px;
  text-align: left;
}
.recruiter_guide_page .feature-card img, .recruiter_guide_page .service-card img, .recruiter_guide_page .support-card img {
  width: 60%;
  margin: 0 auto;
}
.recruiter_guide_page .feature-number {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 40px;
  height: 40px;
  background: #3498db;
  color: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 14px;
  z-index: 1;
}
.recruiter_guide_page .feature-icon, .recruiter_guide_page .support-icon {
  color: #3498db;
}
.recruiter_guide_page .step-guide .step-item {
  position: relative;
  margin: 40px 0;
}
.recruiter_guide_page .step-guide .step-number {
  background: #3498db;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 1rem;
  line-height: 1.5;
  margin-top: -6px;
}
.recruiter_guide_page .pricing-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.recruiter_guide_page .pricing-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.recruiter_guide_page .pricing-card.border-primary {
  border-color: #3498db;
}
.recruiter_guide_page .price-amount {
  font-size: 2rem;
  font-weight: bold;
  color: #3498db;
}
.recruiter_guide_page .price-period {
  font-size: 1rem;
  color: #6c757d;
}
.recruiter_guide_page .service-features {
  list-style: none;
  padding-left: 0;
}
.recruiter_guide_page .service-features li {
  padding: 0.2rem 0;
  text-align: center;
  border-bottom: 1px solid #f8f9fa;
  font-size: 14px;
  list-style-type: none !important;
}
.recruiter_guide_page .service-features li:last-child {
  border-bottom: none;
}
.recruiter_guide_page .faq-accordion .faq-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.recruiter_guide_page .faq-accordion .faq-item:last-child {
  margin-bottom: 0;
}
.recruiter_guide_page .faq-accordion .faq-header {
  background: none;
  border: none;
  padding: 0;
}
.recruiter_guide_page .faq-accordion .faq-button {
  width: 100%;
  background: #f8f9fa;
  border: none;
  padding: 1rem 1.5rem;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #2c3e50;
  font-weight: 500;
}
.recruiter_guide_page .faq-accordion .faq-button:hover {
  background: #e9ecef;
  color: #007bff;
}
.recruiter_guide_page .faq-accordion .faq-button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.recruiter_guide_page .faq-accordion .faq-button.collapsed .faq-icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.recruiter_guide_page .faq-accordion .faq-button:not(.collapsed) {
  background: #007bff;
  color: white;
}
.recruiter_guide_page .faq-accordion .faq-button:not(.collapsed) .faq-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.recruiter_guide_page .faq-accordion .faq-question {
  font-weight: 500;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.recruiter_guide_page .faq-accordion .faq-icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-size: 1.1rem;
  margin-left: 1rem;
}
.recruiter_guide_page .faq-accordion .faq-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  background: white;
  border-top: 1px solid #e9ecef;
}
.recruiter_guide_page .faq-accordion .faq-content.active {
  max-height: 200px;
}
.recruiter_guide_page .faq-accordion .faq-body {
  padding: 1rem 1.5rem;
}
.recruiter_guide_page .faq-accordion .faq-answer {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}
.recruiter_guide_page .contact-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  padding: 2rem 1rem;
}
.recruiter_guide_page .contact-card p {
  font-size: 12px;
}
.recruiter_guide_page .contact-card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
@media (max-width: 768px) {
  .recruiter_guide_page .guide-title {
    font-size: 2rem;
  }
  .recruiter_guide_page .guide-header {
    padding: 2rem 1rem;
  }
  .recruiter_guide_page .guide-section {
    padding: 1.5rem;
  }
}

.section-content .pricing-card ul {
  list-style-type: none;
  padding: 0;
}
.section-content .pricing-card ul li {
  padding: 4px 0;
}
.section-content .pricing-card {
  padding: 2rem 0;
}

.error-page {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin: 0;
  padding: 80px 0;
  text-align: center;
}
.error-page .col-2 {
  min-height: auto;
}
.error-page .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.error-page img {
  margin: 0 auto;
}
.error-page .error-number {
  font-size: 8rem;
  font-weight: bold;
  color: #ffb300;
  margin: 0;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.error-page .error-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin: 1rem 0;
}
.error-page .error-message {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.error-page .error-icon {
  font-size: 4rem;
  color: #ffb300;
  margin: 1rem 0;
  -webkit-animation: bounce 2s infinite;
          animation: bounce 2s infinite;
}
.error-page .btn-home {
  background: linear-gradient(135deg, #ffb300, #ff9800);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
}
.error-page .btn-home:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
          box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
  color: white;
  text-decoration: none;
}
.error-page .btn-secondary {
  background: #6c757d;
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.error-page .btn-secondary:hover {
  background: #5a6268;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  color: white;
  text-decoration: none;
}
.error-page .suggestions {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}
.error-page .suggestions h5 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.error-page .suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.error-page .suggestions li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}
.error-page .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffb300;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .error-page .error-container {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  .error-page .error-number {
    font-size: 6rem;
  }
  .error-page .error-title {
    font-size: 1.5rem;
  }
  .error-page .error-message {
    font-size: 1rem;
  }
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.breadcrumb {
  margin: 2rem 0;
}
.breadcrumb ol {
  display: inline-block;
  padding: 0;
}
.breadcrumb ol li {
  display: inline-block;
}

.category-title {
  font-size: 1.5rem !important;
}

.joblist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.joblist-grid__item {
  list-style: none;
  margin: 0;
  min-width: 0;
}
.joblist-grid__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
          box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.joblist-grid__card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: rgba(16, 123, 221, 0.35);
  -webkit-box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
          box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}
.joblist-grid__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  text-decoration: none;
  color: transparent;
  background: transparent;
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
  font-size: 0;
  line-height: 0;
}
.joblist-grid__overlay-link:focus-visible {
  outline: 2px solid #107bdd;
  outline-offset: -2px;
}
.joblist-grid__media {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: #f1f5f9;
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}
.joblist-grid__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.joblist-grid__image--placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
  color: #94a3b8;
  font-size: 2.4rem;
}
.joblist-grid__card:hover .joblist-grid__image {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.joblist-grid__category {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  -webkit-box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
          box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(4px);
}
.joblist-grid__body {
  position: relative;
  z-index: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.35rem;
  padding: 0.95rem 1rem 1rem;
  min-width: 0;
  pointer-events: none;
}
.joblist-grid__title {
  margin: 0 0 0.15rem;
  color: #0f172a;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.joblist-grid__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0.05rem 0 0.1rem;
}
.joblist-grid__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.15rem 0.55rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}
.joblist-grid__badge--blue {
  color: #107bdd;
  background: rgba(16, 123, 221, 0.08);
}
.joblist-grid__badge--green {
  color: #15803d;
  background: rgba(34, 197, 94, 0.1);
}
.joblist-grid__badge--orange {
  color: #c2410c;
  background: rgba(249, 115, 22, 0.1);
}
.joblist-grid__company, .joblist-grid__area, .joblist-grid__salary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.55;
}
.joblist-grid__company i, .joblist-grid__area i, .joblist-grid__salary i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1rem;
          flex: 0 0 1rem;
  color: #94a3b8;
  font-size: 0.95rem;
}
.joblist-grid__salary {
  color: #0f172a;
}
.joblist-grid__salary i {
  color: #107bdd;
}
.joblist-grid__salary .joblist-grid__salary-label {
  color: #64748b;
  font-size: 0.78rem;
}
.joblist-grid__salary strong {
  color: #107bdd;
  font-size: 1rem;
  font-weight: 600;
}
.joblist-grid__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.2rem;
}
.joblist-grid__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.16rem 0.55rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  font-size: 0.7rem;
  line-height: 1.35;
}
.joblist-grid__favorite {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  pointer-events: auto;
}
.joblist-grid__favorite-btn, .joblist-grid__favorite .favorite-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
          box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(4px);
  line-height: 1;
  color: inherit;
}
.joblist-grid__favorite-btn i, .joblist-grid__favorite .favorite-btn i {
  display: block;
  font-size: 1.2rem;
  color: #94a3b8;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.joblist-grid__favorite-btn:hover i, .joblist-grid__favorite .favorite-btn:hover i {
  color: #ef4444;
}
.joblist-grid__favorite-btn .las.la-heart, .joblist-grid__favorite .favorite-btn .las.la-heart {
  color: #ef4444;
}
.joblist-grid__favorite .favorite-btn-form {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1199px) {
  .joblist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .joblist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
  .joblist-grid__body {
    gap: 0.25rem;
    padding: 0.65rem 0.7rem 0.7rem;
  }
  .joblist-grid__title {
    font-size: 0.88rem;
    line-height: 1.4;
  }
  .joblist-grid__company, .joblist-grid__area, .joblist-grid__salary {
    font-size: 0.74rem;
    gap: 0.3rem;
  }
  .joblist-grid__company i, .joblist-grid__area i, .joblist-grid__salary i {
    font-size: 0.82rem;
  }
  .joblist-grid__salary strong {
    font-size: 0.88rem;
  }
  .joblist-grid__salary .joblist-grid__salary-label {
    font-size: 0.7rem;
  }
  .joblist-grid__badge {
    font-size: 0.62rem;
    padding: 0.1rem 0.45rem;
  }
  .joblist-grid__category {
    font-size: 0.65rem;
    padding: 0.2rem 0.55rem;
  }
  .joblist-grid__tag {
    font-size: 0.62rem;
    padding: 0.12rem 0.45rem;
  }
  .joblist-grid__favorite-btn, .joblist-grid__favorite .favorite-btn {
    width: 1.85rem;
    height: 1.85rem;
  }
  .joblist-grid__favorite-btn i, .joblist-grid__favorite .favorite-btn i {
    font-size: 1rem;
  }
}

.joblist-grid-section {
  margin: 1rem 0 2rem;
}

nav.site-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.45rem;
  margin: 2.5rem 0 1rem;
  padding: 0;
}
nav.site-pagination span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
nav.site-pagination a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.65rem;
  border: 1px solid #dbe2ea;
  border-radius: 999px;
  background: #fff;
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
nav.site-pagination a:hover {
  border-color: #59cd9d;
  background: #eefbf5;
  color: #0f766e;
  text-decoration: none;
}
nav.site-pagination a:focus-visible {
  outline: 2px solid rgba(89, 205, 157, 0.35);
  outline-offset: 2px;
}
nav.site-pagination .first,
nav.site-pagination .last {
  display: none;
}
nav.site-pagination .page.current {
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.65rem;
  border: 1px solid #59cd9d;
  border-radius: 999px;
  background: #59cd9d;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}
nav.site-pagination .page.gap {
  min-width: auto;
  height: auto;
  padding: 0 0.15rem;
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
nav.site-pagination .prev a,
nav.site-pagination .next a {
  min-width: 2.75rem;
  padding: 0 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  gap: 0.25rem;
}
nav.site-pagination .prev i,
nav.site-pagination .next i {
  font-size: 1.05rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  nav.site-pagination {
    gap: 0.35rem;
    margin-top: 2rem;
  }
  nav.site-pagination a,
  nav.site-pagination .page.current {
    min-width: 2.35rem;
    height: 2.35rem;
    padding: 0 0.55rem;
    font-size: 0.82rem;
  }
  nav.site-pagination .prev a,
  nav.site-pagination .next a {
    min-width: 2.35rem;
    padding: 0 0.65rem;
  }
  nav.site-pagination .site-pagination__label {
    display: none;
  }
}

.site-pagination-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
}

.login-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.login-card {
  background: white;
  border-radius: 20px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 450px;
  text-align: center;
}

.logo-section {
  margin-bottom: 40px;
}
.logo-section h2 {
  margin: 0 0 20px 0;
}
.logo-section h2 img {
  max-width: 200px;
  height: auto;
  margin: 2rem auto;
}
.logo-section h4 {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.login-form {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.form-input:focus {
  outline: none;
  border-color: #4285f4;
  -webkit-box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
          box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.login-btn {
  width: 100%;
  background: #4285f4;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.login-btn:hover {
  background: #3367d6;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
          box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.login-links {
  margin-top: 20px;
  font-size: 14px;
}
.login-links a {
  color: #4285f4;
  text-decoration: none;
  margin: 0 10px;
}
.login-links a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .login-card {
    padding: 30px 20px;
    margin: 10px;
  }
  .logo-section h2 img {
    max-width: 150px;
  }
  .logo-section h4 {
    font-size: 20px;
  }
}
fieldset[disabled] {
  border: none;
  padding: 2rem;
  margin: 2rem 0;
  background: white;
}
fieldset[disabled] .form-control,
fieldset[disabled] .form-select,
fieldset[disabled] .input-group-text {
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
fieldset[disabled] .edit_table {
  border: none;
  table-layout: fixed;
  width: 100%;
}
fieldset[disabled] .edit_table tr {
  border-bottom: 1px solid #f2f2f2;
}
fieldset[disabled] .edit_table th, fieldset[disabled] .edit_table td {
  border: none;
  padding: 0.5rem 0;
  display: table-cell;
  padding: 2rem 0;
}
fieldset[disabled] .edit_table th {
  background: transparent;
  font-weight: 600;
  color: #495057;
  width: 30%;
  vertical-align: top;
  padding-right: 1rem;
}
fieldset[disabled] .edit_table td {
  color: #6c757d;
  width: 70%;
}
fieldset[disabled] .edit_section {
  border: none;
  padding: 0;
  margin: 0;
}
fieldset[disabled] .edit_section h6 {
  color: #495057;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e9ecef;
}

.company_profile_edit .progress-container .progress {
  height: 8px;
  border-radius: 4px;
  background-color: #e9ecef;
  margin-bottom: 1rem;
}
.company_profile_edit .progress-container .progress .progress-bar {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 4px;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.company_profile_edit .progress-container .progress-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.company_profile_edit .progress-container .progress-steps .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.company_profile_edit .progress-container .progress-steps .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 60%;
  width: 80%;
  height: 2px;
  background-color: #e9ecef;
  z-index: 1;
}
.company_profile_edit .progress-container .progress-steps .step.completed:not(:last-child)::after {
  background-color: #007bff;
}
.company_profile_edit .progress-container .progress-steps .step .step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #6c757d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.company_profile_edit .progress-container .progress-steps .step .step-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6c757d;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.company_profile_edit .progress-container .progress-steps .step.active .step-number {
  background-color: #007bff;
  color: white;
  -webkit-box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
          box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
}
.company_profile_edit .progress-container .progress-steps .step.active .step-label {
  color: #007bff;
  font-weight: 600;
}
.company_profile_edit .progress-container .progress-steps .step.completed .step-number {
  background-color: #28a745;
  color: white;
}
.company_profile_edit .progress-container .progress-steps .step.completed .step-label {
  color: #28a745;
  font-weight: 600;
}
.company_profile_edit .profile-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}
.company_profile_edit .card {
  border: none;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 0.5rem;
}
.company_profile_edit .card .card-header {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  border-radius: 0.5rem 0.5rem 0 0;
  border: none;
  padding: 1rem 1.5rem;
}
.company_profile_edit .card .card-header .card-title {
  font-weight: 600;
  font-size: 1.1rem;
}
.company_profile_edit .card .card-header .card-title i {
  font-size: 1.2rem;
}
.company_profile_edit .card .card-body {
  padding: 1.5rem;
}
.company_profile_edit .form-group {
  margin-bottom: 1.5rem;
}
.company_profile_edit .form-group .form-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
}
.company_profile_edit .form-group .form-label .text-danger {
  color: #dc3545 !important;
  font-weight: bold;
}
.company_profile_edit .form-group .form-control, .company_profile_edit .form-group .form-select {
  border: 2px solid #e9ecef;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.company_profile_edit .form-group .form-control:focus, .company_profile_edit .form-group .form-select:focus {
  border-color: #007bff;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: none;
}
.company_profile_edit .form-group .form-control[readonly], .company_profile_edit .form-group [readonly].form-select {
  background-color: #f8f9fa;
  border-color: #dee2e6;
}
.company_profile_edit .form-group .form-select {
  border: 2px solid #e9ecef;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.company_profile_edit .form-group .form-select:focus {
  border-color: #007bff;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: none;
}
.company_profile_edit .form-group .form-text {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.5rem;
}
.company_profile_edit .form-group .form-text i {
  color: #007bff;
}
.company_profile_edit .input-group .input-group-text {
  background-color: #f8f9fa;
  border: 2px solid #e9ecef;
  border-right: none;
  color: #6c757d;
  font-weight: 500;
}
.company_profile_edit .input-group .form-control, .company_profile_edit .input-group .form-select {
  border-left: none;
}
.company_profile_edit .input-group .form-control:focus, .company_profile_edit .input-group .form-select:focus {
  border-color: #007bff;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.company_profile_edit .input-group .btn {
  border: 2px solid #6c757d;
  color: #6c757d;
}
.company_profile_edit .input-group .btn:hover {
  background-color: #6c757d;
  color: white;
  border-color: #6c757d;
}
.company_profile_edit .image_upload_section .current_image {
  border: 2px dashed #dee2e6;
  border-radius: 0.5rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  text-align: center;
}
.company_profile_edit .image_upload_section .current_image .img-thumbnail {
  border: 2px solid #dee2e6;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.company_profile_edit .image_upload_section .no_image_placeholder {
  width: 200px;
  height: 200px;
  border: 2px dashed #dee2e6;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f8f9fa;
  color: #6c757d;
  margin: 0 auto;
}
.company_profile_edit .image_upload_section .no_image_placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}
.company_profile_edit .image_upload_section .no_image_placeholder p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
}
.company_profile_edit .image_upload_section .image_preview {
  border: 2px dashed #28a745;
  border-radius: 0.5rem;
  padding: 1.5rem;
  background-color: #f8fff8;
  text-align: center;
}
.company_profile_edit .image_upload_section .image_preview .img-thumbnail {
  border: 2px solid #28a745;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0.125rem 0.25rem rgba(40, 167, 69, 0.25);
}
.company_profile_edit .btn {
  font-weight: 500;
  border-radius: 0.375rem;
  padding: 0.75rem 1.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.company_profile_edit .btn.btn-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border: none;
}
.company_profile_edit .btn.btn-primary:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 0.25rem 0.5rem rgba(0, 123, 255, 0.3);
          box-shadow: 0 0.25rem 0.5rem rgba(0, 123, 255, 0.3);
}
.company_profile_edit .btn.btn-outline-secondary {
  border: 2px solid #6c757d;
  color: #6c757d;
}
.company_profile_edit .btn.btn-outline-secondary:hover {
  background-color: #6c757d;
  color: white;
  border-color: #6c757d;
}
.company_profile_edit .btn.btn-outline-primary {
  border: 2px solid #007bff;
  color: #007bff;
}
.company_profile_edit .btn.btn-outline-primary:hover {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}
.company_profile_edit .btn.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.company_profile_edit .help-item h6 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.company_profile_edit .help-item p {
  font-size: 0.8rem;
  line-height: 1.4;
}
.company_profile_edit .readonly-form fieldset[disabled] {
  opacity: 1;
  pointer-events: none;
}
.company_profile_edit .readonly-form fieldset[disabled] .form-control,
.company_profile_edit .readonly-form fieldset[disabled] .form-select,
.company_profile_edit .readonly-form fieldset[disabled] .btn {
  background-color: transparent;
  border: none;
  color: #495057;
  cursor: not-allowed;
  padding: 0.25rem 0;
}
.company_profile_edit .readonly-form fieldset[disabled] .form-control:focus,
.company_profile_edit .readonly-form fieldset[disabled] .form-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  outline: none;
}
.company_profile_edit .readonly-form fieldset[disabled] .input-group .input-group-text {
  background: transparent;
  border: none;
  color: #6c757d;
  padding: 0.25rem 0;
}
.company_profile_edit .readonly-form .alert-warning {
  background-color: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}
.company_profile_edit .readonly-form .alert-warning i {
  color: #f0ad4e;
}
.company_profile_edit .image_upload_section {
  max-width: 100%;
}
.company_profile_edit .current_image {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 1rem;
  background-color: #f8f9fa;
}
.company_profile_edit .image_upload {
  margin-bottom: 1rem;
}
.company_profile_edit .image_preview {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 1rem;
  background-color: #f8f9fa;
}
.company_profile_edit .form-text {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.25rem;
}
.company_profile_edit .img-thumbnail {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.company_profile_edit .no_image_placeholder {
  width: 200px;
  height: 200px;
  border: 2px dashed #dee2e6;
  border-radius: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f8f9fa;
  color: #6c757d;
}
.company_profile_edit .no_image_placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.company_profile_edit .no_image_placeholder p {
  margin: 0;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .company_profile_edit .profile-header {
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
  }
  .company_profile_edit .profile-header .d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .company_profile_edit .profile-header .d-flex .btn {
    margin-top: 1rem;
  }
  .company_profile_edit .card-body {
    padding: 1rem;
  }
  .company_profile_edit .form-group {
    margin-bottom: 1rem;
  }
  .company_profile_edit .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .company_profile_edit .container-fluid {
    padding: 0.5rem;
  }
  .company_profile_edit .profile-header {
    padding: 1rem 0;
    margin-bottom: 1rem;
  }
  .company_profile_edit .card {
    margin-bottom: 1rem;
  }
  .company_profile_edit .d-flex.justify-content-between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .company_profile_edit .d-flex.justify-content-between .btn {
    width: 100%;
  }
}

.joblist-form-page {
  padding: calc(var(--company-app-header-height, 68px) + 1.25rem) 0 4rem;
}
.joblist-form-page .container {
  max-width: 1180px;
}

.joblist-form-page__header {
  margin-bottom: 1.5rem;
}

.joblist-form-page__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f3d66;
  text-decoration: none;
}
.joblist-form-page__back:hover {
  color: #075985;
  text-decoration: underline;
}

.joblist-form-page__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  color: #0f172a;
}

.joblist-form-page__lead {
  margin: 0;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.joblist-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 1.25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.joblist-form-layout__main {
  min-width: 0;
}

.joblist-form-nav {
  position: sticky;
  top: calc(var(--company-app-header-height, 68px) + 1rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.35rem;
  margin: 0;
  padding: 0.9rem;
  background: #fff;
  border: 1px solid #d0d7e2;
  border-radius: 12px;
  -webkit-box-shadow: 0 1px 3px rgba(15, 30, 55, 0.06);
          box-shadow: 0 1px 3px rgba(15, 30, 55, 0.06);
}
.joblist-form-nav__title {
  margin: 0 0 0.35rem;
  padding: 0 0.35rem;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.joblist-form-nav__link {
  display: block;
  padding: 0.55rem 0.7rem;
  border-left: 3px solid transparent;
  border-radius: 8px;
  color: #475569;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.joblist-form-nav__link:hover {
  background: #f8fafc;
  color: #0f3d66;
}
.joblist-form-nav__link.is-active {
  border-left-color: #4bb4ff;
  background: #e8f4ff;
  color: #0f3d66;
}
.joblist-form-nav__actions {
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e2e8f0;
}
.joblist-form-nav__actions-label {
  margin: 0 0 0.25rem;
  color: #0f172a;
  font-size: 0.8125rem;
  font-weight: 600;
}
.joblist-form-nav__actions-text {
  margin: 0 0 0.65rem;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.55;
}
.joblist-form-nav__draft-btn, .joblist-form-nav__draft-btn.btn, .joblist-form-nav__draft-btn.btn-outline-secondary {
  width: 100%;
  min-height: 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  background: #f1f5f9;
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.joblist-form-nav__draft-btn:hover, .joblist-form-nav__draft-btn:focus, .joblist-form-nav__draft-btn.btn:hover, .joblist-form-nav__draft-btn.btn:focus, .joblist-form-nav__draft-btn.btn-outline-secondary:hover, .joblist-form-nav__draft-btn.btn-outline-secondary:focus {
  background: #e2e8f0;
  background-color: #e2e8f0;
  border-color: #94a3b8;
  color: #0f172a;
  -webkit-box-shadow: 0 2px 6px rgba(15, 30, 55, 0.08);
          box-shadow: 0 2px 6px rgba(15, 30, 55, 0.08);
}

.company-app .joblist-form-nav {
  top: calc(var(--company-app-header-height, 68px) + 1rem);
}

.joblist-form-section {
  background: #fff;
  border: 1px solid #d0d7e2;
  border-radius: 12px;
  padding: 1.25rem 1.35rem 1.35rem;
  margin: 0 0 1.25rem;
  -webkit-box-shadow: 0 1px 3px rgba(15, 30, 55, 0.06);
          box-shadow: 0 1px 3px rgba(15, 30, 55, 0.06);
  scroll-margin-top: calc(var(--company-app-header-height, 68px) + 1rem);
}

.joblist-company-form .alert {
  border-radius: 12px;
}

.joblist-form-section__head {
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #e2e8f0;
}

.joblist-form-section__title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.joblist-form-section__lead {
  margin: 0;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.65;
}

.joblist-form-table {
  width: 100%;
  border-collapse: collapse;
}
.joblist-form-table th,
.joblist-form-table td {
  padding: 0.85rem 0;
  vertical-align: top;
  border-bottom: 1px solid #eef2f7;
}
.joblist-form-table tr:last-child th,
.joblist-form-table tr:last-child td {
  border-bottom: none;
}
.joblist-form-table th {
  width: 30%;
  padding-right: 1rem;
  text-align: left;
  color: #334155;
  font-weight: 700;
  font-size: 0.9375rem;
}
.joblist-form-table td {
  width: 70%;
  color: #0f172a;
}
.joblist-form-table .section-header {
  border-bottom: none;
  padding-top: 0.25rem;
}
.joblist-form-table .section-header h6 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #107bdd;
}
.joblist-form-table .form-text {
  margin-top: 0.35rem;
  color: #64748b;
  font-size: 0.8125rem;
  line-height: 1.55;
}
.joblist-form-table .form-control,
.joblist-form-table .form-select {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.joblist-form-table .form-control:focus,
.joblist-form-table .form-select:focus {
  border-color: #4bb4ff;
  -webkit-box-shadow: 0 0 0 3px rgba(75, 180, 255, 0.18);
          box-shadow: 0 0 0 3px rgba(75, 180, 255, 0.18);
  outline: none;
}
.joblist-form-table textarea.form-control, .joblist-form-table textarea.form-select {
  min-height: 7rem;
  line-height: 1.65;
}
.joblist-form-table .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  margin: 0.35rem 0;
}
.joblist-form-table .form-check-input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
}
.joblist-form-table .form-check-label {
  font-weight: 500;
  cursor: pointer;
}
.joblist-form-table .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.joblist-form-table .input-group .form-control, .joblist-form-table .input-group .form-select {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 12rem;
          flex: 1 1 12rem;
}
.joblist-form-table .input-group .btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  background: #0f3d66;
  color: #fff;
  border: none;
  white-space: nowrap;
}
.joblist-form-table .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem 1rem;
}
.joblist-form-table .row .col-6 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 0.5rem);
          flex: 1 1 calc(50% - 0.5rem);
  min-width: 12rem;
}
@media screen and (max-width: 767px) {
  .joblist-form-table th,
  .joblist-form-table td {
    display: block;
    width: 100%;
    padding-right: 0;
  }
  .joblist-form-table th {
    padding-bottom: 0.35rem;
  }
  .joblist-form-table td {
    padding-top: 0;
    padding-bottom: 1rem;
  }
}

.joblist-form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .joblist-form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.joblist-form-grid-2__item {
  min-width: 0;
}

.joblist-form-actions {
  margin: 1.5rem 0 0;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #d0d7e2;
  border-radius: 12px;
  -webkit-box-shadow: 0 1px 3px rgba(15, 30, 55, 0.06);
          box-shadow: 0 1px 3px rgba(15, 30, 55, 0.06);
}

.joblist-form-actions__note {
  margin: 0 0 1rem;
  color: #475569;
  font-size: 0.875rem;
  text-align: center;
}

.joblist-form-actions__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .joblist-form-actions__buttons {
    grid-template-columns: 1fr;
  }
}

.joblist-form-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.65rem;
  padding: 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
}
.joblist-form-action[hidden] {
  display: none !important;
}

.joblist-form-action__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.joblist-form-action__text {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #64748b;
  font-size: 0.8125rem;
  line-height: 1.55;
}

.joblist-form-action .btn {
  width: 100%;
  min-height: 2.75rem;
  border-radius: 8px;
  font-weight: 700;
}

#joblist_fixed_holidays {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
}

#joblist_fixed_holidays.is-hidden {
  display: none;
}

.joblist-image-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.joblist-image-upload__existing-label {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #475569;
}

.joblist-image-upload__existing-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}

.joblist-image-upload__existing-thumb {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  border: 1px solid #dbe3ee;
}

.joblist-image-upload__dropzone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.35rem;
  min-height: 180px;
  padding: 1.25rem;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  text-align: center;
  cursor: pointer;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.joblist-image-upload__dropzone:hover, .joblist-image-upload__dropzone:focus-visible, .joblist-image-upload__dropzone.is-dragover {
  border-color: #4bb4ff;
  background: #eef7ff;
  -webkit-box-shadow: 0 0 0 3px rgba(75, 180, 255, 0.18);
          box-shadow: 0 0 0 3px rgba(75, 180, 255, 0.18);
  outline: none;
}

.joblist-image-upload__icon {
  font-size: 1.75rem;
  color: #107bdd;
}

.joblist-image-upload__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.joblist-image-upload__text {
  margin: 0 0 0.35rem;
  color: #64748b;
  font-size: 0.8125rem;
}

.joblist-image-upload__preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.65rem;
}

.joblist-image-upload__preview[hidden] {
  display: none !important;
}

.joblist-image-upload__preview-image {
  width: 100%;
  max-width: 280px;
  max-height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  border: 1px solid #dbe3ee;
}

.joblist-image-upload__preview-name {
  margin: 0;
  color: #475569;
  font-size: 0.8125rem;
}

@media screen and (max-width: 991px) {
  .joblist-form-layout {
    grid-template-columns: 1fr;
  }
  .joblist-form-layout__aside {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5rem;
  }
  .joblist-form-nav__title {
    width: 100%;
  }
  .joblist-form-nav__link {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 0.25rem);
            flex: 1 1 calc(50% - 0.25rem);
    border-left: none;
    border-bottom: 2px solid transparent;
    text-align: center;
  }
  .joblist-form-nav__link.is-active {
    border-left: none;
    border-bottom-color: #4bb4ff;
  }
}
.company_messages_page__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.company_messages_page__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
}
.company_messages_page__lead {
  margin: 0.5rem 0 0;
  color: #64748b;
  font-size: 0.9375rem;
}
.company_messages_page__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  color: #0f3d66;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.company_messages_page__back:hover {
  color: #107bdd;
}

.company_messages_list {
  display: grid;
  gap: 0.75rem;
}
.company_messages_list__item {
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: #fff;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.company_messages_list__item.is-unread {
  border-color: #93c5fd;
  -webkit-box-shadow: 0 8px 24px rgba(15, 61, 102, 0.08);
          box-shadow: 0 8px 24px rgba(15, 61, 102, 0.08);
}
.company_messages_list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  color: inherit;
  text-decoration: none;
}
.company_messages_list__avatar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #e8f4ff;
  color: #0f3d66;
  font-size: 1.35rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.company_messages_list__body {
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.company_messages_list__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  color: #64748b;
  font-size: 0.8125rem;
}
.company_messages_list__name {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
}
.company_messages_list__job {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.35rem;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 600;
}
.company_messages_list__preview {
  margin: 0;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
}
.company_messages_list__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 0.75rem;
  font-weight: 700;
}

.company_messages_empty {
  padding: 2rem 1.25rem;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  color: #64748b;
}
.company_messages_empty__icon {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 2rem;
  color: #94a3b8;
}
.company_messages_empty .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
}

.company_messages_thread {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  background: #fff;
}

.company_messages_bubble {
  max-width: min(100%, 720px);
  padding: 0.9rem 1rem;
  border-radius: 14px;
}
.company_messages_bubble--applicant {
  margin-right: auto;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.company_messages_bubble--company {
  margin-left: auto;
  background: #e8f4ff;
  border: 1px solid #bfdbfe;
}
.company_messages_bubble__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
}
.company_messages_bubble__label {
  margin: 0 0 0.35rem;
  color: #0f3d66;
  font-size: 0.75rem;
  font-weight: 700;
}
.company_messages_bubble__body {
  color: #0f172a;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.company_messages_bubble__body p:last-child {
  margin-bottom: 0;
}

.company_messages_form {
  padding: 1.25rem;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  background: #fff;
}
.company_messages_form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 1rem;
}
.company_messages_form__actions .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
}

.company_dashboard_home__alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid #fde68a;
  border-radius: 14px;
  background: #fffbeb;
}
.company_dashboard_home__alert h2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #92400e;
}
.company_dashboard_home__alert p {
  margin: 0;
  color: #b45309;
  font-size: 0.875rem;
}
.company_dashboard_home__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.company_dashboard_home__eyebrow {
  margin: 0 0 0.35rem;
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.company_dashboard_home__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}
.company_dashboard_home__lead {
  margin: 0.5rem 0 0;
  color: #64748b;
  font-size: 0.9375rem;
}
.company_dashboard_home__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}
.company_dashboard_home__actions .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
}
.company_dashboard_home__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 1.25rem;
  margin-left: 0.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
}
.company_dashboard_home__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.company_dashboard_home__stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: #fff;
}
.company_dashboard_home__stat-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  font-size: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.company_dashboard_home__stat-icon--approved {
  background: #dcfce7;
  color: #15803d;
}
.company_dashboard_home__stat-icon--applications {
  background: #e8f4ff;
  color: #0f3d66;
}
.company_dashboard_home__stat-icon--messages {
  background: #fee2e2;
  color: #b91c1c;
}
.company_dashboard_home__stat-icon--pending {
  background: #fef3c7;
  color: #b45309;
}
.company_dashboard_home__stat-body {
  min-width: 0;
}
.company_dashboard_home__stat-label {
  display: block;
  margin-bottom: 0.35rem;
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 600;
}
.company_dashboard_home__stat-value {
  color: #0f172a;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}
.company_dashboard_home__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.company_dashboard_home__panel {
  padding: 1.25rem;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  background: #fff;
}
.company_dashboard_home__panel-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.company_dashboard_home__panel-header h2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}
.company_dashboard_home__panel-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  color: #0f3d66;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.company_dashboard_home__panel-link:hover {
  color: #107bdd;
}
.company_dashboard_home__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.company_dashboard_home__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid #eef2f7;
}
.company_dashboard_home__list-item:first-child {
  border-top: none;
  padding-top: 0;
}
.company_dashboard_home__list-item time {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  color: #94a3b8;
  font-size: 0.75rem;
}
.company_dashboard_home__list-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #e8f4ff;
  color: #0f3d66;
  font-size: 1.1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.company_dashboard_home__list-content {
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.company_dashboard_home__list-title {
  display: inline-block;
  margin: 0 0 0.25rem;
  color: #0f3d66;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
}
.company_dashboard_home__list-title:hover {
  color: #107bdd;
}
.company_dashboard_home__list-meta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.25rem;
  color: #64748b;
  font-size: 0.8125rem;
}
.company_dashboard_home__list-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.5rem;
}
.company_dashboard_home__list-actions .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
}
.company_dashboard_home__status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 0.75rem;
  font-weight: 700;
}
.company_dashboard_home__status--draft {
  background: #e2e8f0;
  color: #475569;
}
.company_dashboard_home__status--pending {
  background: #fef3c7;
  color: #b45309;
}
.company_dashboard_home__status--approved {
  background: #dcfce7;
  color: #15803d;
}
.company_dashboard_home__empty {
  margin: 0;
  color: #64748b;
  font-size: 0.875rem;
}
@media screen and (max-width: 991px) {
  .company_dashboard_home__header, .company_dashboard_home__alert {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .company_dashboard_home__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .company_dashboard_home__grid {
    grid-template-columns: 1fr;
  }
  .company_dashboard_home__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .company_dashboard_home__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .company_dashboard_home__stat {
    padding: 0.8rem 0.85rem;
    gap: 0.55rem;
  }
  .company_dashboard_home__stat-icon {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.05rem;
  }
  .company_dashboard_home__stat-label {
    font-size: 0.78rem;
  }
  .company_dashboard_home__stat-value {
    font-size: 1.3rem;
  }
}

.company-app .company_messages_page,
.company-app .company_dashboard_home {
  max-width: 1120px;
  margin: 0 auto;
}

.company_manage_page__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.company_manage_page__eyebrow {
  margin: 0 0 0.35rem;
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.company_manage_page__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}
.company_manage_page__lead {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0.5rem 0 0;
  color: #64748b;
  font-size: 0.9375rem;
}
.company_manage_page__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}
.company_manage_page__actions .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
}

.company_manage_stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.company_manage_stats__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: #fff;
}
.company_manage_stats__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  font-size: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.company_manage_stats__icon--draft {
  background: #e2e8f0;
  color: #475569;
}
.company_manage_stats__icon--pending {
  background: #fef3c7;
  color: #b45309;
}
.company_manage_stats__icon--approved {
  background: #dcfce7;
  color: #15803d;
}
.company_manage_stats__icon--advertisement {
  background: #fee2e2;
  color: #b91c1c;
}
.company_manage_stats__icon--applications {
  background: #e8f4ff;
  color: #0f3d66;
}
.company_manage_stats__icon--accepted {
  background: #dcfce7;
  color: #15803d;
}
.company_manage_stats__icon--messages {
  background: #fee2e2;
  color: #b91c1c;
}
.company_manage_stats__body {
  min-width: 0;
}
.company_manage_stats__label {
  display: block;
  margin-bottom: 0.35rem;
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 600;
}
.company_manage_stats__value {
  color: #0f172a;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.company_manage_tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.company_manage_tabs__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.company_manage_tabs__button.is-active {
  border-color: #93c5fd;
  background: #e8f4ff;
  color: #0f3d66;
}
.company_manage_tabs__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #fef3c7;
  color: #b45309;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.company_manage_panel {
  padding: 1.25rem;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  background: #fff;
}
.company_manage_panel__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.company_manage_panel__header h2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}
.company_manage_panel__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.company_manage_panel__actions .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
}

.company_manage_table {
  width: 100%;
  border-collapse: collapse;
}
.company_manage_table th,
.company_manage_table td {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid #eef2f7;
  text-align: left;
  vertical-align: top;
}
.company_manage_table th {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.company_manage_table tbody tr:last-child td {
  border-bottom: none;
}
.company_manage_table__title {
  color: #0f3d66;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
}
.company_manage_table__title:hover {
  color: #107bdd;
}
.company_manage_table__meta {
  margin-top: 0.25rem;
  color: #64748b;
  font-size: 0.8125rem;
}
.company_manage_table__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.company_manage_table__actions .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
}

.company_manage_status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.company_manage_status--draft {
  background: #e2e8f0;
  color: #475569;
}
.company_manage_status--pending {
  background: #fef3c7;
  color: #b45309;
}
.company_manage_status--approved {
  background: #dcfce7;
  color: #15803d;
}
.company_manage_status--rejected {
  background: #fee2e2;
  color: #b91c1c;
}
.company_manage_status--advertisement {
  background: #fee2e2;
  color: #b91c1c;
}

.company_manage_empty {
  margin: 0;
  padding: 2rem 1rem;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  color: #64748b;
  text-align: center;
}
.company_manage_empty__icon {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 2rem;
  color: #94a3b8;
}

.company_applications_list {
  display: grid;
  gap: 0.75rem;
}

.company_applications_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: #fff;
}
.company_applications_card.is-unread {
  border-color: #93c5fd;
  -webkit-box-shadow: 0 8px 24px rgba(15, 61, 102, 0.08);
          box-shadow: 0 8px 24px rgba(15, 61, 102, 0.08);
}
.company_applications_card__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.company_applications_card__avatar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #e8f4ff;
  color: #0f3d66;
  font-size: 1.35rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.company_applications_card__content {
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.company_applications_card__name {
  margin: 0 0 0.25rem;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
}
.company_applications_card__job {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.35rem;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 600;
}
.company_applications_card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  color: #64748b;
  font-size: 0.8125rem;
}
.company_applications_card__meta span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.company_applications_card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.5rem;
}
.company_applications_card__actions .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
}
.company_applications_card__status-form {
  min-width: 120px;
}

.company_application_detail {
  display: grid;
  gap: 1rem;
}
.company_application_detail__panel {
  padding: 1.25rem;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  background: #fff;
}
.company_application_detail__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
}
.company_application_detail__item {
  margin: 0;
}
.company_application_detail__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
}
.company_application_detail__value {
  margin: 0;
  color: #0f172a;
  font-size: 0.9375rem;
  line-height: 1.6;
  word-break: break-word;
}
.company_application_detail__message {
  margin: 0;
  color: #0f172a;
  font-size: 0.9375rem;
  line-height: 1.7;
  white-space: pre-wrap;
}
.company_application_detail__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}
.company_application_detail__actions .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
}

.company-app .company_manage_page,
.company-app .company_application_detail {
  max-width: 1120px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .company_manage_page__header,
  .company_applications_card,
  .company_application_detail__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .company_manage_stats,
  .company_application_detail__grid {
    grid-template-columns: 1fr;
  }
  .company_manage_table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.company_profile_setup__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.company_profile_setup__main {
  min-width: 0;
}
.company_profile_setup__panel {
  padding: 1.25rem;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  background: #fff;
}
.company_profile_setup__panel + .company_profile_setup__panel {
  margin-top: 1rem;
}
.company_profile_setup__panel h2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}
.company_profile_setup__stepper {
  margin-bottom: 1.25rem;
}
.company_profile_setup__stepper ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.company_profile_setup__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: #fff;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 700;
}
.company_profile_setup__step.is-active {
  border-color: #93c5fd;
  background: #e8f4ff;
  color: #0f3d66;
}
.company_profile_setup__step.is-complete {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #15803d;
}
.company_profile_setup__step-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #f8fafc;
  font-size: 1.1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.company_profile_setup__step.is-active .company_profile_setup__step-icon, .company_profile_setup__step.is-complete .company_profile_setup__step-icon {
  background: #fff;
}
.company_profile_setup__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}
.company_profile_setup__field {
  min-width: 0;
}
.company_profile_setup__field--wide {
  grid-column: 1/-1;
}
.company_profile_setup__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 700;
}
.company_profile_setup__required {
  margin-left: 0.25rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 0.6875rem;
  font-weight: 700;
}
.company_profile_setup__hint, .company_profile_setup__counter {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  margin: 0.45rem 0 0;
  color: #64748b;
  font-size: 0.8125rem;
}
.company_profile_setup__counter.is-over-limit {
  color: #b91c1c;
}
.company_profile_setup__input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.company_profile_setup__input-group span {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
}
.company_profile_setup__input-group .form-control, .company_profile_setup__input-group .form-select {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 12rem;
}
.company_profile_setup__upload {
  display: grid;
  gap: 0.75rem;
}
.company_profile_setup__upload-current, .company_profile_setup__upload-empty, .company_profile_setup__upload-preview {
  padding: 1rem;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  text-align: center;
}
.company_profile_setup__upload-current img, .company_profile_setup__upload-preview img {
  max-width: 220px;
  max-height: 220px;
  border-radius: 8px;
}
.company_profile_setup__upload-empty {
  color: #64748b;
}
.company_profile_setup__upload-empty i {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.75rem;
}
.company_profile_setup__actions, .company_profile_setup__footer-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}
.company_profile_setup__actions .btn, .company_profile_setup__footer-actions .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
}
.company_profile_setup__footer-actions {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.company_profile_setup__alert {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid #fecaca;
  border-radius: 14px;
  background: #fef2f2;
  color: #991b1b;
}
.company_profile_setup__alert h2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
}
.company_profile_setup__alert ul {
  margin: 0;
  padding-left: 1.1rem;
}
.company_profile_setup__links {
  display: grid;
  gap: 0.75rem;
}
.company_profile_setup__link-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.company_profile_setup__link-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #0f172a;
  font-size: 0.9375rem;
}
.company_profile_setup__link-card span span {
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 500;
}
.company_profile_setup__link-card:hover {
  border-color: #93c5fd;
  -webkit-box-shadow: 0 8px 24px rgba(15, 61, 102, 0.08);
          box-shadow: 0 8px 24px rgba(15, 61, 102, 0.08);
}
.company_profile_setup__link-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: #e8f4ff;
  color: #0f3d66;
  font-size: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.company_profile_setup__aside {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: calc(var(--company-app-header-height, 68px) + 1.25rem);
}
.company_profile_setup__aside-card {
  padding: 1.25rem;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  background: #fff;
}
.company_profile_setup__aside-card h2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}
.company_profile_setup__aside-card .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.35rem;
}
.company_profile_setup__aside-lead {
  margin: 0 0 0.75rem;
  color: #64748b;
  font-size: 0.875rem;
}
.company_profile_setup__help + .company_profile_setup__help {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #eef2f7;
}
.company_profile_setup__help h3 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.25rem;
  color: #0f3d66;
  font-size: 0.875rem;
  font-weight: 700;
}
.company_profile_setup__help p {
  margin: 0;
  color: #64748b;
  font-size: 0.8125rem;
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
  .company_profile_setup__grid {
    grid-template-columns: 1fr;
  }
  .company_profile_setup__fields {
    grid-template-columns: 1fr;
  }
  .company_profile_setup__stepper ol {
    grid-template-columns: 1fr;
  }
  .company_profile_setup__aside {
    position: static;
  }
}

.company-app .company_profile_setup {
  max-width: 1120px;
  margin: 0 auto;
}

.company-lp {
  background: #ffffff;
  color: #0f172a;
}
.company-lp *,
.company-lp *::before,
.company-lp *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.company-lp__hero {
  position: relative;
  min-height: 78vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  color: #ffffff;
  background: #0f172a;
  overflow: hidden;
}
.company-lp__hero--has-image {
  background-image: var(--company-hero-image);
  background-size: cover;
  background-position: center;
}
.company-lp__hero-overlay {
  display: none;
}
.company-lp__hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  min-height: inherit;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.company-lp__back {
  grid-row: 1;
  justify-self: start;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.45);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  -webkit-transition: background 0.15s ease, -webkit-transform 0.15s ease;
  transition: background 0.15s ease, -webkit-transform 0.15s ease;
  transition: background 0.15s ease, transform 0.15s ease;
  transition: background 0.15s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
.company-lp__back:hover {
  background: rgba(15, 23, 42, 0.6);
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
}
.company-lp__hero-body {
  grid-row: 2;
  align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 720px;
  margin: 0;
  padding: 1.5rem 0;
}
.company-lp__hero-category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: #107bdd;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0 6px 18px rgba(15, 23, 42, 0.35);
          box-shadow: 0 6px 18px rgba(15, 23, 42, 0.35);
}
.company-lp__hero-category i {
  color: #ffffff;
}
.company-lp__hero-name {
  margin: 1rem 0 0.4rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 8px rgba(15, 23, 42, 0.55), 0 1px 2px rgba(15, 23, 42, 0.5);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.company-lp__hero-name::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  margin-right: 0.7rem;
  -webkit-box-shadow: 0 1px 3px rgba(15, 23, 42, 0.4);
          box-shadow: 0 1px 3px rgba(15, 23, 42, 0.4);
}
.company-lp__hero-name-only {
  margin: 1rem 0 2rem;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.35;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.55), 0 1px 2px rgba(15, 23, 42, 0.5);
}
.company-lp__hero-title {
  margin: 0 0 2rem;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 18px rgba(15, 23, 42, 0.55), 0 2px 4px rgba(15, 23, 42, 0.5);
  max-width: 880px;
}
.company-lp__hero-lead {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.95);
  max-width: 640px;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.25);
}
.company-lp__hero-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.65rem;
}
.company-lp__cta-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: background 0.15s ease, color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.company-lp__cta-btn i {
  font-size: 1.05rem;
}
.company-lp__cta-btn--primary {
  background: #ffffff;
  color: #107bdd;
  -webkit-box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
          box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
}
.company-lp__cta-btn--primary:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 18px 36px rgba(15, 23, 42, 0.28);
          box-shadow: 0 18px 36px rgba(15, 23, 42, 0.28);
  color: #0a5fb3;
}
.company-lp__cta-btn--ghost {
  background: #16a34a;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  -webkit-box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
          box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
}
.company-lp__cta-btn--ghost:hover {
  background: #15803d;
  border-color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 18px 36px rgba(15, 23, 42, 0.3);
          box-shadow: 0 18px 36px rgba(15, 23, 42, 0.3);
}
.company-lp__hero-scroll {
  grid-row: 3;
  justify-self: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  text-decoration: none;
}
.company-lp__hero-scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: #ffffff;
  border-radius: 2px;
  -webkit-animation: company-lp-scroll 1.6s ease-in-out infinite;
          animation: company-lp-scroll 1.6s ease-in-out infinite;
}
.company-lp__band {
  padding: 5rem 0;
}
.company-lp__band--white {
  background: #ffffff;
}
.company-lp__band--soft {
  background: #f7fafc;
}
.company-lp__band--accent {
  background: linear-gradient(135deg, #107bdd 0%, #0a5fb3 100%);
  color: #ffffff;
}
.company-lp__band-head {
  margin: 0 0 2.5rem;
  text-align: center;
}
.company-lp__eyebrow {
  margin: 0 0 0.5rem;
  color: #107bdd;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.company-lp__eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}
.company-lp__band-title {
  margin: 0 0 0.75rem;
  color: #0f172a;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.35;
}
.company-lp__band-title--light {
  color: #ffffff;
}
.company-lp__band-sub {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.8;
}
.company-lp__section-count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0.55rem;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  background: rgba(16, 123, 221, 0.1);
  color: #107bdd;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.company-lp__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2.25rem 0 0;
}
.company-lp__more-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.65rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #107bdd;
  color: #107bdd;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  -webkit-box-shadow: 0 8px 22px rgba(16, 123, 221, 0.12);
          box-shadow: 0 8px 22px rgba(16, 123, 221, 0.12);
  -webkit-transition: background 0.15s ease, color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.company-lp__more-link small {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  padding-left: 0.55rem;
  border-left: 1px solid #cbd5e1;
}
.company-lp__more-link i {
  font-size: 1rem;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.company-lp__more-link:hover {
  background: #107bdd;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 14px 30px rgba(16, 123, 221, 0.28);
          box-shadow: 0 14px 30px rgba(16, 123, 221, 0.28);
}
.company-lp__more-link:hover small {
  color: rgba(255, 255, 255, 0.85);
  border-left-color: rgba(255, 255, 255, 0.5);
}
.company-lp__more-link:hover i {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.company-lp__about {
  max-width: 880px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.25rem;
}
.company-lp__about-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.company-lp__about-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.55rem;
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.company-lp__about-label i {
  color: #107bdd;
  font-size: 2.1rem;
}
.company-lp__about-body {
  margin: 0;
  padding: 0;
  color: #334155;
  font-size: 1rem;
  line-height: 2;
  text-align: left;
  max-width: 720px;
  width: 100%;
}
.company-lp__about-body p {
  margin: 0 0 0.85rem;
}
.company-lp__about-body p:last-child {
  margin: 0;
}
.company-lp__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.company-lp__stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  padding: 1.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.company-lp__stat-value {
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}
.company-lp__stat-value small {
  font-size: 0.55em;
  font-weight: 700;
  margin-left: 0.2rem;
  opacity: 0.85;
}
.company-lp__stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
}
.company-lp__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.65rem;
  padding: 2.5rem 1rem;
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  color: #64748b;
}
.company-lp__empty i {
  font-size: 2rem;
  color: #94a3b8;
}
.company-lp__empty p {
  margin: 0;
  font-size: 0.92rem;
}
.company-lp__oneday-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.company-lp__oneday-card {
  list-style: none;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
          box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  -webkit-transition: border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.company-lp__oneday-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: rgba(16, 123, 221, 0.4);
  -webkit-box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
          box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}
.company-lp__oneday-link {
  display: block;
  padding: 1.1rem 1.15rem;
  color: inherit;
  text-decoration: none;
}
.company-lp__oneday-date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.5rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 700;
}
.company-lp__oneday-date i {
  color: #107bdd;
  font-size: 0.9rem;
}
.company-lp__oneday-title {
  margin: 0 0 0.6rem;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.company-lp__oneday-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.55rem 0.95rem;
}
.company-lp__oneday-meta span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  color: #475569;
  font-size: 0.85rem;
}
.company-lp__oneday-meta span i {
  color: #107bdd;
  font-size: 0.95rem;
}
.company-lp__overview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.company-lp__info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  font-size: 0.9rem;
  color: #334155;
}
.company-lp__info-table th, .company-lp__info-table td {
  padding: 0.85rem 1rem;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
  line-height: 1.7;
}
.company-lp__info-table th {
  width: 8.5rem;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.company-lp__info-table tr:last-child th, .company-lp__info-table tr:last-child td {
  border-bottom: 0;
}
.company-lp__inline-link {
  color: #107bdd;
  font-weight: 600;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  word-break: break-all;
}
.company-lp__inline-link i {
  font-size: 0.85em;
}
.company-lp__inline-link:hover {
  text-decoration: underline;
}
.company-lp__map-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.6rem;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.9rem;
}
.company-lp__map-label i {
  color: #107bdd;
  font-size: 1.05rem;
}
.company-lp__map {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
}
.company-lp__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.company-lp__cta-section {
  padding: 5rem 0;
  background: #ffedd5;
  color: #0f172a;
  position: relative;
  overflow: hidden;
}
.company-lp__cta-section::before {
  display: none;
}
.company-lp__cta-section .company-lp__eyebrow {
  color: #c2410c;
}
.company-lp__cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.company-lp__cta-copy .company-lp__eyebrow {
  margin-bottom: 0.6rem;
}
.company-lp__cta-title {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.35;
  color: #0f172a;
}
.company-lp__cta-lead {
  margin: 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.85;
}
.company-lp__cta-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.company-lp__cta-action {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a;
  text-decoration: none;
  -webkit-box-shadow: 0 8px 20px rgba(194, 65, 12, 0.08);
          box-shadow: 0 8px 20px rgba(194, 65, 12, 0.08);
  -webkit-transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.company-lp__cta-action > i {
  width: 56px;
  height: 56px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.04);
  font-size: 1.5rem;
}
.company-lp__cta-action div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.15rem;
}
.company-lp__cta-action span {
  font-weight: 600;
  font-size: 1rem;
}
.company-lp__cta-action small {
  font-size: 0.8rem;
  color: #64748b;
}
.company-lp__cta-action::after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 600;
  color: #94a3b8;
  justify-self: end;
}
.company-lp__cta-action:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 14px 30px rgba(194, 65, 12, 0.16);
          box-shadow: 0 14px 30px rgba(194, 65, 12, 0.16);
}
.company-lp__cta-action--primary {
  background: #ffffff;
  color: #107bdd;
}
.company-lp__cta-action--primary > i {
  background: linear-gradient(135deg, #107bdd 0%, #0a5fb3 100%);
  color: #ffffff;
}
.company-lp__cta-action--primary::after {
  color: #107bdd;
}
.company-lp__cta-action--line {
  background: #06c755;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #ffffff;
  -webkit-box-shadow: 0 10px 24px rgba(6, 199, 85, 0.25);
          box-shadow: 0 10px 24px rgba(6, 199, 85, 0.25);
}
.company-lp__cta-action--line > i {
  background: rgba(255, 255, 255, 0.22);
}
.company-lp__cta-action--line small {
  color: rgba(255, 255, 255, 0.85);
}
.company-lp__cta-action--line::after {
  color: #ffffff;
}
.company-lp__cta-action--line:hover {
  background: #05b04b;
  -webkit-box-shadow: 0 14px 30px rgba(6, 199, 85, 0.32);
          box-shadow: 0 14px 30px rgba(6, 199, 85, 0.32);
}
.company-lp__cta-action--tel {
  background: #ffffff;
  color: #0f172a;
}
.company-lp__cta-action--tel > i {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
}
.company-lp__cta-action--tel small {
  color: #475569;
  font-weight: 700;
}
.company-lp__cta-action--tel::after {
  color: #f97316;
}
.company-lp__cta-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  -webkit-box-shadow: 0 12px 28px rgba(194, 65, 12, 0.1);
          box-shadow: 0 12px 28px rgba(194, 65, 12, 0.1);
  text-align: center;
}
.company-lp__cta-login p {
  margin: 0;
  color: #0f172a;
  font-size: 0.95rem;
}
.company-lp__cta-login-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: #f97316;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  -webkit-box-shadow: 0 12px 28px rgba(249, 115, 22, 0.32);
          box-shadow: 0 12px 28px rgba(249, 115, 22, 0.32);
  -webkit-transition: background 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.company-lp__cta-login-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background: #ea580c;
  -webkit-box-shadow: 0 18px 36px rgba(249, 115, 22, 0.38);
          box-shadow: 0 18px 36px rgba(249, 115, 22, 0.38);
}
@media screen and (max-width: 1199px) {
  .company-lp__hero {
    min-height: 64vh;
  }
  .company-lp__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .company-lp__overview, .company-lp__cta-inner {
    grid-template-columns: 1fr;
  }
  .company-lp__oneday-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .company-lp__band {
    padding: 3.5rem 0;
  }
  .company-lp__cta-section {
    padding: 3.5rem 0;
  }
  .company-lp__hero {
    min-height: 56vh;
  }
  .company-lp__hero-title {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
  }
  .company-lp__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .company-lp__oneday-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
  .company-lp__oneday-card {
    padding: 0;
  }
  .company-lp__oneday-link {
    padding: 0.85rem 0.85rem 0.95rem;
  }
  .company-lp__oneday-date {
    font-size: 0.72rem;
    padding: 0.18rem 0.5rem;
  }
  .company-lp__oneday-title {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .company-lp__oneday-meta {
    font-size: 0.72rem;
    gap: 0.35rem;
  }
  .company-lp__cta-action {
    grid-template-columns: 48px 1fr auto;
  }
  .company-lp__cta-action > i {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .company-lp__cta-action span {
    font-size: 0.95rem;
  }
  .company-lp__info-table th, .company-lp__info-table td {
    padding: 0.7rem 0.85rem;
    font-size: 0.85rem;
  }
  .company-lp__info-table th {
    width: 6.5rem;
  }
}

@-webkit-keyframes company-lp-scroll {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  60% {
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
}

@keyframes company-lp-scroll {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  60% {
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
}
.company-list-page {
  padding: 2.5rem 0 4.5rem;
  background: #ffffff;
}
.company-list-page__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  color: #94a3b8;
}
.company-list-page__breadcrumb span[aria-hidden=true] {
  color: #cbd5e1;
}
.company-list-page__breadcrumb-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  color: #475569;
  text-decoration: none;
  font-weight: 600;
}
.company-list-page__breadcrumb-link:hover {
  color: #107bdd;
}
.company-list-page__breadcrumb-link i {
  color: #94a3b8;
  font-size: 0.85em;
}
.company-list-page__breadcrumb-current {
  color: #0f172a;
  font-weight: 700;
}
.company-list-page__head {
  margin: 0 0 1.75rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}
.company-list-page__eyebrow {
  margin: 0 0 0.4rem;
  color: #107bdd;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.company-list-page__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.65rem;
}
.company-list-page__count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(16, 123, 221, 0.1);
  color: #107bdd;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.company-list-page__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.85rem;
  padding: 3.5rem 1rem;
  background: #f7fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  color: #475569;
}
.company-list-page__empty i {
  font-size: 2.4rem;
  color: #94a3b8;
}
.company-list-page__empty p {
  margin: 0;
  font-size: 0.95rem;
}
.company-list-page__back-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: #107bdd;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
}
.company-list-page__back-btn:hover {
  background: #0a5fb3;
}
.company-list-page__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2.25rem 0 0;
}
.company-list-page__back-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #ffffff;
  color: #475569;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  -webkit-transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.company-list-page__back-link:hover {
  background: #f7fafc;
  color: #107bdd;
  border-color: #107bdd;
}
.company-list-page__back-link i {
  font-size: 0.95em;
}
.company-list-page__oneday-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.company-list-page__oneday-card {
  list-style: none;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
          box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  -webkit-transition: border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.company-list-page__oneday-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: rgba(16, 123, 221, 0.4);
  -webkit-box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
          box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}
.company-list-page__oneday-link {
  display: block;
  padding: 1.1rem 1.15rem;
  color: inherit;
  text-decoration: none;
}
.company-list-page__oneday-date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.5rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 700;
}
.company-list-page__oneday-date i {
  color: #107bdd;
  font-size: 0.9rem;
}
.company-list-page__oneday-title {
  margin: 0 0 0.6rem;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.company-list-page__oneday-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.55rem 0.95rem;
}
.company-list-page__oneday-meta span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  color: #475569;
  font-size: 0.85rem;
}
.company-list-page__oneday-meta span i {
  color: #107bdd;
  font-size: 0.95rem;
}
@media screen and (max-width: 1199px) {
  .company-list-page__oneday-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .company-list-page__oneday-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

.joblist-new-select {
  padding: 2.75rem 0 4.5rem;
  background: #ffffff;
}
.joblist-new-select__header {
  margin: 0 0 2.5rem;
  text-align: center;
}
.joblist-new-select__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin: 0 0 1.25rem;
  color: #475569;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}
.joblist-new-select__back:hover {
  color: #107bdd;
}
.joblist-new-select__back i {
  color: #94a3b8;
}
.joblist-new-select__title {
  margin: 0 0 0.6rem;
  color: #0f172a;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 600;
  line-height: 1.35;
}
.joblist-new-select__lead {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.8;
}
.joblist-new-select__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.joblist-new-select__item {
  list-style: none;
  margin: 0;
}
.joblist-new-select__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 1.4rem 1.35rem 1.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
  -webkit-box-shadow: 0 8px 20px rgba(15, 30, 55, 0.05);
          box-shadow: 0 8px 20px rgba(15, 30, 55, 0.05);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: border-color 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: border-color 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
}
.joblist-new-select__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(135deg, #107bdd 0%, #0a5fb3 100%);
}
.joblist-new-select__card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 16px 30px rgba(15, 30, 55, 0.09);
          box-shadow: 0 16px 30px rgba(15, 30, 55, 0.09);
  border-color: rgba(16, 123, 221, 0.4);
  color: inherit;
  text-decoration: none;
}
.joblist-new-select__card--spot::before {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}
.joblist-new-select__card--spot:hover {
  border-color: rgba(249, 115, 22, 0.45);
}
.joblist-new-select__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.85rem;
}
.joblist-new-select__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  color: #107bdd;
  font-size: 1.35rem;
}
.joblist-new-select__card--spot .joblist-new-select__icon {
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
  color: #c2410c;
}
.joblist-new-select__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.22rem 0.65rem;
  margin: 0;
  border-radius: 999px;
  background: rgba(16, 123, 221, 0.1);
  color: #107bdd;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.joblist-new-select__card--spot .joblist-new-select__badge {
  background: rgba(249, 115, 22, 0.12);
  color: #c2410c;
}
.joblist-new-select__card-title {
  margin: 0 0 0.55rem;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}
.joblist-new-select__card-text {
  margin: 0 0 0.85rem;
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.75;
}
.joblist-new-select__points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  color: #334155;
  font-size: 0.82rem;
}
.joblist-new-select__points li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  list-style: none;
}
.joblist-new-select__points li i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
  font-size: 0.7rem;
}
.joblist-new-select__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding: 0.55rem 0.95rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
  border-radius: 999px;
  background: #107bdd;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.82rem;
  -webkit-box-shadow: 0 8px 16px rgba(16, 123, 221, 0.22);
          box-shadow: 0 8px 16px rgba(16, 123, 221, 0.22);
  -webkit-transition: background 0.15s ease, -webkit-transform 0.15s ease;
  transition: background 0.15s ease, -webkit-transform 0.15s ease;
  transition: background 0.15s ease, transform 0.15s ease;
  transition: background 0.15s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
.joblist-new-select__cta i {
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.joblist-new-select__card:hover .joblist-new-select__cta {
  background: #0a5fb3;
}
.joblist-new-select__card:hover .joblist-new-select__cta i {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.joblist-new-select__card--spot .joblist-new-select__cta {
  background: #f97316;
  -webkit-box-shadow: 0 8px 16px rgba(249, 115, 22, 0.26);
          box-shadow: 0 8px 16px rgba(249, 115, 22, 0.26);
}
.joblist-new-select__card--spot:hover .joblist-new-select__cta {
  background: #ea580c;
}
.joblist-new-select__note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2.5rem 0 0;
  padding: 1rem 1.25rem;
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.7;
}
.joblist-new-select__note i {
  color: #94a3b8;
  font-size: 1.05rem;
}
@media screen and (max-width: 1199px) {
  .joblist-new-select__grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .joblist-new-select {
    padding: 2rem 0 3.5rem;
  }
  .joblist-new-select__card {
    padding: 1.65rem 1.35rem 1.5rem;
  }
}

.company-preview-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  margin: 0 0 1.25rem;
  background: linear-gradient(135deg, #fef9c3 0%, #fde68a 100%);
  border-bottom: 1px solid #f6cc62;
  -webkit-box-shadow: 0 2px 8px rgba(133, 100, 4, 0.12);
          box-shadow: 0 2px 8px rgba(133, 100, 4, 0.12);
}
.company-preview-bar__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.85rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
}
.company-preview-bar__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.company-preview-bar__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #fff;
  color: #b45309;
  font-size: 1.15rem;
  -webkit-box-shadow: 0 1px 3px rgba(133, 100, 4, 0.18);
          box-shadow: 0 1px 3px rgba(133, 100, 4, 0.18);
}
.company-preview-bar__text-group {
  min-width: 0;
}
.company-preview-bar__title {
  margin: 0 0 0.1rem;
  color: #78350f;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.company-preview-bar__text {
  margin: 0;
  color: #92400e;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.company-preview-bar__status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0.35rem;
  padding: 0.1rem 0.55rem;
  border-radius: 9999px;
  background: #fff;
  color: #1f2937;
  font-size: 0.75rem;
  font-weight: 700;
}
.company-preview-bar__status--draft {
  background: #e5e7eb;
  color: #374151;
}
.company-preview-bar__status--pending {
  background: #fef3c7;
  color: #92400e;
}
.company-preview-bar__status--approved {
  background: #d1fae5;
  color: #065f46;
}
.company-preview-bar__status--rejected {
  background: #fee2e2;
  color: #991b1b;
}
.company-preview-bar__status--advertisement {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fdba74;
}
.company-preview-bar__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.company-preview-bar__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.company-preview-bar__btn i {
  font-size: 1rem;
}
.company-preview-bar__btn--outline {
  background: #fff;
  color: #92400e;
  border: 1px solid #d97706;
}
.company-preview-bar__btn--outline:hover {
  background: #fff7ed;
  color: #78350f;
  -webkit-box-shadow: 0 2px 5px rgba(133, 100, 4, 0.15);
          box-shadow: 0 2px 5px rgba(133, 100, 4, 0.15);
}
.company-preview-bar__btn--primary {
  background: #d97706;
  color: #fff;
  border: 1px solid #d97706;
}
.company-preview-bar__btn--primary:hover {
  background: #b45309;
  border-color: #b45309;
  color: #fff;
  -webkit-box-shadow: 0 2px 6px rgba(133, 100, 4, 0.25);
          box-shadow: 0 2px 6px rgba(133, 100, 4, 0.25);
}
@media (max-width: 640px) {
  .company-preview-bar__inner {
    padding: 0.75rem 1rem;
  }
  .company-preview-bar__actions {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .company-preview-bar__btn {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

:root {
  --user-header-height: 64px;
  --user-sidebar-width: 240px;
  --user-bg: #f1f5f9;
  --user-surface: #ffffff;
  --user-border: #e2e8f0;
  --user-text: #0f172a;
  --user-muted: #64748b;
  --user-primary: #1d4ed8;
  --user-primary-soft: #dbeafe;
  --user-accent: #10b981;
}

body.user-app {
  background: var(--user-bg);
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Zen Kaku Gothic New", sans-serif;
  color: var(--user-text);
}

.user-app__header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--user-surface);
  border-bottom: 1px solid var(--user-border);
  -webkit-box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
          box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.user-app__header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 1.25rem;
  height: var(--user-header-height);
}

.user-app__header-spacer {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.user-app__menu-toggle {
  display: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--user-border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.user-app__menu-toggle span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: var(--user-text);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.user-app__menu-toggle span:nth-child(1) {
  top: 12px;
}
.user-app__menu-toggle span:nth-child(2) {
  top: 18px;
}
.user-app__menu-toggle span:nth-child(3) {
  top: 24px;
}
.user-app__menu-toggle.is-active span:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
}
.user-app__menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.user-app__menu-toggle.is-active span:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
}

.user-app__brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.user-app__profile {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.user-app__profile-trigger {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.7rem;
  background: var(--user-surface);
  border: 1px solid var(--user-border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--user-text);
  font-weight: 600;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.user-app__profile-trigger:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}

.user-app__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.95rem;
}
.user-app__avatar--lg {
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
}

.user-app__profile-name {
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-app__profile-caret {
  color: var(--user-muted);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.user-app__profile.is-open .user-app__profile-caret {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.user-app__profile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: var(--user-surface);
  border: 1px solid var(--user-border);
  border-radius: 12px;
  -webkit-box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
          box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}
.user-app__profile-menu-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--user-border);
  background: #f8fafc;
}
.user-app__profile-menu-name {
  margin: 0 0 0.15rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.user-app__profile-menu-mail {
  margin: 0;
  color: var(--user-muted);
  font-size: 0.75rem;
  word-break: break-all;
}

.user-app__profile-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--user-surface);
  border: 0;
  text-align: left;
  text-decoration: none;
  font-size: 0.875rem;
  color: var(--user-text);
  cursor: pointer;
  -webkit-transition: background-color 0.15s ease, color 0.15s ease;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.user-app__profile-menu-item i {
  color: var(--user-muted);
  font-size: 1rem;
}
.user-app__profile-menu-item:hover {
  background: #f1f5f9;
  color: var(--user-primary);
}
.user-app__profile-menu-item:hover i {
  color: var(--user-primary);
}
.user-app__profile-menu-item--danger:hover {
  background: #fef2f2;
  color: #b91c1c;
}
.user-app__profile-menu-item--danger:hover i {
  color: #b91c1c;
}

.user-app__shell {
  display: grid;
  grid-template-columns: var(--user-sidebar-width) 1fr;
  min-height: calc(100vh - var(--user-header-height));
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.user-app__sidebar {
  background: var(--user-surface);
  border-right: 1px solid var(--user-border);
  padding: 1.25rem 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: var(--user-header-height);
  -ms-flex-item-align: stretch;
      align-self: stretch;
  height: calc(100vh - var(--user-header-height));
  overflow-y: auto;
}

.user-app__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: calc(100vh - var(--user-header-height));
  min-width: 0;
}

.user-app__sidebar-label {
  margin: 0 0 0.25rem;
  padding: 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--user-muted);
}

.user-app__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
}

.user-app__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  color: var(--user-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.user-app__nav-link:hover {
  background: #f1f5f9;
  color: var(--user-primary);
}
.user-app__nav-link.is-active {
  background: var(--user-primary-soft);
  color: var(--user-primary);
  border-color: #bfdbfe;
}
.user-app__nav-link--muted {
  color: var(--user-muted);
  font-weight: 500;
}

.user-app__nav-icon {
  width: 28px;
  height: 28px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  background: #f1f5f9;
  font-size: 1.05rem;
  color: var(--user-muted);
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.user-app__nav-link.is-active .user-app__nav-icon {
  background: #fff;
  color: var(--user-primary);
}

.user-app__sidebar-foot {
  margin-top: auto;
  border-top: 1px solid var(--user-border);
  padding-top: 1rem;
}

.user-app__main {
  padding: 1.5rem 1.75rem 3rem;
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.user-app__footer {
  margin-top: auto;
  background: var(--user-surface);
  border-top: 1px solid var(--user-border);
  padding: 1rem 1.75rem 0.85rem;
}
.user-app__footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.user-app__footer-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.65rem;
}
.user-app__footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
}
.user-app__footer-nav a {
  color: var(--user-muted);
  font-size: 0.82rem;
  text-decoration: none;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
.user-app__footer-nav a:hover {
  color: var(--user-primary);
}
.user-app__footer-copy {
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--user-border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--user-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .user-app__footer {
    padding: 1rem 1rem;
  }
  .user-app__footer-inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .user-app__footer-nav {
    gap: 0.4rem 0.85rem;
  }
}
.user-app__flash {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.55rem;
  font-weight: 600;
}
.user-app__flash i {
  font-size: 1.15rem;
}
.user-app__flash--notice {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.user-app__flash--alert {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

@media (max-width: 960px) {
  .user-app__menu-toggle {
    display: block;
  }
  .user-app__shell {
    display: block;
  }
  .user-app__sidebar {
    position: fixed;
    top: var(--user-header-height);
    left: 0;
    width: 280px;
    height: calc(100vh - var(--user-header-height));
    border-right: 1px solid var(--user-border);
    -webkit-transform: translateX(-105%);
            transform: translateX(-105%);
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
    z-index: 35;
  }
  .user-app__sidebar.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-box-shadow: 8px 0 24px rgba(15, 23, 42, 0.18);
            box-shadow: 8px 0 24px rgba(15, 23, 42, 0.18);
  }
  .user-app__main {
    padding: 1.25rem 1rem 3rem;
  }
  .user-app__profile-name {
    display: none;
  }
}
.user-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.user-page__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
}
.user-page__title {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--user-text);
}
.user-page__title i {
  margin-right: 0.4rem;
  color: var(--user-primary);
}
.user-page__lead {
  margin: 0;
  color: var(--user-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.user-page__header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.user-page__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.user-page__btn--primary {
  background: var(--user-primary);
  color: #fff;
}
.user-page__btn--primary:hover {
  background: #1e40af;
  color: #fff;
}
.user-page__btn--ghost {
  background: #fff;
  color: var(--user-text);
  border-color: var(--user-border);
}
.user-page__btn--ghost:hover {
  background: #f8fafc;
  color: var(--user-primary);
  border-color: #94a3b8;
}

.user-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.user-summary-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.2rem;
  background: var(--user-surface);
  border-radius: 14px;
  border: 1px solid var(--user-border);
  -webkit-box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
          box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}
.user-summary-card__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.35rem;
  color: #fff;
}
.user-summary-card__label {
  margin: 0 0 0.25rem;
  color: var(--user-muted);
  font-size: 0.78rem;
  font-weight: 600;
}
.user-summary-card__value {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--user-text);
}
.user-summary-card__value small {
  font-size: 0.75rem;
  margin-left: 0.2rem;
  color: var(--user-muted);
}
.user-summary-card__link {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 1rem;
  text-decoration: none;
  color: var(--user-muted);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.user-summary-card__link:hover {
  color: var(--user-primary);
}
.user-summary-card--blue .user-summary-card__icon {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}
.user-summary-card--green .user-summary-card__icon {
  background: linear-gradient(135deg, #10b981, #059669);
}
.user-summary-card--orange .user-summary-card__icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
}
.user-summary-card--purple .user-summary-card__icon {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.user-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.user-dashboard-panel {
  background: var(--user-surface);
  border: 1px solid var(--user-border);
  border-radius: 14px;
  padding: 1.1rem 1.2rem 1.2rem;
  -webkit-box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
          box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.user-dashboard-panel__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.user-dashboard-panel__head h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--user-text);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
.user-dashboard-panel__head h2 i {
  color: var(--user-primary);
}
.user-dashboard-panel__more {
  font-size: 0.78rem;
  color: var(--user-muted);
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
}
.user-dashboard-panel__more:hover {
  color: var(--user-primary);
}

.user-interview-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
}
.user-interview-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0.85rem;
  background: #f8fafc;
  border: 1px solid var(--user-border);
  border-radius: 12px;
}
.user-interview-list__time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 64px;
  text-align: center;
  padding: 0.4rem 0;
  background: var(--user-surface);
  border-radius: 10px;
  border: 1px solid var(--user-border);
}
.user-interview-list__date {
  margin: 0;
  font-weight: 700;
  color: var(--user-text);
}
.user-interview-list__day {
  margin: 0;
  color: var(--user-muted);
  font-size: 0.72rem;
}
.user-interview-list__clock {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: var(--user-primary);
  font-weight: 700;
}
.user-interview-list__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.user-interview-list__company {
  margin: 0 0 0.15rem;
  font-size: 0.78rem;
  color: var(--user-muted);
}
.user-interview-list__company i {
  margin-right: 0.25rem;
}
.user-interview-list__title {
  margin: 0 0 0.15rem;
  font-weight: 700;
  color: var(--user-text);
}
.user-interview-list__location {
  margin: 0;
  font-size: 0.78rem;
  color: var(--user-muted);
}
.user-interview-list__location i {
  margin-right: 0.25rem;
}
.user-interview-list__action {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.8rem;
  background: var(--user-primary);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}
.user-interview-list__action:hover {
  background: #1e40af;
  color: #fff;
}

.user-msg-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.45rem;
}
.user-msg-list__item {
  background: #f8fafc;
  border: 1px solid var(--user-border);
  border-radius: 10px;
}
.user-msg-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  text-decoration: none;
  color: var(--user-text);
}
.user-msg-list__link:hover {
  background: #f1f5f9;
}
.user-msg-list__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.user-msg-list__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.user-msg-list__name {
  margin: 0 0 0.1rem;
  font-weight: 700;
}
.user-msg-list__preview {
  margin: 0;
  font-size: 0.78rem;
  color: var(--user-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-msg-list__time {
  font-size: 0.72rem;
  color: var(--user-muted);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.user-joblist-mini {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
.user-joblist-mini__item {
  border: 1px solid var(--user-border);
  border-radius: 10px;
  background: #f8fafc;
}
.user-joblist-mini__link {
  display: block;
  padding: 0.65rem 0.85rem;
  color: var(--user-text);
  text-decoration: none;
}
.user-joblist-mini__link:hover {
  background: #f1f5f9;
}
.user-joblist-mini__company {
  margin: 0 0 0.15rem;
  font-size: 0.75rem;
  color: var(--user-muted);
}
.user-joblist-mini__title {
  margin: 0;
  font-weight: 700;
  font-size: 0.92rem;
}
.user-joblist-mini__time {
  margin: 0.2rem 0 0;
  font-size: 0.72rem;
  color: var(--user-muted);
}

.user-empty {
  margin: 0;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1px dashed var(--user-border);
  border-radius: 10px;
  color: var(--user-muted);
  font-size: 0.85rem;
  text-align: center;
}
.user-empty--page {
  padding: 2.5rem 1rem;
  font-size: 0.95rem;
}

.user-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.85rem;
}
.user-card-list__item {
  position: relative;
  background: var(--user-surface);
  border: 1px solid var(--user-border);
  border-radius: 14px;
  -webkit-box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
          box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.user-card-list__link {
  display: block;
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: var(--user-text);
}
.user-card-list__link:hover {
  background: #f8fafc;
}
.user-card-list__company {
  margin: 0 0 0.3rem;
  font-size: 0.78rem;
  color: var(--user-muted);
}
.user-card-list__company i {
  margin-right: 0.3rem;
}
.user-card-list__title {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 700;
}
.user-card-list__meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--user-muted);
}
.user-card-list__meta i {
  margin-right: 0.25rem;
}
.user-card-list__pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  margin: 0.55rem 0 0;
  padding: 0.3rem 0.6rem;
  background: #ecfeff;
  border: 1px solid #a5f3fc;
  color: #0e7490;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.user-card-list__pill--interview {
  background: #fef3c7;
  border-color: #fde68a;
  color: #b45309;
}
.user-card-list__remove {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  padding: 0.3rem 0.6rem;
  background: #fff;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}
.user-card-list__remove i {
  margin-right: 0.2rem;
}
.user-card-list__remove:hover {
  background: #fee2e2;
}

.user-form-card {
  background: var(--user-surface);
  border: 1px solid var(--user-border);
  border-radius: 14px;
  -webkit-box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
          box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  padding: 1.25rem 1.35rem 1.35rem;
}

.user-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.user-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.35rem;
}
.user-form__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--user-text);
}
.user-form__input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--user-border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--user-text);
  background: var(--user-surface);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.user-form__input:focus {
  outline: none;
  border-color: var(--user-primary);
  -webkit-box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
          box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}
.user-form__static {
  margin: 0;
  padding: 0.55rem 0.85rem;
  background: #f8fafc;
  border: 1px solid var(--user-border);
  border-radius: 8px;
  color: var(--user-muted);
  font-size: 0.9rem;
}
.user-form__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.user-form__alert {
  padding: 0.85rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: 10px;
}
.user-form__alert ul {
  margin: 0.4rem 0 0 1.1rem;
  padding: 0;
}
.user-form__alert-title {
  margin: 0;
  font-weight: 700;
}
.user-form__alert-title i {
  margin-right: 0.3rem;
}

@media (max-width: 960px) {
  .user-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .user-dashboard-grid {
    grid-template-columns: 1fr;
  }
  .user-interview-list__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .user-interview-list__action {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .user-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
  .user-summary-card {
    padding: 0.9rem 0.85rem;
    gap: 0.55rem;
  }
  .user-summary-card__icon {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }
  .user-summary-card__label {
    font-size: 0.78rem;
  }
  .user-summary-card__value {
    font-size: 1.35rem;
  }
  .user-summary-card__value small {
    font-size: 0.65rem;
  }
}
.user-talk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--user-surface);
  border: 1px solid var(--user-border);
  border-radius: 14px;
  overflow: hidden;
}
.user-talk-list__item {
  border-bottom: 1px solid var(--user-border);
}
.user-talk-list__item:last-child {
  border-bottom: none;
}
.user-talk-list__item.is-unread {
  background: #f0f9ff;
}
.user-talk-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  text-decoration: none;
  color: var(--user-text);
}
.user-talk-list__link:hover {
  background: #f8fafc;
}
.user-talk-list__avatar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.3rem;
}
.user-talk-list__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.user-talk-list__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}
.user-talk-list__top time {
  font-size: 0.72rem;
  color: var(--user-muted);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.user-talk-list__name {
  margin: 0;
  font-weight: 700;
  font-size: 0.98rem;
}
.user-talk-list__job {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  color: var(--user-muted);
}
.user-talk-list__job i {
  margin-right: 0.25rem;
}
.user-talk-list__preview {
  margin: 0;
  font-size: 0.85rem;
  color: var(--user-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-talk-list__pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  margin-top: 0.4rem;
  padding: 0.2rem 0.55rem;
  background: #ecfeff;
  border: 1px solid #a5f3fc;
  color: #0e7490;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}
.user-talk-list__badge {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0.15rem 0.5rem;
  background: #ef4444;
  color: #fff;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.user-msg-thread {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - var(--user-header-height) - 3rem);
  min-height: 520px;
  background: #d6e4ed;
  border: 1px solid var(--user-border);
  border-radius: 16px;
  overflow: hidden;
}
.user-msg-thread__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--user-surface);
  border-bottom: 1px solid var(--user-border);
}
.user-msg-thread__back {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  color: var(--user-text);
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.user-msg-thread__back:hover {
  background: #f1f5f9;
}
.user-msg-thread__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.user-msg-thread__head-info {
  min-width: 0;
}
.user-msg-thread__company {
  margin: 0;
  font-weight: 700;
}
.user-msg-thread__job {
  margin: 0;
  font-size: 0.75rem;
  color: var(--user-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-msg-thread__job i {
  margin-right: 0.25rem;
}
.user-msg-thread__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow-y: auto;
  padding: 1.25rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
}
.user-msg-thread__date {
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0.4rem 0 0.2rem;
  padding: 0.2rem 0.75rem;
  background: rgba(15, 23, 42, 0.4);
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.user-msg-thread__composer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  background: var(--user-surface);
  border-top: 1px solid var(--user-border);
}
.user-msg-thread__textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border: 1px solid var(--user-border);
  border-radius: 20px;
  padding: 0.65rem 0.95rem;
  font-size: 0.95rem;
  resize: none;
  line-height: 1.5;
  background: #f8fafc;
  max-height: 160px;
  min-height: 40px;
}
.user-msg-thread__textarea:focus {
  outline: none;
  border-color: var(--user-primary);
  background: #fff;
  -webkit-box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
          box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}
.user-msg-thread__send {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 44px;
  height: 44px;
  background: var(--user-primary);
  color: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.05rem;
}
.user-msg-thread__send:hover {
  background: #1e40af;
}
.user-msg-thread__send:disabled {
  background: #94a3b8;
  cursor: not-allowed;
}

.user-msg-bubble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.45rem;
  max-width: 78%;
}
.user-msg-bubble--self {
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.user-msg-bubble--self .user-msg-bubble__balloon {
  background: #6ee266;
  color: #1f2937;
  border-radius: 18px 4px 18px 18px;
}
.user-msg-bubble--self .user-msg-bubble__balloon::after {
  right: -6px;
  left: auto;
  border-color: transparent transparent transparent #6ee266;
}
.user-msg-bubble--self .user-msg-bubble__inner {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.user-msg-bubble--other {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.user-msg-bubble--other .user-msg-bubble__balloon {
  background: #ffffff;
  color: var(--user-text);
  border-radius: 4px 18px 18px 18px;
  -webkit-box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
          box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.user-msg-bubble--other .user-msg-bubble__balloon::after {
  left: -6px;
  right: auto;
  border-color: transparent #ffffff transparent transparent;
}
.user-msg-bubble__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.user-msg-bubble__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.user-msg-bubble__name {
  margin: 0 0 0.1rem;
  font-size: 0.72rem;
  color: var(--user-muted);
  font-weight: 600;
}
.user-msg-bubble__balloon {
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  line-height: 1.5;
  word-break: break-word;
  white-space: pre-wrap;
}
.user-msg-bubble__balloon p:last-child {
  margin-bottom: 0;
}
.user-msg-bubble__time {
  font-size: 0.65rem;
  color: var(--user-muted);
}

.user-msg-interview-card {
  margin-top: 0.55rem;
  padding: 0.75rem 0.9rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  color: #92400e;
}
.user-msg-interview-card__head {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 0.82rem;
  color: #b45309;
}
.user-msg-interview-card__head i {
  margin-right: 0.3rem;
}
.user-msg-interview-card__date {
  margin: 0 0 0.25rem;
  font-weight: 700;
  color: #78350f;
  font-size: 1rem;
}
.user-msg-interview-card__loc {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  color: #92400e;
}
.user-msg-interview-card__loc i {
  margin-right: 0.25rem;
}
.user-msg-interview-card__note {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #78350f;
}
.user-msg-interview-card__note p:last-child {
  margin-bottom: 0;
}
.user-msg-interview-card__action {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  padding: 0.35rem 0.7rem;
  background: #b45309;
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}
.user-msg-interview-card__action:hover {
  background: #78350f;
  color: #fff;
}

.company_messages_form__interview {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 10px;
}
.company_messages_form__interview summary {
  cursor: pointer;
  font-weight: 700;
  color: #9a3412;
}
.company_messages_form__interview summary i {
  margin-right: 0.4rem;
}
.company_messages_form__interview-text {
  margin: 0.5rem 0 0.6rem;
  color: #9a3412;
  font-size: 0.82rem;
}
.company_messages_form__interview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
@media (max-width: 640px) {
  .company_messages_form__interview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .user-msg-thread {
    height: calc(100vh - var(--user-header-height) - 1rem);
    border-radius: 0;
  }
  .user-msg-bubble {
    max-width: 86%;
  }
}
.user-cal-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.6rem;
  background: var(--user-surface);
  border: 1px solid var(--user-border);
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
}
.user-cal-toolbar__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--user-text);
}
.user-cal-toolbar__nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--user-border);
  background: #f8fafc;
  border-radius: 999px;
  color: var(--user-text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}
.user-cal-toolbar__nav:hover {
  background: #fff;
  color: var(--user-primary);
  border-color: #93c5fd;
}

.user-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  background: var(--user-surface);
  border: 1px solid var(--user-border);
  border-radius: 12px;
  overflow: hidden;
}
.user-cal-grid__head {
  background: #f8fafc;
  border-bottom: 1px solid var(--user-border);
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--user-text);
}
.user-cal-grid__head--0 {
  color: #dc2626;
}
.user-cal-grid__head--6 {
  color: #2563eb;
}

.user-cal-cell {
  min-height: 92px;
  padding: 0.4rem 0.45rem;
  border-bottom: 1px solid var(--user-border);
  border-right: 1px solid var(--user-border);
  background: var(--user-surface);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
}
.user-cal-cell:nth-child(7n) {
  border-right: none;
}
.user-cal-cell.is-out {
  background: #f8fafc;
  color: #cbd5e1;
}
.user-cal-cell.is-out .user-cal-cell__day {
  color: #cbd5e1;
}
.user-cal-cell.is-today {
  background: #eff6ff;
}
.user-cal-cell.is-today .user-cal-cell__day {
  background: var(--user-primary);
  color: #fff;
}
.user-cal-cell.has-event .user-cal-cell__day {
  font-weight: 700;
}
.user-cal-cell__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin: 0;
}
.user-cal-cell__day {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.3rem;
  border-radius: 50%;
  font-size: 0.78rem;
  color: var(--user-text);
}
.user-cal-cell__today {
  font-size: 0.65rem;
  color: var(--user-primary);
  font-weight: 700;
}
.user-cal-cell__more {
  margin: 0;
  font-size: 0.7rem;
  color: var(--user-muted);
}

.user-cal-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.4rem;
  background: var(--user-primary-soft);
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--user-primary);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-cal-event:hover {
  background: #bfdbfe;
  color: var(--user-primary);
}
.user-cal-event__time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.user-cal-event__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.user-cal-upcoming {
  margin-top: 0.5rem;
  background: var(--user-surface);
  border: 1px solid var(--user-border);
  border-radius: 12px;
  padding: 1rem 1.1rem 1.1rem;
}
.user-cal-upcoming h2 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
.user-cal-upcoming h2 i {
  color: var(--user-primary);
}

@media (max-width: 640px) {
  .user-cal-cell {
    min-height: 64px;
    padding: 0.3rem;
  }
  .user-cal-event {
    font-size: 0.65rem;
    padding: 0.15rem 0.3rem;
  }
  .user-cal-cell__day {
    min-width: 1.25rem;
    height: 1.25rem;
    font-size: 0.72rem;
  }
  .user-cal-grid__head {
    font-size: 0.7rem;
  }
}
.advertisement_guide_page {
  padding: calc(80px + 2rem) 0 4rem;
  background: #ffffff;
  min-height: 100vh;
}
.advertisement_guide_page .container {
  width: min(100% - 2rem, 960px);
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}
.advertisement_guide_page .guide-header {
  margin-bottom: 2.5rem;
  padding: 2.5rem 2rem;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  background: #fff;
  color: #0f172a;
  -webkit-box-shadow: 0 1px 4px rgba(15, 30, 55, 0.06);
          box-shadow: 0 1px 4px rgba(15, 30, 55, 0.06);
}
.advertisement_guide_page .guide-eyebrow {
  margin: 0 0 0.75rem;
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.advertisement_guide_page .guide-title {
  margin: 0 0 0.75rem;
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
}
.advertisement_guide_page .guide-title i {
  margin-right: 0.5rem;
  font-size: 1.35em;
}
.advertisement_guide_page .guide-subtitle {
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}
.advertisement_guide_page .guide-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.advertisement_guide_page .section-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #4bb4ff;
  color: #0f172a;
  font-size: 1.35rem;
  font-weight: 700;
}
.advertisement_guide_page .section-title i {
  font-size: 1.35em;
}
.advertisement_guide_page .feature-grid,
.advertisement_guide_page .comparison-grid,
.advertisement_guide_page .terms-grid {
  display: grid;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}
.advertisement_guide_page .feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.advertisement_guide_page .comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.advertisement_guide_page .terms-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.advertisement_guide_page .guide-summary__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 700;
}
.advertisement_guide_page .guide-summary__item i {
  font-size: 1.2em;
}
.advertisement_guide_page .guide-section {
  margin-bottom: 1.5rem;
  padding: 2rem;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0 1px 4px rgba(15, 30, 55, 0.06);
          box-shadow: 0 1px 4px rgba(15, 30, 55, 0.06);
  overflow: hidden;
}
.advertisement_guide_page .section-content {
  color: #475569;
  line-height: 1.75;
  min-width: 0;
}
.advertisement_guide_page .lead {
  margin-bottom: 1.5rem;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 600;
}
.advertisement_guide_page .feature-card,
.advertisement_guide_page .service-card,
.advertisement_guide_page .support-card,
.advertisement_guide_page .term-card {
  min-width: 0;
  height: auto;
  padding: 1.5rem 1.25rem;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: #f8fafc;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.advertisement_guide_page .feature-card:hover,
.advertisement_guide_page .service-card:hover,
.advertisement_guide_page .support-card:hover,
.advertisement_guide_page .term-card:hover {
  border-color: #bfdcff;
  -webkit-box-shadow: 0 8px 20px rgba(15, 30, 55, 0.08);
          box-shadow: 0 8px 20px rgba(15, 30, 55, 0.08);
}
.advertisement_guide_page .feature-card h3,
.advertisement_guide_page .feature-card h4,
.advertisement_guide_page .service-card h3,
.advertisement_guide_page .service-card h4,
.advertisement_guide_page .support-card h3,
.advertisement_guide_page .support-card h4,
.advertisement_guide_page .term-card h3,
.advertisement_guide_page .term-card h4 {
  margin-bottom: 0.65rem;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 700;
}
.advertisement_guide_page .feature-card p,
.advertisement_guide_page .service-card p,
.advertisement_guide_page .support-card p,
.advertisement_guide_page .term-card p {
  margin-bottom: 0;
}
.advertisement_guide_page .feature-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.advertisement_guide_page .feature-card .feature-number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  height: auto;
  margin: 0 0 0.5rem;
  border-radius: 0;
  background: none;
  color: #4bb4ff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.advertisement_guide_page .feature-card .feature-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 0;
  background: none;
  color: #107bdd;
  font-size: 2rem;
  line-height: 1;
}
.advertisement_guide_page .feature-card .feature-icon i {
  background: none;
}
.advertisement_guide_page .service-card {
  background: #fff;
  text-align: left;
}
.advertisement_guide_page .service-card.is-featured {
  border-color: #ffb000;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 176, 0, 0.2);
          box-shadow: inset 0 0 0 1px rgba(255, 176, 0, 0.2);
}
.advertisement_guide_page .service-card .service-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #fff3cd;
  color: #92400e;
  font-size: 0.75rem;
  font-weight: 600;
}
.advertisement_guide_page .service-features,
.advertisement_guide_page .pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
}
.advertisement_guide_page .service-features li,
.advertisement_guide_page .pricing-features li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  padding: 0.45rem 0;
  color: #475569;
}
.advertisement_guide_page .service-features li i,
.advertisement_guide_page .pricing-features li i {
  margin-top: 0.1rem;
  color: #15803d;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.25em;
}
.advertisement_guide_page .step-guide .step-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}
.advertisement_guide_page .step-guide .step-item:last-child {
  margin-bottom: 0;
}
.advertisement_guide_page .step-guide .step-number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #4bb4ff;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.advertisement_guide_page .step-guide .step-content h4 {
  margin: 0 0 0.35rem;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
}
.advertisement_guide_page .step-guide .step-content p {
  margin: 0;
}
.advertisement_guide_page .pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.advertisement_guide_page .pricing-card {
  min-width: 0;
  height: auto;
  padding: 1.5rem;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  background: #fff;
}
.advertisement_guide_page .pricing-card.is-featured {
  border-color: #4bb4ff;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8fcff), to(#fff));
  background: linear-gradient(180deg, #f8fcff 0%, #fff 100%);
}
.advertisement_guide_page .pricing-card h3 {
  margin-bottom: 0.75rem;
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 700;
}
.advertisement_guide_page .price-amount {
  color: #107bdd;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}
.advertisement_guide_page .price-period {
  margin-left: 0.25rem;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
}
.advertisement_guide_page .term-card ul {
  margin: 0;
  padding-left: 1.1rem;
}
.advertisement_guide_page .term-card ul li + li {
  margin-top: 0.35rem;
}
.advertisement_guide_page .faq-accordion .faq-item {
  overflow: hidden;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #fff;
}
.advertisement_guide_page .faq-accordion .faq-item + .faq-item {
  margin-top: 0.75rem;
}
.advertisement_guide_page .faq-accordion .faq-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.1rem;
  border: none;
  background: #fff;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.advertisement_guide_page .faq-accordion .faq-button:hover, .advertisement_guide_page .faq-accordion .faq-button:focus {
  background: #f8fafc;
  outline: none;
}
.advertisement_guide_page .faq-accordion .faq-button.collapsed .faq-icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.advertisement_guide_page .faq-accordion .faq-button:not(.collapsed) .faq-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.advertisement_guide_page .faq-accordion .faq-icon {
  color: #64748b;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.advertisement_guide_page .faq-accordion .faq-content {
  display: none;
  border-top: 1px solid #e2e8f0;
}
.advertisement_guide_page .faq-accordion .faq-content.active {
  display: block;
}
.advertisement_guide_page .faq-accordion .faq-body {
  padding: 0 1.1rem 1rem;
}
.advertisement_guide_page .faq-accordion .faq-answer {
  margin: 0;
  color: #475569;
}
.advertisement_guide_page .contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.advertisement_guide_page .contact-card {
  padding: 1.5rem;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: #f8fafc;
  text-align: center;
}
.advertisement_guide_page .contact-card h3 {
  margin-bottom: 0.5rem;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 700;
}
.advertisement_guide_page .contact-card p {
  margin-bottom: 1rem;
}
.advertisement_guide_page .contact-card .tel {
  display: block;
  margin-bottom: 0.75rem;
  color: #107bdd;
  font-size: 1.75rem;
  font-weight: 600;
  text-decoration: none;
}
.advertisement_guide_page .guide-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 991px) {
  .advertisement_guide_page {
    padding-top: calc(80px + 1.25rem);
  }
  .advertisement_guide_page .guide-header {
    padding: 2rem 1.25rem;
  }
  .advertisement_guide_page .guide-summary {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .advertisement_guide_page .feature-grid,
  .advertisement_guide_page .comparison-grid,
  .advertisement_guide_page .terms-grid,
  .advertisement_guide_page .pricing-grid,
  .advertisement_guide_page .contact-panel {
    grid-template-columns: 1fr;
  }
  .advertisement_guide_page .guide-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .advertisement_guide_page .guide-actions .btn {
    width: 100%;
  }
}

.companies-index-page {
  padding: 0 0 4rem;
  background: #ffffff;
}
.companies-index-page .container {
  width: min(100% - 2rem, 1120px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}
.companies-index-page__grid {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.companies-index-page__item {
  display: block;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.companies-index-page__card {
  width: 100%;
  min-width: 0;
}
.companies-index-page__card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dbe7f1;
  border-radius: 18px;
  background: #fff;
  -webkit-box-shadow: 0 8px 24px rgba(15, 30, 55, 0.06);
          box-shadow: 0 8px 24px rgba(15, 30, 55, 0.06);
  color: inherit;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.companies-index-page__card-link:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 28px rgba(15, 30, 55, 0.1);
          box-shadow: 0 12px 28px rgba(15, 30, 55, 0.1);
  color: inherit;
  text-decoration: none;
}
.companies-index-page__image {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: #eef2f6;
}
.companies-index-page__image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.companies-index-page__image-placeholder {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #e8f4ff;
  color: #107bdd;
  font-size: 1.75rem;
}
.companies-index-page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.35rem;
  padding: 0.9rem 1rem 1rem;
}
.companies-index-page__category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #e8f4ff;
  color: #107bdd;
  font-size: 0.75rem;
  font-weight: 700;
}
.companies-index-page__name {
  margin: 0;
  color: #0a3553;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
.companies-index-page__location, .companies-index-page__text {
  margin: 0;
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.55;
}
.companies-index-page__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.companies-index-page__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 0.15rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #fff7e6;
  color: #9a6700;
  font-size: 0.75rem;
  font-weight: 700;
}
.companies-index-page__empty {
  padding: 4rem 1.5rem;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  background: #fff;
  color: #64748b;
  text-align: center;
}
.companies-index-page__empty i {
  display: block;
  margin-bottom: 0.75rem;
  color: #94a3b8;
  font-size: 2.5rem;
}
.companies-index-page__empty h2 {
  margin: 0 0 0.5rem;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
}
.companies-index-page__empty p {
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .companies-index-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .companies-index-page {
    padding-bottom: 3rem;
  }
  .companies-index-page__grid {
    grid-template-columns: 1fr;
  }
}

body.has-page-visual .companies-index-page {
  padding-top: 0;
}

.registration_guide_page {
  padding: 0 0 4rem;
  background: #ffffff;
  min-height: 100vh;
}
.registration_guide_page .container {
  width: min(100% - 2rem, 960px);
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}
.registration_guide_page .reg-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.5rem auto;
  padding: 0.35rem;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  background: #fff;
  -webkit-box-shadow: 0 1px 4px rgba(15, 30, 55, 0.06);
          box-shadow: 0 1px 4px rgba(15, 30, 55, 0.06);
}
.registration_guide_page .reg-tabs__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.registration_guide_page .reg-tabs__btn i {
  font-size: 1.1em;
}
.registration_guide_page .reg-tabs__btn:hover {
  color: #0f172a;
}
.registration_guide_page .reg-tabs__btn.is-active {
  background: #59cd9d;
  color: #fff;
}
.registration_guide_page .reg-tabs-wrap {
  text-align: center;
}
.registration_guide_page .reg-panel {
  display: none;
}
.registration_guide_page .reg-panel.is-active {
  display: block;
}
.registration_guide_page .guide-header {
  margin-bottom: 2.5rem;
  padding: 2.5rem 2rem;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  background: #fff;
  color: #0f172a;
  -webkit-box-shadow: 0 1px 4px rgba(15, 30, 55, 0.06);
          box-shadow: 0 1px 4px rgba(15, 30, 55, 0.06);
}
.registration_guide_page .guide-subtitle {
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
}
.registration_guide_page .guide-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.registration_guide_page .guide-summary__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 700;
}
.registration_guide_page .guide-summary__item i {
  font-size: 1.2em;
}
.registration_guide_page .guide-section {
  margin-bottom: 1.5rem;
  padding: 2rem;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0 1px 4px rgba(15, 30, 55, 0.06);
          box-shadow: 0 1px 4px rgba(15, 30, 55, 0.06);
  overflow: hidden;
}
.registration_guide_page .guide-section--cta {
  text-align: center;
}
.registration_guide_page .section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.55rem;
  width: 100%;
  margin: 0 0 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid #59cd9d;
  color: #0f172a;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
}
.registration_guide_page .section-title i {
  font-size: 1.35em;
  color: #59cd9d;
}
.registration_guide_page .section-content {
  width: 100%;
  min-width: 0;
  color: #475569;
  line-height: 1.75;
}
.registration_guide_page .lead {
  margin-bottom: 1.5rem;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 600;
}
.registration_guide_page .comparison-grid,
.registration_guide_page .step-columns {
  display: grid;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}
.registration_guide_page .comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.registration_guide_page .step-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.registration_guide_page .member-card,
.registration_guide_page .benefit-card,
.registration_guide_page .pricing-card,
.registration_guide_page .step-column {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 1.5rem 1.25rem;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: #f8fafc;
  -webkit-box-shadow: 0 1px 2px rgba(15, 30, 55, 0.04);
          box-shadow: 0 1px 2px rgba(15, 30, 55, 0.04);
}
.registration_guide_page .member-card h3,
.registration_guide_page .benefit-card h3,
.registration_guide_page .pricing-card h3,
.registration_guide_page .step-column h3 {
  margin-bottom: 0.65rem;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
}
.registration_guide_page .member-card p,
.registration_guide_page .benefit-card p,
.registration_guide_page .pricing-card p,
.registration_guide_page .step-column p {
  margin-bottom: 0;
}
.registration_guide_page .step-column {
  gap: 0.85rem;
}
.registration_guide_page .member-card .member-card__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.registration_guide_page .member-card .guide-action-btn {
  margin-top: auto;
}
.registration_guide_page .pricing-card {
  text-align: center;
}
.registration_guide_page .pricing-card p {
  margin-top: auto;
}
.registration_guide_page .member-card__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #e8f8f1;
  color: #0f766e;
  font-size: 1.6rem;
}
.registration_guide_page .member-card--company .member-card__icon {
  background: #e8f4ff;
  color: #107bdd;
}
.registration_guide_page .member-card__list {
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
}
.registration_guide_page .member-card__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.45rem;
  padding: 0.35rem 0;
  color: #334155;
}
.registration_guide_page .member-card__list li i {
  margin-top: 0.15rem;
  color: #59cd9d;
}
.registration_guide_page .guide-note {
  margin: 1.25rem 0 0;
  color: #475569;
  text-align: center;
}
.registration_guide_page .step-column__title {
  margin: 0 0 1rem;
  color: #107bdd;
  font-size: 1rem;
  font-weight: 700;
}
.registration_guide_page .step-column__title--company {
  color: #0f766e;
}
.registration_guide_page .step-guide {
  display: grid;
  gap: 0.85rem;
}
.registration_guide_page .step-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.85rem;
}
.registration_guide_page .step-number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2rem;
          flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #59cd9d;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}
.registration_guide_page .step-content h4 {
  margin: 0 0 0.25rem;
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 700;
}
.registration_guide_page .step-content p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
}
.registration_guide_page .benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.registration_guide_page .benefit-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.registration_guide_page .benefit-list li:last-child {
  border-bottom: 0;
}
.registration_guide_page .benefit-list li strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #0f172a;
}
.registration_guide_page .benefit-list li span {
  color: #64748b;
  font-size: 0.92rem;
}
.registration_guide_page .pricing-card__amount {
  margin: 0.5rem 0 0.75rem;
  color: #107bdd;
  font-size: 1.5rem;
  font-weight: 600;
}
.registration_guide_page .pricing-card__amount small {
  margin-left: 0.25rem;
  color: #64748b;
  font-size: 0.7em;
  font-weight: 600;
}
.registration_guide_page .faq-list {
  display: grid;
  gap: 0.85rem;
}
.registration_guide_page .faq-item {
  padding: 1rem 1.1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}
.registration_guide_page .faq-item h3 {
  margin: 0 0 0.45rem;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
}
.registration_guide_page .faq-item p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
}
.registration_guide_page .faq-item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.7rem;
}
.registration_guide_page .faq-item__row + .faq-item__row {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px dashed #e2e8f0;
}
.registration_guide_page .faq-item__badge {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.85rem;
          flex: 0 0 1.85rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}
.registration_guide_page .faq-item__badge--q {
  background: #59cd9d;
  color: #fff;
}
.registration_guide_page .faq-item__badge--a {
  background: #e8f4ff;
  color: #107bdd;
  border: 1px solid #cfe4f7;
}
.registration_guide_page .faq-item__question {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  padding-top: 0.25rem;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}
.registration_guide_page .faq-item__answer {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  padding-top: 0.25rem;
  color: #475569;
  font-size: 0.93rem;
  line-height: 1.7;
}
.registration_guide_page .benefit-card--support {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  padding-top: 1.25rem;
}
.registration_guide_page .benefit-card__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.9rem;
  border-radius: 14px;
  background: #e8f8f1;
  color: #0f766e;
  font-size: 1.35rem;
}
.registration_guide_page .comparison-grid--support {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.registration_guide_page .guide-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.registration_guide_page .guide-action-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  min-width: 12rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 991px) {
  .registration_guide_page .comparison-grid,
  .registration_guide_page .step-columns {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .registration_guide_page .guide-header,
  .registration_guide_page .guide-section {
    padding: 1.5rem 1.25rem;
  }
  .registration_guide_page .guide-action-btn {
    width: 100%;
  }
}

body.has-page-visual .registration_guide_page {
  padding-top: 0;
}

.features-index-page {
  padding: 2.5rem 0 4rem;
}
.features-index-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.features-index-page__item {
  list-style: none;
}
.features-index-page__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
          box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.features-index-page__card:hover {
  color: inherit;
  text-decoration: none;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
          box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
}
.features-index-page__card--primary .features-index-page__icon {
  background: #eaf3fb;
  color: #107bdd;
}
.features-index-page__card--primary:hover {
  border-color: rgba(16, 123, 221, 0.45);
}
.features-index-page__card--primary .features-index-page__arrow {
  color: #107bdd;
}
.features-index-page__card--sky .features-index-page__icon {
  background: #f0fdf4;
  color: #22c55e;
}
.features-index-page__card--sky:hover {
  border-color: rgba(34, 197, 94, 0.45);
}
.features-index-page__card--sky .features-index-page__arrow {
  color: #22c55e;
}
.features-index-page__card--sunset .features-index-page__icon {
  background: #fff7ed;
  color: #f97316;
}
.features-index-page__card--sunset:hover {
  border-color: rgba(249, 115, 22, 0.45);
}
.features-index-page__card--sunset .features-index-page__arrow {
  color: #f97316;
}
.features-index-page__card--rose .features-index-page__icon {
  background: #fff1f2;
  color: #f43f5e;
}
.features-index-page__card--rose:hover {
  border-color: rgba(244, 63, 94, 0.45);
}
.features-index-page__card--rose .features-index-page__arrow {
  color: #f43f5e;
}
.features-index-page__card--violet .features-index-page__icon {
  background: #f5f3ff;
  color: #8b5cf6;
}
.features-index-page__card--violet:hover {
  border-color: rgba(139, 92, 246, 0.45);
}
.features-index-page__card--violet .features-index-page__arrow {
  color: #8b5cf6;
}
.features-index-page__card--neutral .features-index-page__icon {
  background: #f8fafc;
  color: #475569;
}
.features-index-page__card--neutral:hover {
  border-color: rgba(71, 85, 105, 0.45);
}
.features-index-page__card--neutral .features-index-page__arrow {
  color: #475569;
}
.features-index-page__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eaf3fb;
  color: #107bdd;
  font-size: 1.6rem;
}
.features-index-page__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.features-index-page__name {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}
.features-index-page__description {
  margin: 0 0 0.4rem;
  color: #4b5563;
  font-size: 0.85rem;
  line-height: 1.55;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.features-index-page__count {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
}
.features-index-page__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 1.1rem;
  color: #107bdd;
}
.features-index-page__empty {
  padding: 3rem 1rem;
  text-align: center;
  color: #64748b;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
}
.features-index-page__empty i {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  color: #94a3b8;
}
@media screen and (max-width: 767px) {
  .features-index-page {
    padding: 1.5rem 0 3rem;
  }
  .features-index-page__grid {
    grid-template-columns: 1fr;
  }
}

.feature-show-page {
  padding: 1.5rem 0 4rem;
}
.feature-show-page__toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.feature-show-page__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: #475569;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
.feature-show-page__back:hover {
  color: #107bdd;
  text-decoration: none;
}
.feature-show-page__chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #eaf3fb;
  color: #0c66bb;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid #cfe2f5;
}
.feature-show-page__chip i {
  font-size: 0.95rem;
}
.feature-show-page__chip--primary {
  background: #eaf3fb;
  color: #107bdd;
  border-color: rgba(16, 123, 221, 0.35);
}
.feature-show-page__chip--primary i {
  color: #107bdd;
}
.feature-show-page__chip--sky {
  background: #f0fdf4;
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.35);
}
.feature-show-page__chip--sky i {
  color: #22c55e;
}
.feature-show-page__chip--sunset {
  background: #fff7ed;
  color: #c2410c;
  border-color: rgba(249, 115, 22, 0.35);
}
.feature-show-page__chip--sunset i {
  color: #f97316;
}
.feature-show-page__chip--rose {
  background: #fff1f2;
  color: #be123c;
  border-color: rgba(244, 63, 94, 0.35);
}
.feature-show-page__chip--rose i {
  color: #f43f5e;
}
.feature-show-page__chip--violet {
  background: #f5f3ff;
  color: #6d28d9;
  border-color: rgba(139, 92, 246, 0.35);
}
.feature-show-page__chip--violet i {
  color: #8b5cf6;
}
.feature-show-page__chip--neutral {
  background: #f8fafc;
  color: #1f2937;
  border-color: rgba(71, 85, 105, 0.35);
}
.feature-show-page__chip--neutral i {
  color: #475569;
}
.feature-show-page__count {
  margin: 0 0 1rem;
  color: #475569;
  font-size: 0.9rem;
}
.feature-show-page__count strong {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
}
.feature-show-page__empty {
  padding: 3rem 1rem;
  text-align: center;
  color: #64748b;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
}
.feature-show-page__empty i {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  color: #94a3b8;
}
.feature-show-page__empty p {
  margin: 0 0 0.75rem;
}
.feature-show-page__empty-action {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.feature-show-page__empty-action:hover {
  background: #f1f5f9;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .feature-show-page {
    padding: 1rem 0 3rem;
  }
  .feature-show-page__toolbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.joblist-feature-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.45rem;
}
.joblist-feature-tag-list__item {
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.joblist-feature-tag-list__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.joblist-feature-tag-list__input:checked + .joblist-feature-tag-list__label {
  background: #107bdd;
  border-color: #107bdd;
  color: #fff;
}
.joblist-feature-tag-list__input:focus-visible + .joblist-feature-tag-list__label {
  outline: 2px solid rgba(16, 123, 221, 0.45);
  outline-offset: 2px;
}
.joblist-feature-tag-list__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 0.85rem;
  font-weight: 600;
  -webkit-transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.joblist-feature-tag-list__label i {
  font-size: 0.95rem;
}

.login-page {
  padding: 4rem 0 5rem;
  min-height: calc(100vh - 80px);
}
.login-page__container {
  max-width: 960px;
}
.login-page__header {
  margin-bottom: 2.5rem;
  text-align: center;
}
.login-page__eyebrow {
  margin: 0 0 0.5rem;
  color: #22c55e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.login-page__heading {
  margin: 0 0 0.85rem;
  color: #0f172a;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.35;
}
.login-page__lead {
  margin: 0 auto;
  max-width: 600px;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.7;
}
.login-page__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  min-width: 0;
}
.login-page__footer {
  margin-top: 2.5rem;
  text-align: center;
}
.login-page__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  -webkit-transition: background 0.15s ease, color 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease;
}
.login-page__back:hover {
  background: #f1f5f9;
  color: #0f172a;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .login-page {
    padding: 2.5rem 0 3rem;
  }
  .login-page__grid {
    grid-template-columns: 1fr;
  }
  .login-page__heading {
    font-size: 1.45rem;
  }
}

.auth-card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: none;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #ffffff;
  -webkit-box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
          box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  text-align: left;
}
.auth-card *,
.auth-card *::before,
.auth-card *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.auth-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
          box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}
.auth-card--user {
  border-top: 4px solid #107bdd;
}
.auth-card--company {
  border-top: 4px solid #22c55e;
}
.auth-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.auth-card__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  font-size: 1.55rem;
}
.auth-card--user .auth-card__icon {
  background: #e8f4ff;
  color: #107bdd;
}
.auth-card--company .auth-card__icon {
  background: #f0fdf4;
  color: #15803d;
}
.auth-card__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #64748b;
}
.auth-card__title {
  margin: 0;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
}
.auth-card__features {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.auth-card__features li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.45rem;
  padding: 0.45rem 0;
  color: #334155;
  font-size: 0.93rem;
  line-height: 1.55;
  border-bottom: 1px dashed #eef2f7;
}
.auth-card__features li:last-child {
  border-bottom: 0;
}
.auth-card__features li i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.1rem;
          flex: 0 0 1.1rem;
  margin-top: 0.15rem;
  font-size: 1.05rem;
}
.auth-card__features li strong {
  color: #0f172a;
}
.auth-card--user .auth-card__features li i {
  color: #107bdd;
}
.auth-card--company .auth-card__features li i {
  color: #22c55e;
}
.auth-card__actions {
  display: grid;
  gap: 0.55rem;
  margin-top: auto;
  margin-bottom: 1rem;
}
.auth-card__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  -webkit-transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
  cursor: pointer;
}
.auth-card__btn i {
  font-size: 1.1em;
}
.auth-card__btn:hover {
  text-decoration: none;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.auth-card__btn--primary {
  background: #107bdd;
  color: #fff;
  border: 1px solid #107bdd;
}
.auth-card__btn--primary:hover {
  background: #0c66bb;
  color: #fff;
}
.auth-card__btn--outline {
  background: #fff;
  color: #107bdd;
  border: 1px solid #107bdd;
}
.auth-card__btn--outline:hover {
  background: #eaf3fb;
  color: #107bdd;
}
.auth-card__btn--success {
  background: #22c55e;
  color: #fff;
  border: 1px solid #22c55e;
}
.auth-card__btn--success:hover {
  background: #16a34a;
  color: #fff;
}
.auth-card__btn--outline-success {
  background: #fff;
  color: #15803d;
  border: 1px solid #22c55e;
}
.auth-card__btn--outline-success:hover {
  background: #f0fdf4;
  color: #15803d;
}
.auth-card__note {
  margin: 0;
  min-height: 2.75rem;
  color: #64748b;
  font-size: 0.83rem;
  line-height: 1.65;
  text-align: center;
}
.auth-card__note strong {
  color: #0f172a;
}
.auth-card__inline-link {
  color: #22c55e;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-card__inline-link:hover {
  color: #15803d;
}

.auth-form-page {
  padding: 3rem 0 5rem;
  min-height: calc(100vh - 80px);
  background: -webkit-gradient(linear, left top, left bottom, from(#f8fafc), color-stop(60%, #ffffff));
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%);
}
.auth-form-page__container {
  width: min(100% - 2rem, 580px);
  margin: 0 auto;
}
.auth-form-page__header {
  margin-bottom: 1.75rem;
  text-align: center;
}
.auth-form-page__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.auth-form-page__heading {
  margin: 0 0 0.7rem;
  color: #0f172a;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.35;
}
.auth-form-page__lead {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .auth-form-page {
    padding: 2rem 0 3rem;
  }
  .auth-form-page__heading {
    font-size: 1.35rem;
  }
}

.auth-form {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #ffffff;
  -webkit-box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
          box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}
.auth-form *,
.auth-form *::before,
.auth-form *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.auth-form--user {
  border-top: 4px solid #107bdd;
}
.auth-form--company {
  border-top: 4px solid #22c55e;
}
.auth-form__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.85rem;
  margin: 0 0 0.5rem;
}
.auth-form__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 14px;
  font-size: 1.45rem;
}
.auth-form--user .auth-form__icon {
  background: #e8f4ff;
  color: #107bdd;
}
.auth-form--company .auth-form__icon {
  background: #f0fdf4;
  color: #15803d;
}
.auth-form__head-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.auth-form__label-eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #64748b;
}
.auth-form__head-title {
  margin: 0;
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
}
.auth-form__notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  color: #0f172a;
  font-size: 0.85rem;
  line-height: 1.6;
}
.auth-form__notice i {
  margin-top: 0.1rem;
  font-size: 1rem;
}
.auth-form--user .auth-form__notice {
  background: #eaf3fb;
  color: #0c66bb;
}
.auth-form--user .auth-form__notice i {
  color: #107bdd;
}
.auth-form--company .auth-form__notice {
  background: #f0fdf4;
  color: #14532d;
}
.auth-form--company .auth-form__notice i {
  color: #15803d;
}
.auth-form__errors {
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid #fecaca;
  border-radius: 12px;
  background: #fef2f2;
  color: #991b1b;
  font-size: 0.88rem;
}
.auth-form__errors h4 {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.auth-form__errors ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
}
.auth-form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.auth-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
.auth-form__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 700;
}
.auth-form__label .auth-form__required {
  color: #dc2626;
  font-size: 0.8rem;
}
.auth-form__label .auth-form__optional {
  padding: 0.05rem 0.35rem;
  border-radius: 999px;
  background: #e2e8f0;
  color: #475569;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.auth-form__input-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.auth-form__input-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1rem;
  pointer-events: none;
}
.auth-form__input, .auth-form__input.form-control {
  width: 100%;
  padding: 0.85rem 0.95rem 0.85rem 2.6rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.4;
  -webkit-transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.auth-form__input::-webkit-input-placeholder, .auth-form__input.form-control::-webkit-input-placeholder {
  color: #94a3b8;
}
.auth-form__input::-moz-placeholder, .auth-form__input.form-control::-moz-placeholder {
  color: #94a3b8;
}
.auth-form__input:-ms-input-placeholder, .auth-form__input.form-control:-ms-input-placeholder {
  color: #94a3b8;
}
.auth-form__input::-ms-input-placeholder, .auth-form__input.form-control::-ms-input-placeholder {
  color: #94a3b8;
}
.auth-form__input::placeholder, .auth-form__input.form-control::placeholder {
  color: #94a3b8;
}
.auth-form__input:focus, .auth-form__input.form-control:focus {
  outline: none;
  border-color: #107bdd;
  -webkit-box-shadow: 0 0 0 3px rgba(16, 123, 221, 0.18);
          box-shadow: 0 0 0 3px rgba(16, 123, 221, 0.18);
}
.auth-form--company .auth-form__input:focus {
  border-color: #22c55e;
  -webkit-box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
          box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}
.auth-form__prefix-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  -webkit-transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.auth-form__prefix-input:focus-within {
  border-color: #22c55e;
  -webkit-box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
          box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}
.auth-form__prefix {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.85rem;
  background: #f8fafc;
  color: #64748b;
  font-size: 0.88rem;
  border-right: 1px solid #e2e8f0;
  white-space: nowrap;
}
.auth-form__prefix-input .auth-form__input, .auth-form__prefix-input .auth-form__input.form-control {
  padding-left: 0.95rem;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.auth-form__prefix-input .auth-form__input:focus, .auth-form__prefix-input .auth-form__input.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.auth-form__hint {
  margin: 0;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.55;
}
.auth-form__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.45rem;
  margin: 0.25rem 0;
  color: #334155;
  font-size: 0.85rem;
  line-height: 1.5;
}
.auth-form__check input[type=checkbox] {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  accent-color: #107bdd;
}
.auth-form--company .auth-form__check input[type=checkbox] {
  accent-color: #22c55e;
}
.auth-form__submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.95rem 1rem;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.15s ease, -webkit-transform 0.15s ease;
  transition: background 0.15s ease, -webkit-transform 0.15s ease;
  transition: background 0.15s ease, transform 0.15s ease;
  transition: background 0.15s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
.auth-form__submit:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.auth-form--user .auth-form__submit {
  background: #107bdd;
}
.auth-form--user .auth-form__submit:hover {
  background: #0c66bb;
}
.auth-form--company .auth-form__submit {
  background: #22c55e;
}
.auth-form--company .auth-form__submit:hover {
  background: #16a34a;
}
.auth-form__terms {
  margin: 0;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.65;
  text-align: center;
}
.auth-form__terms a {
  color: #0f172a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-form__terms a:hover {
  opacity: 0.85;
}
.auth-form__divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  margin: 0.4rem 0 0;
  color: #94a3b8;
  font-size: 0.78rem;
}
.auth-form__divider::before, .auth-form__divider::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.auth-form__alt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.55rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  color: #475569;
  font-size: 0.88rem;
}
.auth-form__alt-link {
  color: #107bdd;
  font-weight: 700;
  text-decoration: none;
}
.auth-form__alt-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-form--company .auth-form__alt-link {
  color: #15803d;
}
.auth-form__switch {
  margin: 0;
  text-align: center;
  color: #475569;
  font-size: 0.85rem;
}
.auth-form__switch a {
  color: #0f172a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-form__switch a:hover {
  opacity: 0.85;
}
@media screen and (max-width: 767px) {
  .auth-form {
    padding: 1.5rem 1.25rem 1.25rem;
  }
}

.auth-form-page__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.auth-form-page__back:hover {
  color: #0f172a;
  text-decoration: none;
}

.auth-form-page__back-wrap {
  margin-top: 1.5rem;
  text-align: center;
}

.auth-form-page--user .auth-form-page__eyebrow {
  color: #107bdd;
}

.auth-form-page--company .auth-form-page__eyebrow {
  color: #15803d;
}

.auth-page {
  --auth-primary: #107bdd;
  --auth-primary-dark: #0a5ba7;
  --auth-bg: #f4f8fd;
  --auth-text: #0f3554;
  --auth-muted: #64748b;
  --auth-border: #dbe7f1;
  --auth-radius: 18px;
  min-height: calc(100vh - 80px);
  padding: 5rem 1rem 4rem;
  background: linear-gradient(135deg, #eef5fc 0%, #f7fbff 60%, #ffffff 100%);
  color: var(--auth-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .auth-page {
    min-height: auto;
    padding: 5rem 1rem 3rem;
  }
}
.auth-page__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  -webkit-box-shadow: 0 30px 60px rgba(15, 30, 55, 0.12), 0 2px 6px rgba(15, 30, 55, 0.04);
          box-shadow: 0 30px 60px rgba(15, 30, 55, 0.12), 0 2px 6px rgba(15, 30, 55, 0.04);
}
@media screen and (max-width: 991px) {
  .auth-page__container {
    grid-template-columns: 1fr;
    max-width: 480px;
    border-radius: 20px;
  }
}
.auth-page__aside {
  position: relative;
  padding: 3rem 2.5rem;
  background: radial-gradient(circle at 0% 100%, rgba(16, 123, 221, 0.45) 0%, transparent 55%), linear-gradient(140deg, #0a5fb1 0%, #107bdd 55%, #4bb4ff 100%);
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .auth-page__aside {
    display: none;
  }
}
.auth-page__aside-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.auth-page__brand {
  margin: 0 0 2.5rem;
}
.auth-page__brand-logo {
  display: inline-block;
  height: 34px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.auth-page__aside-title {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.5;
}
.auth-page__aside-text {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.8;
}
.auth-page__aside-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.65rem;
}
.auth-page__aside-points li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
}
.auth-page__aside-points li i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  color: #ffffff;
}
.auth-page__main {
  padding: 3rem 2.5rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .auth-page__main {
    padding: 2rem 1.5rem 2rem;
  }
}
.auth-page__card {
  width: 100%;
}
.auth-page__head {
  margin-bottom: 1.5rem;
  text-align: left;
}
.auth-page__eyebrow {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(16, 123, 221, 0.1);
  color: var(--auth-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.auth-page__title {
  margin: 0 0 0.45rem;
  color: var(--auth-text);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .auth-page__title {
    font-size: 1.45rem;
  }
}
.auth-page__lead {
  margin: 0;
  color: var(--auth-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}
.auth-page__alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid #fecaca;
  border-radius: 12px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.88rem;
  line-height: 1.55;
}
.auth-page__alert i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 1.05rem;
  margin-top: 0.05rem;
}
.auth-page__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.auth-page__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
.auth-page__label {
  color: var(--auth-text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.auth-page__input-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.auth-page__input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--auth-muted);
  font-size: 1.1rem;
  pointer-events: none;
}
.auth-page__input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.5rem;
  border: 1px solid var(--auth-border);
  border-radius: 12px;
  background: #ffffff;
  color: var(--auth-text);
  font-size: 0.95rem;
  line-height: 1.4;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.auth-page__input::-webkit-input-placeholder {
  color: #94a3b8;
}
.auth-page__input::-moz-placeholder {
  color: #94a3b8;
}
.auth-page__input:-ms-input-placeholder {
  color: #94a3b8;
}
.auth-page__input::-ms-input-placeholder {
  color: #94a3b8;
}
.auth-page__input::placeholder {
  color: #94a3b8;
}
.auth-page__input:hover {
  border-color: #cbd5e1;
}
.auth-page__input:focus {
  border-color: var(--auth-primary);
  background-color: #fbfdff;
  outline: none;
  -webkit-box-shadow: 0 0 0 4px rgba(16, 123, 221, 0.12);
          box-shadow: 0 0 0 4px rgba(16, 123, 221, 0.12);
}
.auth-page__remember {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: var(--auth-text);
  font-size: 0.88rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.auth-page__checkbox {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--auth-primary);
}
.auth-page__submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem 1rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--auth-primary) 0%, #0a66b3 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  -webkit-box-shadow: 0 10px 22px rgba(16, 123, 221, 0.22);
          box-shadow: 0 10px 22px rgba(16, 123, 221, 0.22);
  -webkit-transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
}
.auth-page__submit:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 14px 30px rgba(16, 123, 221, 0.28);
          box-shadow: 0 14px 30px rgba(16, 123, 221, 0.28);
  -webkit-filter: brightness(1.04);
          filter: brightness(1.04);
}
.auth-page__submit:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 6px 14px rgba(16, 123, 221, 0.22);
          box-shadow: 0 6px 14px rgba(16, 123, 221, 0.22);
}
.auth-page__sub-link {
  margin: 0.75rem 0 0;
  text-align: right;
  font-size: 0.84rem;
}
.auth-page__sub-link a {
  color: var(--auth-primary);
  text-decoration: none;
}
.auth-page__sub-link a:hover {
  text-decoration: underline;
}
.auth-page__divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin: 1.75rem 0 1.25rem;
  color: #94a3b8;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.auth-page__divider::before, .auth-page__divider::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 1px;
  background: var(--auth-border);
}
.auth-page__signup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.auth-page__signup-lead {
  margin: 0;
  color: var(--auth-muted);
  font-size: 0.85rem;
  text-align: center;
}
.auth-page__signup-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--auth-primary);
  border-radius: 999px;
  background: #ffffff;
  color: var(--auth-primary);
  font-size: 0.95rem;
  font-weight: 700;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.auth-page__signup-btn i {
  font-size: 1.1rem;
}
.auth-page__signup-btn:hover {
  background: var(--auth-primary);
  color: #ffffff;
  -webkit-box-shadow: 0 8px 18px rgba(16, 123, 221, 0.22);
          box-shadow: 0 8px 18px rgba(16, 123, 221, 0.22);
}
.auth-page__footer-links {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--auth-border);
  text-align: center;
  font-size: 0.8rem;
}
.auth-page__footer-links a {
  color: var(--auth-muted);
  text-decoration: none;
}
.auth-page__footer-links a:hover {
  color: var(--auth-primary);
  text-decoration: underline;
}
.auth-page__switch {
  margin: 1.5rem 0 0;
  text-align: center;
  color: var(--auth-muted);
  font-size: 0.82rem;
}
.auth-page__switch a {
  color: var(--auth-primary);
  font-weight: 600;
  text-decoration: none;
}
.auth-page__switch a:hover {
  text-decoration: underline;
}
.auth-page--admin {
  --auth-primary: #1f2937;
  --auth-primary-dark: #0f172a;
  --auth-bg: #0f172a;
  --auth-text: #0f172a;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #334155 100%);
}
.auth-page--admin .auth-page__container {
  -webkit-box-shadow: 0 40px 80px rgba(2, 6, 23, 0.45), 0 4px 12px rgba(2, 6, 23, 0.25);
          box-shadow: 0 40px 80px rgba(2, 6, 23, 0.45), 0 4px 12px rgba(2, 6, 23, 0.25);
}
.auth-page--admin .auth-page__aside {
  background: radial-gradient(circle at 20% 0%, rgba(244, 191, 0, 0.18) 0%, transparent 50%), radial-gradient(circle at 100% 100%, rgba(244, 114, 182, 0.18) 0%, transparent 55%), linear-gradient(150deg, #0f172a 0%, #1e293b 55%, #334155 100%);
  color: #f8fafc;
}
.auth-page--admin .auth-page__aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 12px);
  pointer-events: none;
  opacity: 0.7;
}
.auth-page--admin .auth-page__brand-logo {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.auth-page--admin .auth-page__aside-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #e2e8f0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.auth-page--admin .auth-page__aside-badge i {
  font-size: 0.95rem;
  color: #ffffff;
}
.auth-page--admin .auth-page__aside-title,
.auth-page--admin .auth-page__aside-text,
.auth-page--admin .auth-page__aside-points li {
  color: #e2e8f0;
  position: relative;
  z-index: 1;
}
.auth-page--admin .auth-page__aside-points li i {
  color: #ffffff;
}
.auth-page--admin .auth-page__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  background: #0f172a;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}
.auth-page--admin .auth-page__eyebrow i {
  font-size: 0.95rem;
}
.auth-page--admin .auth-page__title {
  color: #0f172a;
}
.auth-page--admin .auth-page__lead {
  color: #475569;
}
.auth-page--admin .auth-page__submit {
  background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
  color: #ffffff;
  -webkit-box-shadow: 0 14px 26px rgba(15, 23, 42, 0.35);
          box-shadow: 0 14px 26px rgba(15, 23, 42, 0.35);
}
.auth-page--admin .auth-page__submit:hover {
  background: linear-gradient(135deg, #020617 0%, #111827 100%);
  color: #ffffff;
}
.auth-page--admin .auth-page__notice {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.55;
}
.auth-page--admin .auth-page__notice i {
  font-size: 1.05rem;
  margin-top: 1px;
  color: #64748b;
}
.auth-page--admin .auth-page__sub-link a,
.auth-page--admin .auth-page__switch a {
  color: #1f2937;
}
.auth-page--admin .auth-page__sub-link a:hover,
.auth-page--admin .auth-page__switch a:hover {
  color: #0f172a;
}
.auth-page--admin .auth-page__switch {
  color: #f1f5f9;
  opacity: 0.85;
}
.auth-page--admin .auth-page__switch a {
  color: #ffffff;
  text-decoration: underline;
}
.auth-page--admin .auth-page__switch a:hover {
  color: #e2e8f0;
}

.account_edit_page {
  --aep-primary: #107bdd;
  --aep-primary-dark: #0a5fb0;
  --aep-bg: #f5f7fb;
  --aep-card: #ffffff;
  --aep-border: #e2e8f0;
  --aep-text: #1f2937;
  --aep-muted: #64748b;
  --aep-danger: #dc2626;
  --aep-danger-bg: #fef2f2;
  background: var(--aep-bg);
  padding: 32px 0 64px;
  min-height: 100%;
  color: var(--aep-text);
}
.account_edit_page--user {
  --aep-primary: #10b981;
  --aep-primary-dark: #047857;
}
.account_edit_page__header {
  max-width: 1080px;
  margin: 0 auto 28px;
  padding: 0 16px;
}
.account_edit_page__eyebrow {
  color: var(--aep-primary);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.account_edit_page__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.55rem;
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 600;
  color: #0f172a;
}
.account_edit_page__title i {
  color: var(--aep-primary);
  font-size: 1.4em;
}
.account_edit_page__lead {
  margin: 0;
  color: var(--aep-muted);
  font-size: 0.95rem;
}
.account_edit_page__grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.account_edit_page__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.account_edit_page__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.account_edit_page__alert {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.92rem;
}
.account_edit_page__alert p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  margin: 0 0 6px;
  font-weight: 700;
}
.account_edit_page__alert p i {
  font-size: 1.1rem;
}
.account_edit_page__alert ul {
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
}
.account_edit_page__panel {
  background: var(--aep-card);
  border: 1px solid var(--aep-border);
  border-radius: 18px;
  padding: 26px 28px;
  -webkit-box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
          box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}
.account_edit_page__panel-head {
  margin-bottom: 20px;
}
.account_edit_page__panel-head h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}
.account_edit_page__panel-head h2 i {
  color: var(--aep-primary);
  font-size: 1.2em;
}
.account_edit_page__panel-head p {
  margin: 0;
  color: var(--aep-muted);
  font-size: 0.86rem;
}
.account_edit_page__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.account_edit_page__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.account_edit_page__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
}
.account_edit_page__label i {
  color: var(--aep-primary);
  font-size: 1rem;
}
.account_edit_page__required {
  margin-left: 4px;
  padding: 1px 7px;
  border-radius: 999px;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 0.7rem;
  font-weight: 700;
}
.account_edit_page__input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0.95rem;
  background: #fff;
  color: #0f172a;
  -webkit-transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.account_edit_page__input::-webkit-input-placeholder {
  color: #94a3b8;
}
.account_edit_page__input::-moz-placeholder {
  color: #94a3b8;
}
.account_edit_page__input:-ms-input-placeholder {
  color: #94a3b8;
}
.account_edit_page__input::-ms-input-placeholder {
  color: #94a3b8;
}
.account_edit_page__input::placeholder {
  color: #94a3b8;
}
.account_edit_page__input:focus {
  outline: none;
  border-color: var(--aep-primary);
  -webkit-box-shadow: 0 0 0 3px rgba(16, 123, 221, 0.18);
          box-shadow: 0 0 0 3px rgba(16, 123, 221, 0.18);
}
.account_edit_page--user .account_edit_page__input:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
          box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.account_edit_page__hint {
  margin: 4px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  color: var(--aep-muted);
  font-size: 0.78rem;
}
.account_edit_page__hint i {
  font-size: 0.95rem;
}
.account_edit_page__notice {
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 0.86rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
.account_edit_page__notice i {
  font-size: 1rem;
}
.account_edit_page__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.account_edit_page__submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: var(--aep-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: background 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  -webkit-box-shadow: 0 8px 20px rgba(16, 123, 221, 0.22);
          box-shadow: 0 8px 20px rgba(16, 123, 221, 0.22);
}
.account_edit_page__submit:hover {
  background: var(--aep-primary-dark);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.account_edit_page--user .account_edit_page__submit {
  -webkit-box-shadow: 0 8px 20px rgba(16, 185, 129, 0.22);
          box-shadow: 0 8px 20px rgba(16, 185, 129, 0.22);
}
.account_edit_page__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  color: var(--aep-muted);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
}
.account_edit_page__back:hover {
  color: var(--aep-primary);
  text-decoration: underline;
}
.account_edit_page__danger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  background: var(--aep-danger-bg);
  border: 1px solid #fecaca;
  border-radius: 18px;
  padding: 22px 24px;
  -webkit-box-shadow: 0 4px 14px rgba(220, 38, 38, 0.06);
          box-shadow: 0 4px 14px rgba(220, 38, 38, 0.06);
}
.account_edit_page__danger-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.account_edit_page__danger-text h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #991b1b;
}
.account_edit_page__danger-text h3 i {
  font-size: 1.05em;
}
.account_edit_page__danger-text p {
  margin: 0;
  color: #b91c1c;
  font-size: 0.85rem;
  line-height: 1.55;
}
.account_edit_page__danger-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: #fff;
  color: var(--aep-danger);
  border: 1px solid var(--aep-danger);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  -webkit-transition: background 0.15s ease, color 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.account_edit_page__danger-btn:hover {
  background: var(--aep-danger);
  color: #fff;
}
.account_edit_page__aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 96px;
}
.account_edit_page__card {
  background: #fff;
  border: 1px solid var(--aep-border);
  border-radius: 16px;
  padding: 20px 22px;
  -webkit-box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
          box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}
.account_edit_page__card h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  margin: 0 0 10px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
}
.account_edit_page__card h3 i {
  color: var(--aep-primary);
  font-size: 1.05em;
}
.account_edit_page__card p {
  margin: 0 0 10px;
  color: var(--aep-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
.account_edit_page__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.account_edit_page__card ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  color: #334155;
  font-size: 0.85rem;
}
.account_edit_page__card ul li i {
  color: var(--aep-primary);
  font-size: 0.9rem;
}
.account_edit_page__card-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--aep-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  -webkit-transition: background 0.15s ease;
  transition: background 0.15s ease;
}
.account_edit_page__card-btn:hover {
  background: var(--aep-primary-dark);
  text-decoration: none;
}
@media (max-width: 991px) {
  .account_edit_page {
    padding: 24px 0 56px;
  }
  .account_edit_page__grid {
    grid-template-columns: 1fr;
  }
  .account_edit_page__aside {
    position: static;
    top: auto;
  }
}
@media (max-width: 767px) {
  .account_edit_page {
    padding: 18px 0 48px;
  }
  .account_edit_page__header {
    padding: 0 12px;
  }
  .account_edit_page__grid {
    padding: 0 12px;
    gap: 18px;
  }
  .account_edit_page__title {
    font-size: 1.35rem;
  }
  .account_edit_page__lead {
    font-size: 0.88rem;
  }
  .account_edit_page__panel {
    padding: 20px 18px;
    border-radius: 14px;
  }
  .account_edit_page__danger {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 18px;
  }
  .account_edit_page__danger-btn {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .account_edit_page__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .account_edit_page__submit {
    width: 100%;
    text-align: center;
  }
  .account_edit_page__back {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.company-app .account_edit_page,
.user-app .account_edit_page {
  background: transparent;
  padding: 0;
}

.admin-app {
  --admin-bg: #f4f7fb;
  --admin-surface: #ffffff;
  --admin-surface-alt: #f1f5f9;
  --admin-border: #e2e8f0;
  --admin-border-strong: #cbd5e1;
  --admin-text: #0f172a;
  --admin-text-soft: #334155;
  --admin-muted: #64748b;
  --admin-primary: #0f172a;
  --admin-primary-soft: #1e293b;
  --admin-accent: #2563eb;
  --admin-accent-soft: #3b82f6;
  --admin-success: #16a34a;
  --admin-warning: #f59e0b;
  --admin-danger: #dc2626;
  --admin-sidebar-w: 244px;
  --admin-header-h: 60px;
  min-height: 100vh;
  background: var(--admin-bg);
  color: var(--admin-text);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.admin-app * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.admin-app__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--admin-header-h);
  background: #ffffff;
  color: var(--admin-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 18px;
  z-index: 1100;
  -webkit-box-shadow: 0 2px 8px rgba(15, 30, 55, 0.08);
          box-shadow: 0 2px 8px rgba(15, 30, 55, 0.08);
  border-bottom: 1px solid var(--admin-border);
}
.admin-app__header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 12px;
}
.admin-app__brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--admin-text) !important;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none !important;
}
.admin-app__brand i {
  font-size: 1.15rem;
  color: var(--admin-accent);
}
.admin-app__brand img {
  display: block;
  width: auto;
  height: 30px;
  max-height: 30px;
}
.admin-app__brand-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--admin-surface-alt);
  color: var(--admin-muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.admin-app__header-actions {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.admin-app__header-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  color: var(--admin-muted) !important;
  font-size: 0.82rem;
  text-decoration: none !important;
  padding: 6px 10px;
  border-radius: 6px;
  -webkit-transition: background 0.15s ease, color 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease;
}
.admin-app__header-link i {
  font-size: 1rem;
}
.admin-app__header-link:hover {
  background: var(--admin-surface-alt);
  color: var(--admin-text) !important;
}
.admin-app__sidebar-toggle {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: var(--admin-surface-alt);
  border: 1px solid var(--admin-border);
  color: var(--admin-text);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.admin-app__sidebar-toggle i {
  font-size: 1.25rem;
}
.admin-app__sidebar-toggle:hover {
  background: #e2e8f0;
}
.admin-app__user {
  position: relative;
}
.admin-app__user-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--admin-border);
  background: #ffffff;
  color: var(--admin-text);
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.82rem;
  -webkit-transition: background 0.15s ease, border-color 0.15s ease;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.admin-app__user-btn i {
  font-size: 1.1rem;
  color: var(--admin-accent);
}
.admin-app__user-btn:hover {
  background: var(--admin-surface-alt);
  border-color: var(--admin-border-strong);
}
.admin-app__user-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  -webkit-box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
          box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  padding: 8px;
  min-width: 200px;
  display: none;
  z-index: 1200;
}
.admin-app__user-menu.is-open {
  display: block;
}
.admin-app__user-menu a, .admin-app__user-menu button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--admin-text-soft) !important;
  text-decoration: none !important;
  font-size: 0.86rem;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
.admin-app__user-menu a i, .admin-app__user-menu button i {
  font-size: 1rem;
  color: var(--admin-muted);
}
.admin-app__user-menu a:hover, .admin-app__user-menu button:hover {
  background: var(--admin-surface-alt);
  color: var(--admin-text) !important;
}
.admin-app__user-menu .is-danger {
  color: var(--admin-danger) !important;
}
.admin-app__user-menu .is-danger i {
  color: var(--admin-danger);
}
.admin-app__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-top: var(--admin-header-h);
  min-height: 100vh;
}
.admin-app__sidebar {
  position: fixed;
  top: var(--admin-header-h);
  left: 0;
  bottom: 0;
  width: var(--admin-sidebar-w);
  background: #fff;
  border-right: 1px solid var(--admin-border);
  padding: 16px 12px 24px;
  overflow-y: auto;
  z-index: 900;
}
@media (max-width: 991px) {
  .admin-app__sidebar {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
    -webkit-box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  }
  .admin-app__sidebar.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.admin-app__sidebar-section {
  margin-top: 12px;
  padding: 8px 8px 4px;
  color: var(--admin-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.admin-app__sidebar-section:first-child {
  margin-top: 0;
}
.admin-app__sidebar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.admin-app__sidebar-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--admin-text-soft) !important;
  text-decoration: none !important;
  font-size: 0.88rem;
  font-weight: 500;
  -webkit-transition: background 0.15s ease, color 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease;
}
.admin-app__sidebar-nav a i {
  font-size: 1.1rem;
  color: var(--admin-muted);
  width: 1.25rem;
  text-align: center;
}
.admin-app__sidebar-nav a:hover {
  background: var(--admin-surface-alt);
  color: var(--admin-text) !important;
}
.admin-app__sidebar-nav a:hover i {
  color: var(--admin-accent);
}
.admin-app__sidebar-nav a.is-active {
  background: rgba(37, 99, 235, 0.09);
  color: var(--admin-accent) !important;
  font-weight: 700;
}
.admin-app__sidebar-nav a.is-active i {
  color: var(--admin-accent);
}
.admin-app__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 850;
}
.admin-app__backdrop.is-open {
  display: block;
}
.admin-app__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: var(--admin-sidebar-w);
  padding: 24px clamp(16px, 3vw, 32px) 48px;
}
@media (max-width: 991px) {
  .admin-app__main {
    margin-left: 0;
    padding: 18px 16px 36px;
  }
}
.admin-app__page-header {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.admin-app__page-eyebrow {
  margin: 0;
  color: var(--admin-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.admin-app__page-title {
  margin: 4px 0 4px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--admin-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
}
.admin-app__page-title i {
  color: var(--admin-accent);
}
.admin-app__page-lead {
  margin: 0;
  color: var(--admin-muted);
  font-size: 0.9rem;
}
.admin-app__page-actions {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.admin-app__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--admin-border-strong);
  background: #fff;
  color: var(--admin-text-soft);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  -webkit-transition: background 0.15s ease, border 0.15s ease, color 0.15s ease;
  transition: background 0.15s ease, border 0.15s ease, color 0.15s ease;
}
.admin-app__btn i {
  font-size: 1rem;
}
.admin-app__btn:hover {
  background: var(--admin-surface-alt);
  color: var(--admin-text);
}
.admin-app__btn--primary {
  background: var(--admin-accent);
  border-color: var(--admin-accent);
  color: #fff !important;
}
.admin-app__btn--primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
}
.admin-app__btn--dark {
  background: var(--admin-primary);
  border-color: var(--admin-primary);
  color: #fff !important;
}
.admin-app__btn--dark:hover {
  background: #020617;
  border-color: #020617;
  color: #fff;
}
.admin-app__btn--ghost {
  background: transparent;
  color: var(--admin-text-soft);
}
.admin-app__btn--danger {
  background: #fff;
  border-color: var(--admin-danger);
  color: var(--admin-danger);
}
.admin-app__btn--danger:hover {
  background: var(--admin-danger);
  color: #fff;
}
.admin-app__btn--sm {
  padding: 5px 10px;
  font-size: 0.78rem;
}
.admin-app__btn--icon {
  width: 32px;
  height: 32px;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
}
.admin-app__btn--icon i {
  font-size: 1.05rem;
}
.admin-app__btn--icon span.label {
  display: none;
}
.admin-app__card {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: 14px;
  padding: 20px 22px;
  -webkit-box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
          box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}
.admin-app__card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.admin-app__card-head h2, .admin-app__card-head h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--admin-text);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
.admin-app__card-head h2 i, .admin-app__card-head h3 i {
  color: var(--admin-accent);
  font-size: 1.1rem;
}
.admin-app__kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
@media (max-width: 1100px) {
  .admin-app__kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .admin-app__kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
.admin-app__kpi {
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: 14px;
  padding: 16px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.admin-app__kpi:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
          box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}
.admin-app__kpi-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.admin-app__kpi-label {
  color: var(--admin-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.admin-app__kpi-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--admin-accent);
  font-size: 1.15rem;
}
.admin-app__kpi-value {
  margin: 0;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--admin-text);
  line-height: 1.1;
}
.admin-app__kpi-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6px;
  font-size: 0.78rem;
}
.admin-app__kpi-foot .admin-app__kpi-meta {
  color: var(--admin-muted);
}
.admin-app__kpi-foot a {
  color: var(--admin-accent) !important;
  font-weight: 600;
  text-decoration: none !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.admin-app__kpi-foot a i {
  font-size: 0.95rem;
}
.admin-app__kpi-foot a:hover {
  text-decoration: underline !important;
}
.admin-app__kpi--warning .admin-app__kpi-icon {
  background: rgba(245, 158, 11, 0.14);
  color: var(--admin-warning);
}
.admin-app__kpi--success .admin-app__kpi-icon {
  background: rgba(22, 163, 74, 0.14);
  color: var(--admin-success);
}
.admin-app__kpi--danger .admin-app__kpi-icon {
  background: rgba(220, 38, 38, 0.12);
  color: var(--admin-danger);
}
.admin-app__kpi--neutral .admin-app__kpi-icon {
  background: rgba(15, 23, 42, 0.08);
  color: var(--admin-primary);
}
.admin-app__kpi-mini-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 1100px) {
  .admin-app__kpi-mini-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .admin-app__kpi-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}
.admin-app__kpi-mini {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  color: inherit !important;
  text-decoration: none !important;
  -webkit-transition: border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.admin-app__kpi-mini:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
          box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
  border-color: var(--admin-border-strong);
}
.admin-app__kpi-mini__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--admin-accent);
  font-size: 1.1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.admin-app__kpi-mini__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.admin-app__kpi-mini__value {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--admin-text);
}
.admin-app__kpi-mini__label {
  font-size: 0.72rem;
  color: var(--admin-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.admin-app__kpi-mini--warning .admin-app__kpi-mini__icon {
  background: rgba(245, 158, 11, 0.14);
  color: var(--admin-warning);
}
.admin-app__kpi-mini--success .admin-app__kpi-mini__icon {
  background: rgba(22, 163, 74, 0.14);
  color: var(--admin-success);
}
.admin-app__kpi-mini--danger .admin-app__kpi-mini__icon {
  background: rgba(220, 38, 38, 0.12);
  color: var(--admin-danger);
}
.admin-app__kpi-mini--neutral .admin-app__kpi-mini__icon {
  background: rgba(15, 23, 42, 0.08);
  color: var(--admin-primary);
}
.admin-app__quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
@media (max-width: 1100px) {
  .admin-app__quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .admin-app__quick-actions {
    grid-template-columns: 1fr;
  }
}
.admin-app__quick-action {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: 14px;
  text-decoration: none !important;
  color: inherit !important;
  -webkit-transition: border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  overflow: hidden;
}
.admin-app__quick-action::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--admin-accent);
}
.admin-app__quick-action:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
          box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  border-color: var(--admin-border-strong);
}
.admin-app__quick-action__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(37, 99, 235, 0.12);
  color: var(--admin-accent);
  font-size: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.admin-app__quick-action__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.admin-app__quick-action__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--admin-text);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.admin-app__quick-action__sub {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: var(--admin-muted);
}
.admin-app__quick-action__count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--admin-accent);
  font-weight: 700;
  font-size: 0.78rem;
  margin-left: 8px;
}
.admin-app__quick-action__chevron {
  color: var(--admin-muted);
  font-size: 1.15rem;
  -webkit-transition: color 0.15s ease, -webkit-transform 0.15s ease;
  transition: color 0.15s ease, -webkit-transform 0.15s ease;
  transition: transform 0.15s ease, color 0.15s ease;
  transition: transform 0.15s ease, color 0.15s ease, -webkit-transform 0.15s ease;
}
.admin-app__quick-action:hover .admin-app__quick-action__chevron {
  color: var(--admin-accent);
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.admin-app__quick-action--warning::before {
  background: var(--admin-warning);
}
.admin-app__quick-action--warning .admin-app__quick-action__icon {
  background: rgba(245, 158, 11, 0.16);
  color: #b45309;
}
.admin-app__quick-action--warning .admin-app__quick-action__count {
  background: rgba(245, 158, 11, 0.16);
  color: #92400e;
}
.admin-app__quick-action--danger::before {
  background: var(--admin-danger);
}
.admin-app__quick-action--danger .admin-app__quick-action__icon {
  background: rgba(220, 38, 38, 0.14);
  color: #b91c1c;
}
.admin-app__quick-action--danger .admin-app__quick-action__count {
  background: rgba(220, 38, 38, 0.14);
  color: #991b1b;
}
.admin-app__quick-action--success::before {
  background: var(--admin-success);
}
.admin-app__quick-action--success .admin-app__quick-action__icon {
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
}
.admin-app__quick-action--success .admin-app__quick-action__count {
  background: rgba(22, 163, 74, 0.14);
  color: #166534;
}
.admin-app__feature-menu {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 1100px) {
  .admin-app__feature-menu {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .admin-app__feature-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .admin-app__feature-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.admin-app__feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  text-decoration: none !important;
  color: inherit !important;
  text-align: center;
  -webkit-transition: border-color 0.15s ease, background 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, background 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.admin-app__feature-item:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  border-color: var(--admin-accent);
  background: rgba(37, 99, 235, 0.04);
  -webkit-box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
          box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}
.admin-app__feature-item i {
  font-size: 1.55rem;
  color: var(--admin-accent);
}
.admin-app__feature-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--admin-text-soft);
  line-height: 1.3;
}
.admin-app__section {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
@media (max-width: 991px) {
  .admin-app__section {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .admin-app__chart-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}
.admin-app__table-wrap {
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: 14px;
  overflow: hidden;
}
.admin-app__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.admin-app__table th, .admin-app__table td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--admin-border);
}
.admin-app__table thead th {
  background: #fafbfd;
  color: var(--admin-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.admin-app__table tbody tr:hover {
  background: #f8fafc;
}
.admin-app__table tbody tr:last-child td {
  border-bottom: none;
}
.admin-app__table a.admin-app__row-title {
  color: var(--admin-text);
  text-decoration: none !important;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
.admin-app__table a.admin-app__row-title:hover {
  color: var(--admin-accent) !important;
  text-decoration: underline !important;
}
.admin-app__row-actions {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.admin-app__row-actions form {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
}
.admin-app__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.admin-app__badge i {
  font-size: 0.8rem;
}
.admin-app__badge--success {
  background: rgba(22, 163, 74, 0.14);
  color: #166534;
}
.admin-app__badge--warning {
  background: rgba(245, 158, 11, 0.18);
  color: #92400e;
}
.admin-app__badge--danger {
  background: rgba(220, 38, 38, 0.14);
  color: #991b1b;
}
.admin-app__badge--info {
  background: rgba(37, 99, 235, 0.14);
  color: #1d4ed8;
}
.admin-app__badge--dark {
  background: rgba(15, 23, 42, 0.85);
  color: #f1f5f9;
}
.admin-app__empty {
  padding: 32px 18px;
  text-align: center;
  color: var(--admin-muted);
  font-size: 0.9rem;
  border: 1px dashed var(--admin-border-strong);
  border-radius: 12px;
}
.admin-app__activity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.admin-app__activity-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--admin-border);
}
.admin-app__activity-item:last-child {
  border-bottom: none;
}
.admin-app__activity-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--admin-accent);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.admin-app__activity-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.admin-app__activity-body h4 {
  margin: 0 0 2px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--admin-text);
}
.admin-app__activity-body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--admin-muted);
}
.admin-app__activity-time {
  color: var(--admin-muted);
  font-size: 0.75rem;
  white-space: nowrap;
}
.admin-app__flash {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.admin-app__flash i {
  font-size: 1.15rem;
  margin-top: 1px;
}
.admin-app__flash--success {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.admin-app__flash--success i {
  color: #16a34a;
}
.admin-app__flash--alert {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.admin-app__flash--alert i {
  color: #dc2626;
}
.admin-app__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.admin-app__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.admin-app__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--admin-text-soft);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
}
.admin-app__label i {
  color: var(--admin-accent);
}
.admin-app__input, .admin-app__textarea, .admin-app__select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--admin-border-strong);
  border-radius: 8px;
  background: #fff;
  font-size: 0.9rem;
  color: var(--admin-text);
}
.admin-app__input:focus, .admin-app__textarea:focus, .admin-app__select:focus {
  outline: none;
  border-color: var(--admin-accent);
  -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
          box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.admin-app__textarea {
  min-height: 140px;
  resize: vertical;
}
.admin-app__hint {
  color: var(--admin-muted);
  font-size: 0.76rem;
}
.admin-app__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 6px;
}
.admin-app__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
  padding: 0 4px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--admin-border);
  border-radius: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.admin-app__tab {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: none;
  background: transparent;
  color: var(--admin-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
  margin-bottom: -1px;
  border-bottom: 3px solid transparent;
}
.admin-app__tab i {
  font-size: 1rem;
  color: inherit;
}
.admin-app__tab:hover {
  color: var(--admin-text) !important;
}
.admin-app__tab:hover i {
  color: var(--admin-text);
}
.admin-app__tab.is-active {
  color: var(--admin-accent) !important;
  border-bottom-color: var(--admin-accent);
}
.admin-app__tab.is-active i {
  color: var(--admin-accent);
}
.admin-app__tab__count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: var(--admin-text-soft);
  font-size: 0.72rem;
  font-weight: 700;
}
.admin-app__tab.is-active .admin-app__tab__count {
  background: var(--admin-accent);
  color: #fff;
}
.admin-app__type-tabs {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 18px;
  padding: 5px;
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  -webkit-box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
          box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
  gap: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
}
@media (max-width: 767px) {
  .admin-app__type-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.admin-app__type-tab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: none;
  background: transparent;
  color: var(--admin-text-soft);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none !important;
  -webkit-transition: background 0.15s ease, color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
}
.admin-app__type-tab i {
  font-size: 1.15rem;
  color: var(--admin-muted);
}
.admin-app__type-tab:hover {
  background: var(--admin-surface-alt);
  color: var(--admin-text) !important;
}
.admin-app__type-tab:hover i {
  color: var(--admin-text);
}
.admin-app__type-tab.is-active {
  background: var(--admin-accent);
  color: #fff !important;
  -webkit-box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
          box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.admin-app__type-tab.is-active i {
  color: #fff;
}
.admin-app__type-tab.is-active .admin-app__type-tab__count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.admin-app__type-tab__count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: var(--admin-text-soft);
  font-size: 0.76rem;
  font-weight: 700;
}
.admin-app__expiry-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.admin-app__expiry-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: 10px;
  border-left: 3px solid var(--admin-warning);
  text-decoration: none !important;
  -webkit-transition: background 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.admin-app__expiry-row[href] {
  cursor: pointer;
}
.admin-app__expiry-row[href]:hover {
  background: var(--admin-surface-alt);
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
  -webkit-box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
          box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}
.admin-app__expiry-row[href]:hover .admin-app__expiry-body h4 {
  color: var(--admin-accent);
}
.admin-app__expiry-row--danger {
  border-left-color: var(--admin-danger);
}
.admin-app__expiry-row--expired {
  border-left-color: var(--admin-muted);
  opacity: 0.92;
}
@media (max-width: 600px) {
  .admin-app__expiry-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.admin-app__expiry-body {
  min-width: 0;
}
.admin-app__expiry-body h4 {
  margin: 0 0 2px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--admin-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-app__expiry-body p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--admin-muted);
}
.admin-app__expiry-meta {
  text-align: right;
  font-size: 0.8rem;
  color: var(--admin-text-soft);
  white-space: nowrap;
}
.admin-app__expiry-meta strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--admin-text);
}
.admin-app__expiry-meta em {
  font-style: normal;
  color: var(--admin-muted);
  font-size: 0.74rem;
}
.admin-app__expiry-actions {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.admin-app__expiry-actions form {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
}
.admin-app__detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1100px) {
  .admin-app__detail-grid {
    grid-template-columns: 1fr;
  }
}
.admin-app__detail-aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(var(--admin-header-h) + 12px);
}
@media (max-width: 1100px) {
  .admin-app__detail-aside {
    position: static;
  }
}
.admin-app__info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.admin-app__info-list > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid var(--admin-border);
}
.admin-app__info-list > div:last-child {
  border-bottom: none;
}
@media (max-width: 600px) {
  .admin-app__info-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.admin-app__info-list dt {
  color: var(--admin-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}
.admin-app__info-list dd {
  margin: 0;
  font-size: 0.92rem;
  color: var(--admin-text);
  word-break: break-word;
}
.admin-app__stat-row {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--admin-border);
}
.admin-app__stat-row:last-child {
  border-bottom: none;
}
.admin-app__stat-row__label {
  color: var(--admin-muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.admin-app__stat-row__value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--admin-text);
}
.admin-app__stat-row__value em {
  font-style: normal;
  color: var(--admin-muted);
  font-size: 0.78rem;
  font-weight: 600;
  margin-left: 4px;
}
.admin-app__section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--admin-text);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--admin-border);
}
.admin-app__section-title i {
  color: var(--admin-accent);
  font-size: 1rem;
}
.admin-app__form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.admin-app__form-grid--single {
  grid-template-columns: 1fr;
}
@media (max-width: 767px) {
  .admin-app__form-grid {
    grid-template-columns: 1fr;
  }
}
.admin-app__form-grid > .admin-app__field {
  min-width: 0;
}
.admin-app__form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 767px) {
  .admin-app__form-row {
    grid-template-columns: 1fr;
  }
}
.admin-app__field--full {
  grid-column: 1/-1;
}
.admin-app__field-help {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: var(--admin-muted);
  line-height: 1.55;
}
.admin-app__field-help a {
  color: var(--admin-accent);
  text-decoration: underline;
}
.admin-app__field-help code {
  background: var(--admin-surface-alt);
  border: 1px solid var(--admin-border);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.78rem;
}
.admin-app__form-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--admin-border);
}
@media (max-width: 480px) {
  .admin-app__form-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .admin-app__form-footer .admin-app__btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .admin-app__form-footer form {
    width: 100%;
  }
}
.admin-app__inline-check {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: #fff;
  font-size: 0.92rem;
  cursor: pointer;
}
.admin-app__inline-check input[type=checkbox] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.admin-app__prose-box {
  padding: 4px 0 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--admin-text);
  white-space: pre-wrap;
}
.admin-app__check {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--admin-surface-alt);
  border: 1px solid var(--admin-border);
  cursor: pointer;
  font-size: 0.88rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background 0.15s ease, border-color 0.15s ease;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.admin-app__check:hover {
  background: #eef2f7;
}
.admin-app__check input[type=checkbox] {
  margin: 0;
  cursor: pointer;
}
.admin-app__check span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.admin-app__check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  margin-top: 6px;
}
.admin-app__postal-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin-app__image-uploader {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 14px;
  background: var(--admin-surface-alt);
  border-radius: 10px;
  border: 1px dashed var(--admin-border);
}
@media (max-width: 600px) {
  .admin-app__image-uploader {
    grid-template-columns: 1fr;
  }
}
.admin-app__image-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  color: var(--admin-muted);
}
.admin-app__image-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.admin-app__image-thumb--empty {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
}
.admin-app__image-thumb--empty i {
  font-size: 2rem;
  color: var(--admin-muted);
  opacity: 0.6;
}
.admin-app__image-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.admin-app__image-controls input[type=file] {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  font-size: 0.85rem;
  background: #fff;
  cursor: pointer;
}
.admin-app__image-controls input[type=file]::-webkit-file-upload-button {
  margin-right: 12px;
  padding: 6px 12px;
  border: 1px solid var(--admin-border);
  border-radius: 6px;
  background: var(--admin-surface-alt);
  color: var(--admin-text);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
}
.admin-app__image-controls input[type=file]::file-selector-button {
  margin-right: 12px;
  padding: 6px 12px;
  border: 1px solid var(--admin-border);
  border-radius: 6px;
  background: var(--admin-surface-alt);
  color: var(--admin-text);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
}
.admin-app__image-controls .admin-app__hint {
  margin-top: 0;
}
.admin-app__form-errors {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.admin-app__form-errors strong {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #b91c1c;
}
.admin-app__form-errors ul {
  margin: 8px 0 0;
  padding-left: 20px;
}
.admin-app__editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .admin-app__editor {
    grid-template-columns: 1fr;
    padding-bottom: 120px;
  }
}
.admin-app__editor-nav {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.admin-app__editor-body {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 991px) {
  .admin-app__editor-nav {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .admin-app__editor-body {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.admin-app__editor-nav {
  position: sticky;
  top: calc(var(--admin-header-h) + 12px);
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  padding: 10px;
  -webkit-box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
          box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  max-height: calc(100vh - var(--admin-header-h) - 32px);
  overflow-y: auto;
}
@media (max-width: 991px) {
  .admin-app__editor-nav {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
}
.admin-app__editor-nav-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--admin-muted);
  text-transform: uppercase;
  padding: 8px 10px 6px;
  margin: 0;
}
.admin-app__editor-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
@media (max-width: 991px) {
  .admin-app__editor-nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.admin-app__editor-nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--admin-text);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background 0.15s ease, color 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease;
  border: 1px solid transparent;
}
.admin-app__editor-nav-item:hover {
  background: var(--admin-surface-alt);
  color: var(--admin-text);
}
.admin-app__editor-nav-item.is-active {
  background: var(--admin-accent);
  color: #fff;
  font-weight: 700;
}
.admin-app__editor-nav-item.is-active i {
  color: #fff;
}
.admin-app__editor-nav-item i {
  font-size: 1rem;
  width: 18px;
  text-align: center;
  color: var(--admin-muted);
}
.admin-app__editor-section {
  scroll-margin-top: calc(var(--admin-header-h) + 16px);
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  padding: 22px 24px;
  -webkit-box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
          box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.admin-app__editor-section + .admin-app__editor-section {
  margin-top: 18px;
}
@media (max-width: 600px) {
  .admin-app__editor-section {
    padding: 18px 16px;
  }
}
.admin-app__editor-section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--admin-border);
}
.admin-app__editor-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--admin-text);
}
.admin-app__editor-section-title i {
  color: var(--admin-accent);
  font-size: 1.1rem;
}
.admin-app__editor-section-desc {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: var(--admin-muted);
}
.admin-app__editor-subhead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin: 18px 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--admin-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.admin-app__editor-subhead::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: var(--admin-border);
  margin-left: 8px;
}
.admin-app__editor-subhead:first-child {
  margin-top: 0;
}
.admin-app__editor-actionbar {
  position: fixed;
  bottom: 0;
  left: var(--admin-sidebar-w, 240px);
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  border-top: 1px solid var(--admin-border);
  -webkit-box-shadow: 0 -8px 20px rgba(15, 23, 42, 0.06);
          box-shadow: 0 -8px 20px rgba(15, 23, 42, 0.06);
  padding: 12px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
@media (max-width: 991px) {
  .admin-app__editor-actionbar {
    left: 0;
    padding: 10px 16px;
  }
}
.admin-app__editor-actionbar-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.2;
}
.admin-app__editor-actionbar-info strong {
  font-size: 0.88rem;
  color: var(--admin-text);
}
.admin-app__editor-actionbar-info span {
  font-size: 0.75rem;
  color: var(--admin-muted);
}
@media (max-width: 600px) {
  .admin-app__editor-actionbar-info {
    display: none;
  }
}
.admin-app__editor-actionbar-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .admin-app__sidebar-toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.admin-app .container,
.admin-app .container-fluid {
  max-width: 100%;
  padding: 0;
  margin: 0;
  width: 100%;
}
.admin-app .row {
  margin: 0;
}
.admin-app .content-header {
  margin-top: 0;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--admin-border);
  padding-bottom: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin-app .content-header h1, .admin-app .content-header h6, .admin-app .content-header .pageTitle_h6 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  color: var(--admin-text);
}
.admin-app .content-header .header-actions {
  gap: 8px;
}
.admin-app .admin-table {
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.admin-app .admin-table thead th {
  background: #fafbfd;
  color: var(--admin-muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}
.admin-app .btn-primary, .admin-app .btn-success, .admin-app .btn-info, .admin-app .btn-warning, .admin-app .btn-danger, .admin-app .btn-secondary {
  border-radius: 8px;
  font-weight: 600;
}
.admin-app .alert {
  border-radius: 12px;
  border-width: 1px;
}
.admin-app .card {
  border-radius: 14px;
  border: 1px solid var(--admin-border);
  -webkit-box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
          box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}
.admin-app .recommend_job_offerList,
.admin-app .job_offerList,
.admin-app .news_list,
.admin-app .admin-table-wrap {
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 18px;
}

.admin-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--admin-border, #e2e8f0);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.admin-toolbar__search {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 220px;
          flex: 1 1 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 6px 12px;
}
.admin-toolbar__search i {
  color: #94a3b8;
}
.admin-toolbar__search input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  background: transparent;
  font-size: 0.88rem;
  outline: none;
  color: #0f172a;
}

.search-panel {
  margin: 1.5rem 0 2rem;
  padding: 1.5rem 1.75rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #f8fafc;
  -webkit-box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
          box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.search-panel *,
.search-panel *::before,
.search-panel *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.search-panel__head {
  margin-bottom: 1.25rem;
}
.search-panel__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.4rem;
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 600;
}
.search-panel__title i {
  color: #107bdd;
  font-size: 1.2rem;
}
.search-panel__lead {
  margin: 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.6;
}
.search-panel__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.search-panel__row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.search-panel__row--advanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.75rem;
}
.search-panel__field {
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.search-panel__label {
  display: block;
  margin-bottom: 0.3rem;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 700;
}
.search-panel__field .form-control, .search-panel__field .form-select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.92rem;
  line-height: 1.4;
  -webkit-transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.search-panel__field .form-control:focus, .search-panel__field .form-select:focus {
  outline: none;
  border-color: #107bdd;
  -webkit-box-shadow: 0 0 0 3px rgba(16, 123, 221, 0.18);
          box-shadow: 0 0 0 3px rgba(16, 123, 221, 0.18);
}
.search-panel__advanced {
  margin: 0;
}
.search-panel__advanced[open] .search-panel__advanced-indicator {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.search-panel__advanced > summary {
  list-style: none;
  cursor: pointer;
}
.search-panel__advanced > summary::-webkit-details-marker {
  display: none;
}
.search-panel__advanced-toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.85rem;
  font-weight: 700;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background 0.15s ease, border-color 0.15s ease;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.search-panel__advanced-toggle i {
  color: #107bdd;
  font-size: 0.95rem;
}
.search-panel__advanced-toggle:hover {
  background: #eaf3fb;
  border-color: #107bdd;
}
.search-panel__advanced-indicator {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 0.2rem;
  color: #64748b;
  font-size: 0.8rem;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.search-panel__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.25rem;
}
.search-panel__submit {
  min-width: 8rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: #107bdd;
  border: 1px solid #107bdd;
  color: #ffffff;
  font-weight: 600;
}
.search-panel__submit:hover, .search-panel__submit:focus {
  background: #0c66bb;
  border-color: #0c66bb;
  color: #ffffff;
}
.search-panel__reset {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #475569;
  font-weight: 600;
}
.search-panel__reset:hover {
  border-color: #94a3b8;
  color: #0f172a;
  background: #f1f5f9;
}
@media screen and (max-width: 1199px) {
  .search-panel__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .search-panel {
    padding: 1.25rem;
  }
  .search-panel__row, .search-panel__row--advanced {
    grid-template-columns: 1fr;
  }
  .search-panel__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .search-panel__actions .btn {
    width: 100%;
  }
}

.joblist-index-page {
  padding: 1rem 0 4rem;
}
.joblist-index-page .search-results {
  margin: 0 0 1.25rem;
}
.joblist-index-page .search-results h2.h4 {
  margin-bottom: 0.5rem;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 600;
}
.joblist-index-page .search-results p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}
.joblist-index-page .search-results .highlight-keyword {
  padding: 0.05rem 0.4rem;
  border-radius: 999px;
  background: #eaf3fb;
  color: #107bdd;
  font-weight: 700;
}

.oneday-index-page {
  padding: 0 0 5rem;
}
.oneday-index-page__company-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 1.5rem 0 1rem;
}
.oneday-index-page__result-head {
  margin-bottom: 1rem;
}
.oneday-index-page__result-count {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
}
.oneday-index-page__result-count strong {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 600;
}
.oneday-index-page__empty {
  padding: 3rem 1rem;
  text-align: center;
  color: #64748b;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
}
.oneday-index-page__empty i {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
  color: #94a3b8;
}
.oneday-index-page__empty p {
  margin: 0 0 1rem;
}

.oneday-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.oneday-grid__item {
  list-style: none;
  margin: 0;
}
.oneday-grid__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
          box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  color: inherit;
  text-decoration: none;
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.oneday-grid__card:hover {
  color: inherit;
  text-decoration: none;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: rgba(16, 123, 221, 0.35);
  -webkit-box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
          box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}
.oneday-grid__media {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: #f1f5f9;
}
.oneday-grid__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.oneday-grid__image--placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
  color: #94a3b8;
  font-size: 2.4rem;
}
.oneday-grid__card:hover .oneday-grid__image {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.oneday-grid__category {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  -webkit-box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
          box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(4px);
}
.oneday-grid__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.35rem;
  padding: 0.95rem 1rem 1rem;
  min-width: 0;
}
.oneday-grid__date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #eaf3fb;
  color: #0c66bb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.oneday-grid__date i {
  color: #107bdd;
  font-size: 0.95rem;
}
.oneday-grid__title {
  margin: 0.25rem 0 0.15rem;
  color: #0f172a;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.oneday-grid__company, .oneday-grid__location, .oneday-grid__salary, .oneday-grid__excerpt {
  margin: 0;
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.55;
}
.oneday-grid__company, .oneday-grid__location, .oneday-grid__salary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
}
.oneday-grid__company i, .oneday-grid__location i, .oneday-grid__salary i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1rem;
          flex: 0 0 1rem;
  color: #94a3b8;
  font-size: 0.95rem;
}
.oneday-grid__salary {
  color: #0f172a;
}
.oneday-grid__salary strong {
  color: #107bdd;
  font-size: 0.95rem;
  font-weight: 600;
}
.oneday-grid__salary i {
  color: #107bdd;
}
.oneday-grid__excerpt {
  margin-top: 0.15rem;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1199px) {
  .oneday-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .oneday-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
  .oneday-grid__body {
    gap: 0.25rem;
    padding: 0.65rem 0.7rem 0.7rem;
  }
  .oneday-grid__title {
    font-size: 0.88rem;
    line-height: 1.4;
  }
  .oneday-grid__company, .oneday-grid__location, .oneday-grid__salary {
    font-size: 0.74rem;
    gap: 0.3rem;
  }
  .oneday-grid__company i, .oneday-grid__location i, .oneday-grid__salary i {
    font-size: 0.82rem;
  }
  .oneday-grid__salary strong {
    font-size: 0.85rem;
  }
  .oneday-grid__excerpt {
    font-size: 0.72rem;
    line-height: 1.5;
  }
  .oneday-grid__date {
    font-size: 0.7rem;
    padding: 0.22rem 0.55rem;
  }
  .oneday-grid__category {
    font-size: 0.65rem;
    padding: 0.2rem 0.55rem;
  }
}

.legal-page {
  padding: 2rem 0 4rem;
  background: #ffffff;
}
.legal-page__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.82rem;
}
.legal-page__meta span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.legal-page__meta span i {
  color: #107bdd;
}
.legal-page__layout {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 260px minmax(0, 1fr);
}
.legal-page__toc {
  position: sticky;
  top: 1.5rem;
  -ms-flex-item-align: start;
      align-self: start;
  padding: 1.1rem 1.2rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
  -webkit-box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
          box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.legal-page__toc-title {
  margin: 0 0 0.6rem;
  color: #0f172a;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
.legal-page__toc-title i {
  color: #107bdd;
}
.legal-page__toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: legal-toc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.15rem;
}
.legal-page__toc-item {
  counter-increment: legal-toc;
}
.legal-page__toc-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.45;
  text-decoration: none;
  -webkit-transition: background 0.15s ease, color 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease;
}
.legal-page__toc-link::before {
  content: counter(legal-toc, decimal-leading-zero);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.4rem;
          flex: 0 0 1.4rem;
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.78rem;
  line-height: inherit;
}
.legal-page__toc-link:hover, .legal-page__toc-link:focus-visible {
  background: #eaf3fb;
  color: #0c66bb;
  text-decoration: none;
}
.legal-page__article {
  padding: 1.75rem 2rem 2rem;
  min-width: 0;
}
.legal-page__section {
  padding: 1.25rem 0 1.4rem;
  border-bottom: 1px dashed #e2e8f0;
  scroll-margin-top: 1.25rem;
}
.legal-page__section:first-of-type {
  padding-top: 0;
}
.legal-page__section:last-of-type {
  border-bottom: 0;
  padding-bottom: 0.5rem;
}
.legal-page__section-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.65rem;
  margin: 0 0 0.7rem;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.legal-page__section-heading .legal-page__num {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 1.85rem;
  height: 1.85rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: #eaf3fb;
  color: #0c66bb;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.legal-page__section p {
  margin: 0 0 0.6rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.85;
}
.legal-page__section p:last-child {
  margin-bottom: 0;
}
.legal-page__section ul {
  margin: 0.25rem 0 0.4rem;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.35rem;
}
.legal-page__section ul li {
  position: relative;
  padding: 0.1rem 0 0.1rem 1.4rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.75;
}
.legal-page__section ul li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.35rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}
.legal-page__contact {
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #14532d;
  font-size: 0.9rem;
  line-height: 1.7;
}
.legal-page__contact strong {
  color: #15803d;
  font-weight: 600;
}
.legal-page__contact a {
  color: #107bdd;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page__contact a:hover {
  color: #0c66bb;
}
.legal-page__signoff {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  color: #94a3b8;
  font-size: 0.85rem;
  text-align: right;
}
.legal-page__signoff p {
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .legal-page__layout {
    grid-template-columns: 1fr;
  }
  .legal-page__toc {
    position: static;
    top: auto;
  }
  .legal-page__article {
    padding: 1.4rem 1.4rem 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .legal-page__article {
    padding: 1.1rem 1.1rem 1.3rem;
    border-radius: 14px;
  }
  .legal-page__section-heading {
    font-size: 0.98rem;
    gap: 0.5rem;
  }
  .legal-page__section-heading .legal-page__num {
    min-width: 1.65rem;
    height: 1.65rem;
    font-size: 0.72rem;
  }
}

.joblist-show-page {
  padding: calc(88px + 1.5rem) 0 4rem;
  background: #ffffff;
  color: #0f172a;
}
.joblist-show-page *,
.joblist-show-page *::before,
.joblist-show-page *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.joblist-show-page__toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.35rem;
  margin: 0 0 1.25rem;
  color: #64748b;
  font-size: 0.82rem;
}
.joblist-show-page__toolbar a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  color: #475569;
  text-decoration: none;
  font-weight: 600;
}
.joblist-show-page__toolbar a:hover {
  color: #107bdd;
}
.joblist-show-page__toolbar > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  color: #94a3b8;
}
.joblist-show-page__toolbar > span::before {
  content: "\f133";
  font-family: "Line Awesome Free";
  font-weight: 600;
  color: #cbd5e1;
}
.joblist-show-page__media {
  margin: 0 0 1.25rem;
}
.joblist-show-page__media-main {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 18px;
  background: #f1f5f9;
}
.joblist-show-page__media-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.joblist-show-page__media-placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
  color: #94a3b8;
  font-size: 3rem;
}
.joblist-show-page__media-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.55rem;
  margin: 0.7rem 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.joblist-show-page__media-thumb {
  width: 84px;
  height: 60px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
}
.joblist-show-page__media-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.joblist-show-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin: 0 0 1.75rem;
}
.joblist-show-page__headline {
  min-width: 0;
}
.joblist-show-page__company-name {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.35rem;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}
.joblist-show-page__company-name i {
  color: #94a3b8;
}
.joblist-show-page__company-name:hover {
  color: #107bdd;
}
.joblist-show-page__title {
  margin: 0 0 0.75rem;
  color: #0f172a;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
}
.joblist-show-page__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
}
.joblist-show-page__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  border: 1px solid currentColor;
  white-space: nowrap;
}
.joblist-show-page__badge--category {
  color: #15803d;
  background: rgba(34, 197, 94, 0.08);
}
.joblist-show-page__badge--employment {
  color: #107bdd;
  background: rgba(16, 123, 221, 0.08);
}
.joblist-show-page__badge--benefit {
  color: #c2410c;
  background: rgba(249, 115, 22, 0.08);
}
.joblist-show-page__badge--feature {
  color: #6d28d9;
  background: rgba(139, 92, 246, 0.1);
}
.joblist-show-page__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.45rem;
  margin: 0;
}
.joblist-show-page__meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
}
.joblist-show-page__meta-row i {
  color: #107bdd;
  width: 1.1rem;
  text-align: center;
}
.joblist-show-page__meta-salary {
  color: #0f172a;
}
.joblist-show-page__meta-salary strong {
  color: #107bdd;
  font-size: 1.25rem;
  font-weight: 600;
}
.joblist-show-page__meta-salary span {
  color: #64748b;
  font-weight: 600;
  font-size: 0.85rem;
}
.joblist-show-page__apply {
  position: sticky;
  top: 1.5rem;
  padding: 1.1rem 1.1rem 1.2rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  -webkit-box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
          box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.55rem;
}
.joblist-show-page__apply-favorite {
  margin: 0;
}
.joblist-show-page__apply-favorite .favorite-btn-form {
  margin: 0;
  width: 100%;
}
.joblist-show-page__apply-favorite .favorite-btn {
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.9rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.45rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
  line-height: 1.2;
  -webkit-transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.joblist-show-page__apply-favorite .favorite-btn i {
  color: #94a3b8;
  font-size: 1.15rem;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
.joblist-show-page__apply-favorite .favorite-btn .las.la-heart {
  color: #ef4444;
}
.joblist-show-page__apply-favorite .favorite-btn:hover {
  border-color: #ef4444;
  background: #fff5f5;
  color: #ef4444;
}
.joblist-show-page__apply-favorite .favorite-btn:hover i {
  color: #ef4444;
}
.joblist-show-page__apply-favorite .favorite-btn--active, .joblist-show-page__apply-favorite .favorite-btn.favorited {
  border-color: #ef4444;
  color: #ef4444;
  background: #fff5f5;
}
.joblist-show-page__apply-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-align: center;
}
.joblist-show-page__apply-btn--primary {
  background: #22c55e;
  color: #ffffff;
  border: 1px solid #22c55e;
}
.joblist-show-page__apply-btn--primary:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
  text-decoration: none;
}
.joblist-show-page__apply-btn--outline {
  background: #ffffff;
  color: #107bdd;
  border: 1px solid #107bdd;
}
.joblist-show-page__apply-btn--outline:hover {
  background: #eaf3fb;
  color: #0c66bb;
  text-decoration: none;
}
.joblist-show-page__section {
  margin: 0 0 2rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
          box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}
.joblist-show-page__section-title {
  margin: 0 0 0.85rem;
  padding: 0 0 0.55rem;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 2px solid #eaf3fb;
  position: relative;
}
.joblist-show-page__section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 36px;
  height: 2px;
  background: #107bdd;
}
.joblist-show-page__prose {
  margin: 0;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.85;
}
.joblist-show-page__prose p {
  margin: 0 0 0.6rem;
}
.joblist-show-page__prose p:last-child {
  margin-bottom: 0;
}
.joblist-show-page__points {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.joblist-show-page__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.55rem;
  padding: 1.1rem 0.45rem 0.95rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  text-align: center;
  min-width: 0;
}
.joblist-show-page__point i {
  width: 56px;
  height: 56px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: #eaf3fb;
  color: #107bdd;
  font-size: 1.7rem;
}
.joblist-show-page__point span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  line-height: 1.4;
  word-break: break-word;
}
.joblist-show-page__detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.25rem;
  margin: 0;
}
.joblist-show-page__detail-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.9rem;
}
.joblist-show-page__detail-table th,
.joblist-show-page__detail-table td {
  padding: 0.7rem 0.95rem;
  vertical-align: top;
  border-bottom: 1px solid #e2e8f0;
  line-height: 1.7;
}
.joblist-show-page__detail-table th {
  width: 32%;
  color: #475569;
  font-weight: 700;
  background: #f8fafc;
  text-align: left;
}
.joblist-show-page__detail-table td {
  color: #0f172a;
}
.joblist-show-page__detail-table tr:last-child th,
.joblist-show-page__detail-table tr:last-child td {
  border-bottom: 0;
}
.joblist-show-page__map {
  position: relative;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  aspect-ratio: 4/5;
  -ms-flex-item-align: start;
      align-self: start;
}
.joblist-show-page__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.joblist-show-page__map-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.4rem;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 700;
}
.joblist-show-page__map-label i {
  color: #107bdd;
}
.joblist-show-page__company {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.joblist-show-page__company-thumb {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.joblist-show-page__company-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.joblist-show-page__company-thumb i {
  color: #94a3b8;
  font-size: 2rem;
}
.joblist-show-page__company-body {
  min-width: 0;
}
.joblist-show-page__company-body h3 {
  margin: 0 0 0.25rem;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
}
.joblist-show-page__company-body p {
  margin: 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.6;
}
.joblist-show-page__company-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  margin-top: 0.45rem;
  color: #107bdd;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}
.joblist-show-page__company-link:hover {
  color: #0c66bb;
  text-decoration: none;
}
.joblist-show-page__benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.joblist-show-page__benefits li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #f0fdf4;
  color: #15803d;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.joblist-show-page__benefits li::before {
  content: "\f00c";
  font-family: "Line Awesome Free";
  font-weight: 600;
}
.joblist-show-page__feature-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.5rem 0 0;
}
.joblist-show-page__feature-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #eaf3fb;
  color: #0c66bb;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #cfe2f5;
}
.joblist-show-page__feature-link:hover {
  background: #d6e8f7;
  text-decoration: none;
}
@media screen and (max-width: 1399px) {
  .joblist-show-page__intro {
    grid-template-columns: minmax(0, 1fr) 250px;
  }
  .joblist-show-page__detail-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}
@media screen and (max-width: 1199px) {
  .joblist-show-page__intro, .joblist-show-page__detail-grid {
    grid-template-columns: 1fr;
  }
  .joblist-show-page__apply {
    position: static;
  }
  .joblist-show-page__points {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .joblist-show-page {
    padding: calc(88px + 0.75rem) 0 3rem;
  }
  .joblist-show-page__title {
    font-size: 1.35rem;
  }
  .joblist-show-page__section {
    padding: 1.1rem 1.1rem;
    border-radius: 12px;
  }
  .joblist-show-page__points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .joblist-show-page__point i {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
  .joblist-show-page__detail-table th, .joblist-show-page__detail-table td {
    padding: 0.55rem 0.7rem;
    font-size: 0.85rem;
  }
  .joblist-show-page__detail-table th {
    width: 38%;
  }
}

.oneday-show-page {
  padding: calc(88px + 1.5rem) 0 4rem;
  background: #ffffff;
  color: #0f172a;
}
.oneday-show-page *,
.oneday-show-page *::before,
.oneday-show-page *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.oneday-show-page__toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.35rem;
  margin: 0 0 1.25rem;
  color: #64748b;
  font-size: 0.82rem;
}
.oneday-show-page__toolbar a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  color: #475569;
  text-decoration: none;
  font-weight: 600;
}
.oneday-show-page__toolbar a:hover {
  color: #107bdd;
}
.oneday-show-page__toolbar > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  color: #94a3b8;
}
.oneday-show-page__toolbar > span::before {
  content: "\f133";
  font-family: "Line Awesome Free";
  font-weight: 600;
  color: #cbd5e1;
}
.oneday-show-page__media {
  margin: 0 0 1.25rem;
}
.oneday-show-page__media-main {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 18px;
  background: #f1f5f9;
}
.oneday-show-page__media-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.oneday-show-page__media-placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
  color: #94a3b8;
  font-size: 3rem;
}
.oneday-show-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin: 0 0 1.75rem;
}
.oneday-show-page__headline {
  min-width: 0;
}
.oneday-show-page__company-name {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.35rem;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}
.oneday-show-page__company-name i {
  color: #94a3b8;
}
.oneday-show-page__company-name:hover {
  color: #107bdd;
}
.oneday-show-page__title {
  margin: 0 0 0.75rem;
  color: #0f172a;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
}
.oneday-show-page__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
}
.oneday-show-page__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  border: 1px solid currentColor;
  white-space: nowrap;
}
.oneday-show-page__badge--spot {
  color: #c2410c;
  background: rgba(249, 115, 22, 0.08);
}
.oneday-show-page__badge--category {
  color: #15803d;
  background: rgba(34, 197, 94, 0.08);
}
.oneday-show-page__badge--date {
  color: #107bdd;
  background: rgba(16, 123, 221, 0.08);
}
.oneday-show-page__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.45rem;
  margin: 0;
}
.oneday-show-page__meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
}
.oneday-show-page__meta-row i {
  color: #107bdd;
  width: 1.1rem;
  text-align: center;
}
.oneday-show-page__meta-salary {
  color: #0f172a;
}
.oneday-show-page__meta-salary strong {
  color: #107bdd;
  font-size: 1.25rem;
  font-weight: 600;
}
.oneday-show-page__meta-salary span {
  color: #64748b;
  font-weight: 600;
  font-size: 0.85rem;
}
.oneday-show-page__apply {
  position: sticky;
  top: 1.5rem;
  padding: 1.1rem 1.1rem 1.2rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  -webkit-box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
          box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.55rem;
}
.oneday-show-page__apply-note {
  margin: 0;
  color: #475569;
  font-size: 0.78rem;
  line-height: 1.55;
}
.oneday-show-page__apply-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  -webkit-transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.oneday-show-page__apply-btn--primary {
  background: #22c55e;
  color: #ffffff;
  border: 1px solid #22c55e;
}
.oneday-show-page__apply-btn--primary:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
  text-decoration: none;
}
.oneday-show-page__apply-btn--outline {
  background: #ffffff;
  color: #107bdd;
  border: 1px solid #107bdd;
}
.oneday-show-page__apply-btn--outline:hover {
  background: #eaf3fb;
  color: #0c66bb;
  text-decoration: none;
}
.oneday-show-page__section {
  margin: 0 0 2rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
          box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}
.oneday-show-page__section-title {
  margin: 0 0 0.85rem;
  padding: 0 0 0.55rem;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 2px solid #eaf3fb;
  position: relative;
}
.oneday-show-page__section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 36px;
  height: 2px;
  background: #107bdd;
}
.oneday-show-page__prose {
  margin: 0;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.85;
}
.oneday-show-page__prose p {
  margin: 0 0 0.6rem;
}
.oneday-show-page__prose p:last-child {
  margin-bottom: 0;
}
.oneday-show-page__detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.25rem;
  margin: 0;
}
.oneday-show-page__detail-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.9rem;
}
.oneday-show-page__detail-table th,
.oneday-show-page__detail-table td {
  padding: 0.7rem 0.95rem;
  vertical-align: top;
  border-bottom: 1px solid #e2e8f0;
  line-height: 1.7;
}
.oneday-show-page__detail-table th {
  width: 32%;
  color: #475569;
  font-weight: 700;
  background: #f8fafc;
  text-align: left;
}
.oneday-show-page__detail-table td {
  color: #0f172a;
}
.oneday-show-page__detail-table tr:last-child th,
.oneday-show-page__detail-table tr:last-child td {
  border-bottom: 0;
}
.oneday-show-page__map {
  position: relative;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  aspect-ratio: 4/5;
  -ms-flex-item-align: start;
      align-self: start;
}
.oneday-show-page__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.oneday-show-page__map-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.4rem;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 700;
}
.oneday-show-page__map-label i {
  color: #107bdd;
}
.oneday-show-page__company {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.oneday-show-page__company-thumb {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.oneday-show-page__company-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.oneday-show-page__company-thumb i {
  color: #94a3b8;
  font-size: 2rem;
}
.oneday-show-page__company-body {
  min-width: 0;
}
.oneday-show-page__company-body h3 {
  margin: 0 0 0.25rem;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
}
.oneday-show-page__company-body p {
  margin: 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.6;
}
.oneday-show-page__company-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  margin-top: 0.45rem;
  color: #107bdd;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}
.oneday-show-page__company-link:hover {
  color: #0c66bb;
  text-decoration: none;
}
@media screen and (max-width: 1399px) {
  .oneday-show-page__intro {
    grid-template-columns: minmax(0, 1fr) 250px;
  }
  .oneday-show-page__detail-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}
@media screen and (max-width: 1199px) {
  .oneday-show-page__intro, .oneday-show-page__detail-grid {
    grid-template-columns: 1fr;
  }
  .oneday-show-page__apply {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .oneday-show-page {
    padding: calc(88px + 0.75rem) 0 3rem;
  }
  .oneday-show-page__title {
    font-size: 1.35rem;
  }
  .oneday-show-page__section {
    padding: 1.1rem 1.1rem;
    border-radius: 12px;
  }
  .oneday-show-page__detail-table th, .oneday-show-page__detail-table td {
    padding: 0.55rem 0.7rem;
    font-size: 0.85rem;
  }
  .oneday-show-page__detail-table th {
    width: 38%;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Zen Kaku Gothic New";
  font-size: 1rem;
  line-height: 1.5;
  color: #343a40;
  margin: 0;
  padding: 0;
  background: #ffffff;
  background-size: cover;
  position: relative;
  letter-spacing: 0.03em;
  height: 100%;
  font-weight: 500;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #343a40;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  text-decoration: none;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.btn:hover {
  text-decoration: none;
}
.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  background-color: rgb(0, 104.55, 216.75);
  border-color: rgb(0, 98.4, 204);
}
.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.btn-warning {
  color: #343a40;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}
.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.25rem;
}
.card-title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 500;
}
.card-text {
  margin-bottom: 0;
  color: #6c757d;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #343a40;
  background-color: transparent;
  border-collapse: collapse;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
  background-color: #f8f9fa;
  font-weight: 500;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.table-hover tbody tr:hover {
  color: #343a40;
  background-color: rgba(0, 0, 0, 0.075);
}

.form-label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control, .form-select {
  display: block;
  width: 90%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.form-control:focus, .form-select:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mt-3 {
  margin-top: 1rem;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeaa7;
}
.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}/*# sourceMappingURL=style.css.map */
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
