/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Ticker */
.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
}
.ticker {
    display: inline-block;
    animation: ticker 35s linear infinite;
}
.ticker-wrap:hover .ticker {
    animation-play-state: paused;
}
@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Line clamp */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.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;
}

/* Article content styling */
.prose-custom p {
    margin-bottom: 1.25rem;
}
.prose-custom h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
    color: #111827;
}
.prose-custom h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 1.25rem 0 0.5rem;
    color: #111827;
}
.prose-custom ul,
.prose-custom ol {
    margin: 0 0 1.25rem 1.5rem;
    list-style: disc;
}
.prose-custom ol {
    list-style: decimal;
}
.prose-custom blockquote {
    border-left: 4px solid #BB0303;
    padding: 0.75rem 1.25rem;
    margin: 0 0 1.25rem;
    background: #faf5f5;
    color: #374151;
    font-style: italic;
}
.prose-custom img {
    border-radius: 0.75rem;
    margin: 0 0 1.25rem;
    max-width: 100%;
    height: auto;
}
.prose-custom a {
    color: #BB0303;
    text-decoration: underline;
}
