/* CSS for views/privacy-policy.ejs */
@import "general.css";

.privacy-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem; /* max-w-screen-xl */
  align-items: center;
  overflow: hidden;
  border-radius: 0.5rem; /* rounded-lg */
  background-color: var(--card-bg);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
}

@media (min-width: 640px) {
  .privacy-container {
    display: flex; /* sm:flex */
  }
}

.privacy-content {
  padding: 2rem; /* p-8 */
  width: 100%;
}

.privacy-title {
  margin-top: 1rem; /* my-4 */
  margin-bottom: 1rem;
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;
  color: var(--title-color);
}

@media (min-width: 640px) {
  .privacy-title {
    font-size: 2.25rem; /* sm:text-4xl */
  }
}

.privacy-highlight {
  color: var(--highlight-color);
}

.privacy-intro {
  line-height: 1.625; /* leading-relaxed */
  color: var(--desc-color);
  margin-bottom: 1rem; /* mb-4 */
}

.privacy-subtitle {
  margin-top: 1.5rem; /* mt-6 */
  margin-bottom: 0.5rem; /* mb-2 */
  font-size: 1.5rem; /* text-2xl */
  font-weight: 600; /* font-semibold */
  color: var(--highlight-color); /* Was indigo-600, keeping colored */
}

.privacy-list {
  list-style-type: disc; /* list-disc */
  list-style-position: inside; /* list-inside */
  color: var(--desc-color);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.privacy-link {
  color: var(--highlight-color);
  text-decoration: underline;
}

.privacy-text {
  color: var(--desc-color);
  margin-bottom: 1rem; /* mb-4 */
}
