@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  font-family: "Space Grotesk", serif;
}

.container footer .nav .nav-item .nav-link {
  color: #667085;
  text-decoration: none;
}
.container footer .nav .nav-item .nav-link:hover {
  color: #FF7D29;
}
.container footer .nav p {
  text-align: center;
  color: rgb(121, 10, 10);
}

.header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.header .scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: #FF7D29;
  width: 0%;
  z-index: 2000;
  transition: width 0.2s ease-out;
}

body {
  padding-top: 70px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  padding: 0 20px;
  position: relative;
}
.navbar__burger {
  display: none;
  cursor: pointer;
  width: 24px;
  height: 18px;
  z-index: 2000;
}
.navbar__burger span {
  display: block;
  height: 2px;
  background-color: #344054;
  margin-bottom: 4px;
  border-radius: 2px;
}
.navbar__logo img {
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.navbar__links {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.navbar__links li {
  margin: 0 15px;
}
.navbar__links li a {
  text-decoration: none;
  font-size: 16px;
  color: #344054;
  transition: color 0.2s ease;
}
.navbar__links li a:hover {
  color: #FF7D29;
}

.create-button {
  border: 1px solid #221F20;
  padding: 8px 15px;
  border-radius: 10px;
  color: #221F20;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.create-button:hover {
  border: 1px solid #FF7D29;
  background: #FF7D29;
  color: #221F20;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 15px;
  }
  .navbar__burger {
    display: block;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 20001;
  }
  .navbar__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2001;
  }
  .navbar__links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    z-index: 2000;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .navbar__links.active {
    transform: translateX(0);
    opacity: 1;
  }
  .navbar__links li {
    width: 100%;
    border-bottom: 1px solid #e4e7ec;
  }
  .navbar__links li:last-child {
    border-bottom: none;
  }
  .navbar__links li a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.25rem 0;
    font-size: 1.25rem;
    color: #344054;
  }
  .create-button {
    display: none;
  }
  .navbar__links.active + .create-button {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    padding: 12px 0;
    border-radius: 30px;
    font-size: 16px;
    text-align: center;
    background: #FF7D29;
    color: #fff;
    border: none;
    z-index: 2000;
  }
}
.hero-section {
  background-color: #f7f7f7;
  overflow-x: hidden;
}
.hero-section .hero-text {
  padding: 0;
}
.hero-section .hero-text h1 {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.2;
}
.hero-section .hero-text .text-prime {
  color: #FF7D29;
}
.hero-section .hero-text p {
  font-size: clamp(16px, 3vw, 20px);
  color: #989eac;
}
.hero-section .form-control {
  border: 1px solid #f3f3f3;
  border-radius: 0;
  height: 60px;
  padding-left: 45px;
}
.hero-section .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 1px #FF7D29;
}
.hero-section .form-control-left {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.hero-section .icon-input {
  position: relative;
}
.hero-section .icon-input .input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #a9a9a9;
  width: 20px;
  height: 20px;
}
.hero-section .btn-primary {
  height: 60px;
  border-radius: 0px 10px 10px 0px;
  background: #FF7D29;
  border: none;
}
.hero-section .btn-primary:hover {
  background-color: #ff6705;
}
@media (max-width: 576px) {
  .hero-section .form-control,
  .hero-section .form-control-left, .hero-section .btn-primary {
    border-radius: 10px !important;
  }
}

