.cookie-consent {
  z-index: 10000;
  padding: .75rem var(--page-padding, 3vw);
  background-color: #f3f4ef;
  border-top: 1px solid #191b201a;
  align-items: center;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -2px 20px #0000000d;
}

.cookie-consent__content {
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
}

.cookie-consent__text {
  color: #191b20;
  flex: 1;
  margin: 0;
  font-family: brother-1816, sans-serif;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.4;
}

.cookie-consent__link {
  color: #191b20;
  white-space: nowrap;
  font-weight: 600;
  text-decoration: underline;
  transition: color .3s;
}

.cookie-consent__link:hover {
  color: #c33;
}

.cookie-consent__actions {
  flex-shrink: 0;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.cookie-consent__btn {
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid #0000;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: .4rem 1rem;
  font-family: brother-1816, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  transition: all .3s;
  display: flex;
}

.cookie-consent__btn--accept {
  color: #f3f4ef;
  background-color: #191b20;
  border-color: #191b20;
}

.cookie-consent__btn--accept:hover {
  color: #191b20;
  background-color: #0000;
}

.cookie-consent__btn--reject {
  color: #191b20;
  background-color: #0000;
  border-color: #191b20;
}

.cookie-consent__btn--reject:hover {
  color: #f3f4ef;
  background-color: #191b20;
}

.cookie-consent__btn--settings {
  color: #191b20;
  background-color: #0000;
  border-color: #0000;
  padding: .75rem 1rem;
  text-decoration: underline;
}

.cookie-consent__btn--settings:hover {
  color: #c33;
}

.cookie-settings-modal {
  z-index: 10001;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
  position: fixed;
  inset: 0;
}

.cookie-settings-modal__overlay {
  backdrop-filter: blur(4px);
  background-color: #191b20b3;
  position: absolute;
  inset: 0;
}

.cookie-settings-modal__content {
  background-color: #f3f4ef;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 10px 40px #0003;
}

.cookie-settings-modal__title {
  color: #191b20;
  margin: 0 0 1rem;
  font-family: ivypresto-display, serif;
  font-size: 2rem;
  font-weight: 400;
}

.cookie-settings-modal__description {
  color: #191b20;
  margin: 0 0 2rem;
  font-family: brother-1816, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-settings-modal__options {
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
}

.cookie-option {
  border-top: 1px solid #191b201a;
  padding-top: 1.5rem;
}

.cookie-option:first-child {
  border-top: none;
  padding-top: 0;
}

.cookie-option__label {
  cursor: pointer;
  align-items: flex-start;
  gap: 1rem;
  display: flex;
}

.cookie-option__checkbox {
  cursor: pointer;
  accent-color: #191b20;
  width: 18px;
  height: 18px;
  margin-top: .25rem;
}

.cookie-option__checkbox:disabled {
  cursor: not-allowed;
  opacity: .5;
}

.cookie-option__text {
  flex-direction: column;
  flex: 1;
  gap: .25rem;
  display: flex;
}

.cookie-option__text strong {
  color: #191b20;
  font-family: brother-1816, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.cookie-option__desc {
  color: #191b20b3;
  font-family: brother-1816, sans-serif;
  font-size: 12px;
  line-height: 1.4;
}

.cookie-settings-modal__actions {
  justify-content: flex-end;
  gap: 1rem;
  display: flex;
}

@media screen and (width <= 768px) {
  .cookie-consent {
    padding: 1rem 24px;
  }

  .cookie-consent__content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cookie-consent__text {
    white-space: normal;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.4;
  }

  .cookie-consent__actions {
    flex-direction: column;
    gap: .5rem;
    width: 100%;
  }

  .cookie-consent__btn {
    text-align: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
  }

  .cookie-consent__btn--settings {
    min-height: 44px;
    text-decoration: underline;
  }

  .cookie-settings-modal {
    padding: 1rem;
  }

  .cookie-settings-modal__content {
    padding: 2rem 1.5rem;
  }

  .cookie-settings-modal__actions {
    flex-direction: column;
    gap: .5rem;
    width: 100%;
  }

  .cookie-settings-modal__actions .cookie-consent__btn {
    width: 100%;
  }
}
/*# sourceMappingURL=Personal_Portfolio_2023.0743882d.css.map */
