@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease-out;
}

.accent-glow {
  color: #eda67b;
  transition: all 0.3s ease;
}

.accent-glow:hover {
  text-shadow: 0 0 8px rgba(237, 166, 123, 0.6),
               0 0 16px rgba(237, 166, 123, 0.4);
}
.btn-glow:hover {
  box-shadow: 0 0 12px rgba(237, 166, 123, 0.5),
              0 0 24px rgba(237, 166, 123, 0.3);
}

/*hover underline animation*/
a {
  position: relative;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #eda67b;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}
/*end hover underline animation*/

/*single page font styling*/
/* Article typography */
.prose {
  color: #d1d5db;
}

.prose h1,
.prose h2,
.prose h3 {
  color: white;
  font-weight: 600;
}

.prose a {
  color: #eda67b;
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}

.prose strong {
  color: white;
}

.prose blockquote {
  border-left: 2px solid #eda67b;
  padding-left: 1rem;
  color: #aaa;
}

/* form polish */
input {
  box-shadow: none;
  border-radius: 0;
}

input:focus {
  box-shadow: 0 10px 30px rgba(237,166,123,0.08);
}

input::placeholder {
  color: #6b7280;
}

/* ===== RESPONSIVE ARTICLE TYPOGRAPHY ===== */

.prose {
  color: #d1d5db;
  line-height: 1.75;
  font-size: 16px; /* mobile base */
  max-width: 100%;
}

/* paragraphs */
.prose p {
  margin-bottom: 1.25rem;
}

/* headings */
.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* responsive heading sizes */
.prose h2 {
  font-size: 1.5rem;
}

.prose h3 {
  font-size: 1.25rem;
}

/* tablet */
@media (min-width: 768px) {
  .prose {
    font-size: 17px;
    line-height: 1.8;
    max-width: 65ch; /* perfect reading width */
  }

  .prose h2 {
    font-size: 1.75rem;
  }

  .prose h3 {
    font-size: 1.4rem;
  }
}

/* desktop */
@media (min-width: 1024px) {
  .prose {
    font-size: 18px;
  }
}

/* strong */
.prose strong {
  color: #ffffff;
}

/* links */
.prose a {
  color: #eda67b;
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}

/* blockquote */
.prose blockquote {
  border-left: 3px solid #eda67b;
  padding-left: 1rem;
  color: #9ca3af;
  font-style: italic;
  margin: 2rem 0;
}

/* lists */
.prose ul,
.prose ol {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

/* images */
.prose img {
  margin: 2rem 0;
  border-radius: 6px;
  width: 100%;
  height: auto;
}

/* spacing system */
.prose > * + * {
  margin-top: 1.2em;
}

/*legal pages*/
/* legal page tweaks */
.prose h2 {
  margin-top: 3rem;
  font-size: 1.6rem;
}

.prose p {
  color: #9ca3af;
}