.vacancies {
  background-color: #fdfdfd;
  overflow-x: hidden;
}
.vacancies .section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1d364d;
  margin: 0;
}
.vacancies .see-all {
  color: #667085;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 16px;
}
.vacancies .see-all:hover {
  color: #FF7D29;
}
@media (max-width: 576px) {
  .vacancies .row.align-items-center.justify-content-between.mb-4 {
    flex-direction: column !important;
    justify-content: center !important;
  }
  .vacancies .row.align-items-center.justify-content-between.mb-4 .col-auto {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
}
.vacancies .card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-radius: 10px;
  border: none;
  position: relative;
}
.vacancies .card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #FF7D29;
  border-radius: 9999px;
  opacity: 0;
  transition: opacity 0.2s;
}
.vacancies .card:hover::after {
  opacity: 1;
}
.vacancies .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.vacancies .card .card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  background-color: white;
  padding: 10px 0;
  border: none;
}
.vacancies .card .card-header .company-logo {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-right: 1rem;
}
.vacancies .card .card-header .company-name {
  color: #333;
  text-decoration: none;
  font-weight: 400;
}
.vacancies .card .position {
  color: #000000;
  font-size: 1.3rem;
}
.vacancies .card .description {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}
.vacancies .card .card-footer {
  background: transparent;
  border-top: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.vacancies .card .card-footer .salary {
  color: #222;
  font-weight: 500;
}
.vacancies .card .card-footer .details-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #212529;
  color: #212529;
  border-radius: 10px;
  text-decoration: none;
}
.vacancies .card .card-footer .details-btn:hover {
  background: #FF7D29;
  border: none;
  color: white;
}

.categories-section {
  overflow-x: hidden;
  background-color: #fdfdfd;
}
.categories-section .container {
  /* --- Карточки категорий --- */
}
.categories-section .container .section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1d364d;
  margin: 0;
}
.categories-section .container .see-all {
  color: #667085;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 16px;
}
.categories-section .container .see-all:hover {
  color: #FF7D29;
}
@media (max-width: 576px) {
  .categories-section .container .row.align-items-center.justify-content-between.mb-4 {
    flex-direction: column !important;
    justify-content: center !important;
  }
  .categories-section .container .row.align-items-center.justify-content-between.mb-4 .col-auto {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
}
.categories-section .container .link {
  text-decoration: none;
}
.categories-section .container .link .category-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
  display: flex;
  justify-content: space-between;
  position: relative;
  /* Псевдоэлемент для синих полосок внизу */
}
.categories-section .container .link .category-card .card_left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.categories-section .container .link .category-card .card_left svg {
  width: 36px;
  height: 36px;
  padding: 5px;
  color: #FF7D29;
}
.categories-section .container .link .category-card .card_left h3 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  color: #212529;
}
.categories-section .container .link .category-card span {
  font-size: 14px;
  color: #1d364d;
  line-height: 3;
}
.categories-section .container .link .category-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #FF7D29;
  border-radius: 9999px; /* или 2px, если нужно лёгкое скругление */
  opacity: 0;
  transition: opacity 0.2s;
}
.categories-section .container .link .category-card:hover::after {
  opacity: 1;
}
.categories-section .container .link .category-card:hover h3 {
  color: #FF7D29;
}

.ads-slider {
  background-color: #fdfdfd;
}
.ads-slider .banner-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}

.partner-section {
  overflow-x: hidden;
  padding: 15px 0;
  background-color: #fdfdfd;
  /* Правая колонка */
  /* Дополнительные правки для совсем узких экранов */
}
.partner-section .left h1 {
  font-size: clamp(26px, 5vw, 50px);
  font-weight: 700;
  margin-bottom: 16px;
}
.partner-section .left p {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #667085;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .partner-section .left h1,
  .partner-section .left p {
    text-align: center;
  }
}
.partner-section .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* Отдельный блок с описанием */
  /* Инпут */
  /* Кнопка */
}
.partner-section .right .text_p {
  text-align: start;
  margin-bottom: 8px;
}
.partner-section .right .partner-input {
  display: block;
  width: clamp(200px, 100%, 405px);
  height: 60px;
  margin-bottom: 16px;
  padding: 0 16px;
  font-size: 16px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  outline: none;
}
.partner-section .right .partner-button {
  display: block;
  width: clamp(200px, 100%, 405px);
  height: 52px;
  background: #FF7D29;
  color: #fff;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.partner-section .right .partner-button:hover {
  background-color: rgba(255, 128, 43, 0.9333333333);
}
@media (max-width: 576px) {
  .partner-section .right {
    align-items: center;
  }
  .partner-section .right .text_p {
    text-align: center;
  }
}

