/* No global smooth scroll — it delays page navigations.
   Anchor links use scroll-behavior via JS instead. */

h1 {
    outline: none;
}

/* Gradient hero background */
.hero-gradient {
    background: linear-gradient(135deg, #FFF8F0 0%, #FDDCC4 50%, #FFF8F0 100%);
}

/* Subtle card hover */
.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(92, 32, 24, 0.1);
}

/* Step number circle */
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Blog article prose spacing */
.prose-mfr > *:first-child {
    margin-top: 0;
}

/* Line clamp utility (for blog card excerpts) */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Admin sidebar active state */
.admin-nav-active {
    background-color: #E8793A;
    color: white;
}

/* Admin table striping */
.admin-table tr:nth-child(even) {
    background-color: #FFF8F0;
}
