.audit-entry {
  max-width: 1200px;
  margin: 0 auto;
  background: #05060a;
  border-radius: 18px;
  overflow: hidden;
  color: #FFF;
}
.audit-entry__content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  padding: 2.25rem;
}
@media (max-width: 500px) {
  .audit-entry__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.25rem;
  }
}
.audit-entry__left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.audit-entry__title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.15;
}
.audit-entry__intro {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.45;
  max-width: 560px;
}
.audit-entry__intro p {
  margin: 0 0 1rem;
}
.audit-entry__intro p:last-child {
  margin-bottom: 0;
}
.audit-entry__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.audit-entry__form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: unset;
}
.audit-entry__question {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
}
.audit-entry__select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #FFF;
  padding: 0.5rem 0;
  font-size: 1rem;
  outline: none;
  appearance: none;
  border-radius: 0;
}
.audit-entry__select option {
  background: #11131a;
  color: #FFF;
}
.audit-entry__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 32px;
  border-radius: 6px;
  background: #40348C;
  color: #FFF;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.audit-entry__cta:hover {
  background: #4e41a8;
  transform: translateY(-1px);
}

.paragraph--theme-dark .audit-entry {
  background: #1b1a1a;
  color: #FFF;
}

.paragraph--theme-light .audit-entry {
  background: #FFF;
  color: #1b1a1a;
  box-shadow: inset 0 0 0 1px rgba(27, 26, 26, 0.08);
}
.paragraph--theme-light .audit-entry__intro {
  color: rgba(27, 26, 26, 0.78);
}
.paragraph--theme-light .audit-entry__select {
  border-bottom-color: rgba(27, 26, 26, 0.24);
  color: #1b1a1a;
}
.paragraph--theme-light .audit-entry__select option {
  background: #FFF;
  color: #1b1a1a;
}

/*# sourceMappingURL=audit-entry.css.map */