.instagram-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 1000;
}
.instagram-button a {
  display: block;
  width: 100%;
  height: 100%;
}
.instagram-button a svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  color: #0088cc;
  transition: color 0.2s ease;
}
.instagram-button a svg:hover {
  color: #006699;
}

.vacancy-hero-section {
  padding: 50px;
  background-color: #f7f7f7;
}
.vacancy-hero-section .hero-text {
  padding: 10px;
  text-align: center;
}
.vacancy-hero-section .container {
  padding: 0 15px;
}
.vacancy-hero-section form .filtr {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #FF7D29;
  border: none;
}
.vacancy-hero-section form .filtr:hover, .vacancy-hero-section form .filtr:active {
  background: #FF7D29;
  color: #fdfdfd;
}
.vacancy-hero-section form .row-inputs {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  margin: 0 -8px;
}
.vacancy-hero-section form .row-inputs.expanded {
  max-height: 600px;
  opacity: 1;
}
.vacancy-hero-section form .row-inputs .icon-input {
  padding: 0 8px;
  margin: 1% 0;
  position: relative;
}
.vacancy-hero-section form .row-inputs .icon-input .input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.vacancy-hero-section form .row-inputs .icon-input input,
.vacancy-hero-section form .row-inputs .icon-input select {
  width: 100%;
  height: 60px;
  padding-left: 45px;
  border-radius: 10px !important;
  border: 1px solid #dee2e6;
  background-color: #fff;
  font-size: 1rem;
}
.vacancy-hero-section form .row-inputs .icon-input select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,            <svg xmlns='http://www.w3.org/2000/svg' width='16' height='16'>              <path fill='%236c757d' d='M4 6l4 4 4-4z'/>            </svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}
.vacancy-hero-section form .row.g-2 {
  margin: 0 -8px;
}
.vacancy-hero-section form .row.g-2 .icon-input-search {
  padding: 0 8px;
  margin: 5px 0;
  position: relative;
}
.vacancy-hero-section form .row.g-2 .icon-input-search .input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.vacancy-hero-section form .row.g-2 .icon-input-search input {
  width: 100%;
  height: 60px;
  padding-left: 45px;
  border-radius: 10px !important;
  border: 1px solid #dee2e6;
  font-size: 1rem;
}
.vacancy-hero-section form .row.g-2 button {
  margin: 20px 8px;
  height: 55px;
  border-radius: 10px !important;
  border: none;
  background: #FF7D29;
  color: #fdfdfd;
}
.vacancy-hero-section form .row.g-2 button:hover {
  background-color: #FF7D29;
  color: #fdfdfd;
}
@media (min-width: 768px) {
  .vacancy-hero-section .hero-text {
    text-align: start;
  }
  .vacancy-hero-section .container {
    padding: 0 30px;
  }
  .vacancy-hero-section form .row-inputs {
    margin: 0 -15px;
  }
  .vacancy-hero-section form .row-inputs .icon-input {
    padding: 0 15px;
  }
  .vacancy-hero-section form .row-inputs .icon-input .input-icon {
    left: 25px;
  }
  .vacancy-hero-section form .row-inputs .icon-input input,
  .vacancy-hero-section form .row-inputs .icon-input select {
    padding-left: 50px;
    height: 60px;
  }
  .vacancy-hero-section form .row.g-2 {
    margin: 0 -15px;
  }
  .vacancy-hero-section form .row.g-2 .icon-input-search {
    padding: 0 15px;
    margin: 20px 0;
  }
  .vacancy-hero-section form .row.g-2 .icon-input-search .input-icon {
    left: 25px;
  }
  .vacancy-hero-section form .row.g-2 .icon-input-search input {
    padding-left: 50px;
    height: 60px;
  }
  .vacancy-hero-section form .row.g-2 button {
    margin: 20px 15px;
    height: 60px;
  }
}

