html {
  scroll-behavior: smooth;
}

body {
  font-family: "Prompt", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

input,
textarea,
select,
button {
  font: inherit;
}

.glass {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
}

.site-header {
  background: rgba(246, 244, 239, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(226, 232, 240, 0.95);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.10);
}

.admin-field {
  width: 100%;
  min-width: 0;
  border: 1px solid rgb(226 232 240);
  border-radius: 0.9rem;
  padding: 0.75rem 0.95rem;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

textarea.admin-field {
  resize: vertical;
  overflow-wrap: anywhere;
}

.admin-field:focus {
  border-color: rgb(15 23 42);
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08);
}

.admin-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgb(51 65 85);
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-content .first-paragraph::first-letter {
  float: left;
  margin: 0.08em 0.16em 0 0;
  color: rgb(225 91 79);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 0.9;
}
