body {
  word-break: keep-all;
  background-color: #f8f9fa;
}

.page-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100dvh;
  gap: 2rem;
}

.consult-panel {
  display: none;
}
@media (min-width: 992px) {
  .consult-panel {
    display: flex;
    flex-direction: column;
    width: 21.25rem;
    min-height: 100dvh;
    position: sticky;
    top: 0;
    align-self: flex-start;
    padding: 2rem 1.5rem;
    background-color: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  }
}

.consult-panel__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  text-decoration: none;
  color: #343a40;
}
.consult-panel__brand img {
  width: 2.5rem;
}
.consult-panel__brand span {
  font-size: 1.25rem;
  font-weight: bolder;
  letter-spacing: 0.5px;
}

.consult-panel__header {
  margin-bottom: 1.25rem;
}

.consult-panel__badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  margin-bottom: 0.625rem;
  background-color: rgb(227.64, 228.72, 234.48);
  color: #1b2454;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50rem;
  letter-spacing: 0.5px;
}

.consult-panel__title {
  font-size: 1.5rem;
  font-weight: bolder;
  color: #212529;
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.consult-panel__desc {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.6;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.consult-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.consult-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0;
}

.consult-form__input,
.consult-form__select,
.consult-form__textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: #212529;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}
.consult-form__input::placeholder,
.consult-form__select::placeholder,
.consult-form__textarea::placeholder {
  color: #ced4da;
}
.consult-form__input:focus,
.consult-form__select:focus,
.consult-form__textarea:focus {
  background-color: #fff;
  border-color: #1b2454;
  box-shadow: 0 0 0 3px rgba(27, 36, 84, 0.1);
}
.consult-form__input.is-invalid,
.consult-form__select.is-invalid,
.consult-form__textarea.is-invalid {
  border-color: #b94a48;
}

.consult-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%236c757d' d='M12 16L4 8h16z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
  cursor: pointer;
}

.consult-form__textarea {
  resize: vertical;
  min-height: 5rem;
}

.consult-form__agree {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #6c757d;
}
.consult-form__agree input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: #1b2454;
  cursor: pointer;
}
.consult-form__agree label {
  cursor: pointer;
  line-height: 1.5;
}

.consult-form__submit {
  width: 100%;
  padding: 0.8125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background-color: #1b2454;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.5px;
}
.consult-form__submit:hover {
  background-color: rgb(22.95, 30.6, 71.4);
}
.consult-form__submit:active {
  transform: scale(0.98);
}

.consult-form__success {
  display: none;
  text-align: center;
  padding: 1.5rem 0.75rem;
}
.consult-form__success.is-visible {
  display: block;
}
.consult-form__success .consult-form__success-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}
.consult-form__success p {
  font-size: 0.9375rem;
  color: #495057;
  margin: 0;
}

.consult-panel__divider {
  margin: 1.25rem 0;
  border-color: #e9ecef;
}

.consult-panel__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.consult-panel__info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #6c757d;
}
.consult-panel__info-item i {
  font-size: 1rem;
  color: #1b2454;
  flex-shrink: 0;
}

.consult-mobile-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: #fff;
  border-top: 1px solid #e9ecef;
  position: sticky;
  bottom: 0;
  z-index: 100;
}
@media (min-width: 992px) {
  .consult-mobile-bar {
    display: none;
  }
}

.consult-mobile-bar__text {
  flex: 1;
  font-size: 0.8125rem;
  color: #6c757d;
  line-height: 1.4;
}
.consult-mobile-bar__text strong {
  display: block;
  font-size: 0.875rem;
  color: #343a40;
  font-weight: 600;
}

.consult-mobile-bar__btn {
  flex-shrink: 0;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background-color: #1b2454;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.consult-mobile-bar__btn:hover {
  background-color: rgb(22.95, 30.6, 71.4);
  color: #fff;
}

.consult-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.consult-sheet.is-open {
  display: flex;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .consult-sheet {
    display: none !important;
  }
}

.consult-sheet__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.2s ease;
}

.consult-sheet__panel {
  position: relative;
  width: 100%;
  max-height: 90dvh;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 1rem 1rem 0 0;
  padding: 1.5rem 1.25rem;
  animation: slideUp 0.3s ease;
}

.consult-sheet__handle {
  width: 2.5rem;
  height: 0.25rem;
  background-color: #dee2e6;
  border-radius: 50rem;
  margin: 0 auto 1.25rem;
}

.consult-sheet__title {
  font-size: 1.25rem;
  font-weight: bolder;
  margin-bottom: 0.25rem;
}

.consult-sheet__desc {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 1.25rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.app-shell {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 33.75rem;
  min-height: 100dvh;
  background-color: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.app-shell__header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.app-shell__header-name {
  font-size: 1.25rem;
  font-weight: bolder;
  letter-spacing: 0.5px;
}
.app-shell__header-btn {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
}
.app-shell__header-btn svg {
  width: 1rem;
}
.app-shell__hero {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #e9ecef;
}
.app-shell__section {
  padding: 1.25rem 0;
}
.app-shell__section + .app-shell__section {
  border-top: 1px solid #f8f9fa;
}

.section-heading {
  margin-bottom: 1rem;
}
.section-heading__title {
  font-size: 1.25rem;
  font-weight: bolder;
  margin-bottom: 0;
  color: #212529;
}
.section-heading__sub {
  font-size: 0.8125rem;
  color: #6c757d;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.content-list {
  display: grid;
  gap: 1rem;
}
.content-list__item {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #f8f9fa;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.content-list__item:hover {
  background-color: #e9ecef;
}
.content-list__thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  background-color: #dee2e6;
  overflow: hidden;
}
.content-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-list__meta {
  margin-bottom: 0.25rem;
  color: #adb5bd;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.content-list__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #212529;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.content-list__text {
  margin-bottom: 0;
  color: #6c757d;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #1b2454 0%, rgb(21.6, 28.8, 67.2) 100%);
  border-radius: 1rem;
  color: #fff;
}
.cta-strip__body {
  flex: 1;
}
.cta-strip__title {
  font-size: 1.25rem;
  font-weight: bolder;
  margin-bottom: 0.25rem;
}
.cta-strip__text {
  font-size: 0.8125rem;
  opacity: 0.85;
  margin-bottom: 0;
  line-height: 1.5;
}
.cta-strip__actions {
  flex-shrink: 0;
}
.cta-strip__button {
  display: inline-block;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1b2454;
  background-color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.cta-strip__button:hover {
  background-color: #f8f9fa;
  color: #1b2454;
}

/*# sourceMappingURL=site.css.map */