.pagination-container .btn-primary {
  border: none;
  background: none;
  color: #1E3069;
  font-weight: 800;
}
.pagination-container .btn-primary:hover, .pagination-container .btn-primary:focus {
  border: none;
  background: none;
  color: #1E3069;
}
.pagination-container .btn-outline-primary {
  color: #1E3069 !important;
  border: none;
}
.pagination-container .btn-outline-primary:hover, .pagination-container .btn-outline-primary:focus {
  border: none;
  background: none;
}
.pagination-container .btn-outline-secondary.disabled {
  color: #6c757d;
  border: none;
}

.job-listing .job-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.job-listing .job-card__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.job-listing .job-card__logo {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.job-listing .job-card__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.job-listing .job-card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.job-listing .job-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  word-break: break-word;
}
.job-listing .job-card__company {
  font-size: 0.95rem;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.job-listing .job-card__date {
  font-size: 0.85rem;
  color: #999;
  margin: 0;
}
.job-listing .job-card .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}
.job-listing .job-card__views {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: #333;
}
.job-listing .job-card__button {
  background: #FF7D29;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.job-listing .job-card__button:hover {
  background: #ff6e10;
}
@media (min-width: 576px) {
  .job-listing .job-card {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .job-listing .job-card__button {
    padding: 0.75rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .job-listing .job-card {
    flex-direction: row;
    align-items: center;
  }
  .job-listing .job-card__left {
    flex: 1;
  }
  .job-listing .job-card__info {
    margin-right: 1rem;
  }
  .job-listing .job-card .actions {
    width: auto;
    justify-content: flex-end;
  }
  .job-listing .job-card__button {
    flex-shrink: 0;
  }
}

.job-details h4 {
  margin-bottom: 1rem;
  font-size: 20px;
}
.job-details__chips {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.job-details__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 1rem 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  background-color: #fdfdfd;
}
.job-details__chip--location {
  background-color: #FFFEF3;
  color: #D7C11B;
  padding: 1rem;
}
.job-details__chip--status {
  background-color: #F6FAFF;
  color: #FF7D29;
  padding: 1rem;
  border-radius: 0px;
}
.job-details__chip--education {
  background-color: #FFF6F6;
  color: #D84040;
  border-radius: 0px;
  padding: 1rem;
}
.job-details__chip--salary {
  background-color: #F6FFF4;
  color: #3CC227;
  border-radius: 0px;
  padding: 1rem;
}
.job-details__chip--deadline {
  background-color: #fff9e6;
  color: #EFB036;
  padding: 1rem;
  border-radius: 0px 10px 10px 0px;
}
@media (max-width: 576px) {
  .job-details__chips {
    grid-template-columns: 1fr;
  }
  .job-details--deadline {
    background-color: #fff9e6;
    color: #EFB036;
    border: 0.5px solid #EFB036;
    padding: 1rem;
    width: 100%;
  }
}

.job-info {
  padding: 2rem 0;
}
.job-info .job-info__left {
  background-color: #fdfdfd;
}
.job-info .job-info__left__box {
  border-bottom: 1px solid #ddd;
}
.job-info .job-info__left__box:last-child {
  border-bottom: none;
}
.job-info .job-info__left__box h5 {
  margin: 0 0 1rem;
  font-weight: 600;
  font-size: 1.125rem;
}
.job-info .job-info__left__box ul {
  margin: 0;
  padding-left: 1.2rem;
}
.job-info .job-info__left__box li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.job-info .job-info__right {
  display: flex;
  justify-content: flex-end;
}
.job-info .job-info__right img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
@media (max-width: 992px) {
  .job-info .job-info__left {
    margin-bottom: 1.5rem;
  }
}

.similar-vacancies {
  overflow: hidden;
}
.similar-vacancies .section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1d364d;
  margin-bottom: 1rem;
}
.similar-vacancies .slider-container {
  position: relative;
}
.similar-vacancies .slider-viewport {
  overflow: hidden;
  width: 100%;
}
.similar-vacancies .slider-track {
  display: flex;
  transition: transform 0.5s ease;
}
.similar-vacancies .slide {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 8px;
}
@media (min-width: 768px) {
  .similar-vacancies .slide {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}
.similar-vacancies .slide .card {
  width: 100%;
}
.similar-vacancies .slider-btn {
  display: none;
}
.similar-vacancies .slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
}
.similar-vacancies .slider-dots .dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.similar-vacancies .slider-dots .dot.active {
  background: #FF7D29;
}
.similar-vacancies .card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-radius: 10px;
  border: none;
  position: relative;
}
.similar-vacancies .card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #FF7D29;
  border-radius: 9999px;
  opacity: 0;
  transition: opacity 0.2s;
}
.similar-vacancies .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.similar-vacancies .card:hover::after {
  opacity: 1;
}
.similar-vacancies .card:hover h5 {
  color: #FF7D29;
}
.similar-vacancies .card .card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 10px 0;
  background: #fff;
  border: none;
}
.similar-vacancies .card .card-header .company-logo {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-right: 1rem;
}
.similar-vacancies .card .card-header .company-name {
  color: #333;
  font-weight: 400;
}
.similar-vacancies .card .position {
  font-size: 1.3rem;
  color: #000;
}
.similar-vacancies .card .description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}
.similar-vacancies .card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: transparent;
  border-top: none;
}
.similar-vacancies .card .card-footer .salary {
  font-weight: 500;
  color: #222;
}
.similar-vacancies .card .card-footer .details-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #FF7D29;
  border-radius: 10px;
  color: #FF7D29;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.similar-vacancies .card .card-footer .details-btn:hover {
  background: #FF7D29;
  color: #fff;
}

