@import "tailwindcss";

/* WordPress default post details settings */
.article-content img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    margin-bottom: 24px;
    max-width: 100%;
    height: auto;
}

.article-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 32px;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
    border-left: 4px solid var(--primary-color);
    padding-left: 12px;
}

.article-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
}

body.dark .article-content h2,
body.dark .article-content h3 {
    color: var(--text-dark);
}

.article-content p {
    margin-bottom: 18px;
    line-height: 1.75;
}

/* Custom scrolling list animation */
.ticker-slider {
    display: inline-block;
    padding-left: 100%;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.animate-scroll-left {
    animation: scroll-left 35s linear infinite;
}

.animate-scroll-left:hover {
    animation-play-state: paused;
}

/* Scrollbar customizations */
.scrollbar-none::-webkit-scrollbar {
    display: none;
}
.scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
