* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  background: #1f2a44;
  font-family: Georgia, serif;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

.site-header {
  background: rgb(23.0151515152, 31.1818181818, 50.4848484848);
  border-bottom: 3px solid #e8b800;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}
.site-header__logo {
  height: 50px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 6px;
}
.nav__link:hover:not(.nav__link--logout), .nav__link--active {
  background: #e8b800;
  color: #1a1a1a;
}
.nav__link--login {
  background: #e8b800;
  color: #1a1a1a;
  font-weight: bold;
}
.nav__link--logout {
  background: rgb(93, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.nav__link--logout:hover {
  background: red;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.main-content {
  flex: 1;
  max-width: 900px;
  width: 100%;
  margin: 24px auto;
  padding: 0 16px;
  overflow-x: hidden;
}

.card {
  background: #f9e798;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45), 8px 0 20px rgba(0, 0, 0, 0.35), -8px 0 20px rgba(0, 0, 0, 0.35);
  margin-bottom: 16px;
  padding: 28px 24px;
}
.card__title {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.card__text {
  line-height: 1.7;
}
.card--success {
  border-left: 4px solid #27ae60;
}

.form__group {
  margin-bottom: 10px;
}
.form__label {
  font-size: 0.85rem;
  font-weight: bold;
}
.form__input, .form__select, .form__textarea {
  display: block;
  width: 100%;
  margin-top: 4px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  font-family: inherit;
}
.form__textarea {
  resize: vertical;
}
.form__submit {
  background: #e8b800;
  color: #1a1a1a;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.95rem;
}
.form__submit:hover {
  background: rgb(181, 143.5517241379, 0);
}
.form__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.form__char-count {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
}
.form__char-count--over {
  color: #c0392b;
}
.form__warning {
  display: none;
  margin-top: 10px;
  color: #c0392b;
  font-size: 0.85rem;
}
.form__warning--visible {
  display: block;
}
.form__inline {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}
.form__select--small {
  flex: 1;
  padding: 5px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.8rem;
}
.form__save-btn {
  background: #e8b800;
  color: #1a1a1a;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.offer-card {
  background: #f9e798;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45), 8px 0 20px rgba(0, 0, 0, 0.35), -8px 0 20px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.offer-card--clickable {
  cursor: pointer;
}
.offer-card__image {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}
.offer-card__body {
  padding: 14px;
}
.offer-card__title {
  margin-bottom: 6px;
}
.offer-card__text {
  font-size: 0.85rem;
  margin-bottom: 6px;
  line-height: 1.5;
}
.offer-card__original-price {
  color: rgba(0, 0, 0, 0.4);
  margin-left: 6px;
  font-size: 0.85rem;
}
.offer-card__delete {
  display: inline-block;
  margin-top: 6px;
  background: rgb(93, 0, 0);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
}
.offer-card__delete:hover {
  background: red;
}
.offer-card__badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 10px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: bold;
  color: #ffffff;
}
.offer-card__badge--new {
  background: #e8b800;
  color: #1a1a1a;
}
.offer-card__badge--reviewed {
  background: #2980b9;
}
.offer-card__badge--interview {
  background: #8e44ad;
}
.offer-card__badge--rejected {
  background: #c0392b;
}
.offer-card__badge--hired {
  background: #27ae60;
}
.offer-card__badge--read {
  background: #2980b9;
}
.offer-card__badge--done {
  background: #27ae60;
}

.filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.filter__link {
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
.filter__link--active {
  background: #e8b800;
  color: #1a1a1a;
  font-weight: bold;
}

.empty-message {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal--visible {
  display: flex;
}
.modal__box {
  background: #f9e798;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}
.modal__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.modal__file-link {
  background: #1a1a1a;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 4px;
}
.modal__divider {
  margin: 14px 0;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.modal__letter {
  white-space: pre-wrap;
  line-height: 1.7;
}
.modal__email-link {
  color: #1a5276;
}
.modal__name {
  margin: 10px 0 4px;
}

.site-footer {
  background: rgb(23.0151515152, 31.1818181818, 50.4848484848);
  border-top: 3px solid #e8b800;
  color: #ffffff;
  margin-top: auto;
}
.site-footer__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 16px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
}
.site-footer__col p {
  font-size: 0.85rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer__heading {
  font-size: 0.95rem;
  font-family: Arial, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e8b800;
  margin-bottom: 12px;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 14px 16px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: Arial, sans-serif;
}

.hours {
  font-size: 0.85rem;
}
.hours__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.hours__item--today {
  background: rgba(232, 184, 0, 0.12);
  border-radius: 4px;
}
.hours__day {
  min-width: 70px;
  color: rgba(255, 255, 255, 0.8);
}
.hours__day--today {
  color: #e8b800;
  font-weight: bold;
}
.hours__time {
  color: rgba(255, 255, 255, 0.6);
}
.hours__badge {
  font-size: 0.7rem;
  background: #27ae60;
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 99px;
  font-weight: bold;
}

@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .nav-toggle {
    display: flex;
  }
  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgb(38.9848484848, 52.8181818182, 85.5151515152);
    padding: 12px 16px 20px;
    border-bottom: 3px solid #e8b800;
    z-index: 99;
  }
  .nav--open {
    display: flex;
  }
  .nav__link {
    width: 100%;
    padding: 10px 12px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .card {
    padding: 20px 16px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 16px 20px;
  }
}/*# sourceMappingURL=index.css.map */