.category-hero-section {
  padding: 20px 0px 10px 0px;
  background-color: #f7f7f7;
}
.category-hero-section .icon-input {
  position: relative;
}
.category-hero-section .icon-input .input-icon {
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
}
.category-hero-section .form-control-category {
  border: 1px solid #f3f3f3;
  border-radius: 15px;
  height: 60px;
  padding-left: 45px;
  width: 100%;
}
.category-hero-section .form-control-category:focus {
  outline: none;
  border-color: #FF7D29;
}

.about-section {
  padding: 2rem 0;
  background-color: #fdfdfd;
}
.about-section__title {
  font-size: 1.75rem; /* ~28px */
  margin-bottom: 1.5rem;
}
.about-section__card {
  background-color: #f7f7f7;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.about-section__card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.about-section__card p {
  margin: 0;
  color: #555;
}
.about-section__content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

.companies-hero-section {
  padding: 20px;
  background-color: #f7f7f7;
}
.companies-hero-section .icon-input {
  position: relative;
}
.companies-hero-section .icon-input .input-icon {
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
}
.companies-hero-section .form-control-category {
  border: 1px solid #f3f3f3;
  border-radius: 15px;
  height: 60px;
  padding-left: 45px;
  width: 100%;
}
.companies-hero-section .form-control-category:focus {
  outline: none;
  border-color: #FF7D29;
}

.company-section {
  overflow-x: hidden;
  background-color: #fdfdfd;
}
.company-section .container {
  padding: 0;
  /* --- Карточки категорий --- */
}
.company-section .container .section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1d364d;
  margin: 0;
}
.company-section .container .see-all {
  color: #667085;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 16px;
}
.company-section .container .see-all:hover {
  color: #FF7D29;
}
@media (max-width: 576px) {
  .company-section .container .row.align-items-center.justify-content-between.mb-4 {
    flex-direction: column !important;
    justify-content: center !important;
  }
  .company-section .container .row.align-items-center.justify-content-between.mb-4 .col-auto {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
}
.company-section .container .link {
  text-decoration: none;
}
.company-section .container .link .company-card {
  background-color: #fdfdfd;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.company-section .container .link .company-card .card_left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.company-section .container .link .company-card .card_left img {
  border-radius: 50px;
  width: 50px;
}
.company-section .container .link .company-card .card_left h3 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  color: #1d364d;
}
.company-section .container .link .company-card span {
  font-size: 14px;
  color: #1d364d;
  line-height: 3;
}
.company-section .container .link .company-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #FF7D29;
  border-radius: 9999px; /* или 2px, если нужно лёгкое скругление */
  opacity: 0;
  transition: opacity 0.2s;
}
.company-section .container .link .company-card:hover::after {
  opacity: 1;
}
.company-section .container .link .company-card:hover h3 {
  color: #FF7D29;
}
.company-section .pagination-container .btn-primary {
  border: none;
  background: none;
  color: #1E3069;
  font-weight: 800;
}
.company-section .pagination-container .btn-primary:hover, .company-section .pagination-container .btn-primary:focus {
  border: none;
  background: none;
  color: #1E3069;
}
.company-section .pagination-container .btn-outline-primary {
  color: #1E3069 !important;
  border: none;
}
.company-section .pagination-container .btn-outline-primary:hover, .company-section .pagination-container .btn-outline-primary:focus {
  border: none;
  background: none;
}
.company-section .pagination-container .btn-outline-secondary.disabled {
  color: #6c757d;
  border: none;
}

