html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Pulse dot animation */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}
.pulse-dot {
    animation: pulse-dot 1.4s ease-in-out infinite;
}

/* Prose content styles for blog articles */
.prose-content p {
    margin-bottom: 1.25rem;
    color: #475569;
    line-height: 1.75;
    font-size: 1rem;
}

.prose-content p.lead {
    font-size: 1.125rem;
    color: #334155;
    font-weight: 500;
    margin-bottom: 2rem;
    border-left: 3px solid #14b8a6;
    padding-left: 1rem;
}

.prose-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.prose-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.prose-content ul,
.prose-content ol {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.prose-content ul li,
.prose-content ol li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.prose-content ul li::before {
    content: "\2022";
    color: #14b8a6;
    font-weight: 700;
    position: absolute;
    left: 0;
}

.prose-content ol {
    counter-reset: ol-counter;
}

.prose-content ol li {
    counter-increment: ol-counter;
}

.prose-content ol li::before {
    content: counter(ol-counter) ".";
    color: #14b8a6;
    font-weight: 700;
    position: absolute;
    left: 0;
}

.prose-content strong {
    color: #1e293b;
    font-weight: 700;
}

/* Scrolled navbar state (applied via JS) */
.navbar-scrolled {
    background-color: #fff !important;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    border-bottom: 1px solid #f1f5f9;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.navbar-scrolled .nav-brand {
    color: #0f172a !important;
}

.navbar-scrolled .nav-link {
    color: #475569 !important;
}

.navbar-scrolled .nav-link:hover {
    color: #2dd4bf !important;
}

.navbar-scrolled .nav-login {
    color: #334155 !important;
}

.navbar-scrolled #mobile-menu-toggle {
    color: #334155 !important;
}

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

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

/* WordPress navigation pagination styling */
.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.nav-links a,
.nav-links span {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-links a {
    color: #475569;
    border: 1px solid #e2e8f0;
}

.nav-links a:hover {
    background-color: #14b8a6;
    color: #fff;
    border-color: #14b8a6;
}

.nav-links .current {
    background-color: #14b8a6;
    color: #fff;
}