instagram-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 1000;
}
instagram-button a {
  display: block;
  width: 100%;
  height: 100%;
}
instagram-button a svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  color: #0088cc;
  transition: color 0.2s ease;
}
instagram-button a svg:hover {
  color: #006699;
}

.company-listing {
  padding: 2rem 0; /* Отступы сверху и снизу секции */
  background-color: #fdfdfd;
}
.company-listing .company-card {
  background-color: #fdfdfd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.company-listing .company-card__left {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.company-listing .company-card__logo {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.37);
}
.company-listing .company-card__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.company-listing .company-card__info {
  display: flex;
  flex-direction: column;
}
.company-listing .company-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.company-listing .company-card__title svg {
  color: #FF7D29;
}
.company-listing .company-card__company, .company-listing .company-card__date {
  font-size: 1rem;
  color: #666;
  margin: 0;
}
.company-listing .company-card__right {
  width: 100%;
  max-width: 450px;
  height: 180px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.company-listing .company-card .company-card__ads {
  width: 100%;
  height: 100%;
}
.company-listing .company-card .company-card__ads img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Обрезка по контейнеру */
  border-radius: 8px;
}
@media (max-width: 992px) {
  .company-listing .company-card {
    flex-direction: column;
    gap: 15px;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .company-listing .company-card {
    align-items: flex-start;
  }
}

.company-section {
  padding: 1rem;
}
.company-section .tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.company-section .tabs .tab-btn {
  padding: 10px 25px;
  border: none;
  background: none;
  font-size: 1rem;
  cursor: pointer;
}
.company-section .tabs .tab-btn.active {
  border-bottom: 2px solid #FF7D29;
  font-weight: 600;
}
.company-section .tab-content p {
  line-height: 25px;
}

.hero-create-section {
  background-color: #f7f7f7;
  overflow-x: hidden;
}
.hero-create-section .hero-text h1 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
.hero-create-section .hero-text .text-prime {
  color: #FF7D29;
}

.job-form {
  padding: 2rem 1rem;
}
.job-form__container {
  max-width: 1200px;
  margin: 0 auto;
}
.job-form__form {
  display: flex;
  flex-direction: column;
}
.job-form__grid {
  display: grid;
  grid-template-columns: 2/2;
  gap: 1rem;
}
.job-form__field {
  display: flex;
  flex-direction: column;
}
.job-form__field--full {
  grid-column: 1/-1;
}
.job-form__field label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.job-form__field input,
.job-form__field select,
.job-form__field textarea {
  border: 1px solid #c0c0c0;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}
.job-form__field textarea {
  resize: vertical;
}
.job-form__submit {
  margin-top: 1.5rem;
  padding: 0.75rem;
  background-color: #FF7D29;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-end;
  min-width: 160px;
}

.field-row input,
.field-row select,
.field-row textarea {
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  background-color: #ffffff;
}

fieldset.module {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

fieldset.module > h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}/*# sourceMappingURL=style.css.map */