/*
 * Theme Name: My Timber 2.x Starter Theme
 * Description: Starter Theme to use with Timber
 * Author: Upstatement and YOU!
*/
.site-logo img {
    height: 56px;
    width: auto;
}
.site-logo-footer img {
    height: 60px;
    width: auto;
}
.ticker-track {
    display: inline-block;
    animation: ticker 40s linear infinite;
    will-change: transform;
}

.ticker-track:hover {
    animation-play-state: paused;
}
@keyframes ticker {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}
/* ── Typography ── */
body {
    font-family: 'Noto Sans Devanagari', sans-serif;
    color: #1a1a1a;
    font-size: 18px;
    line-height: 1.6;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

}

/* ── Article content ── */

.ad-slot-header-banner img {
    max-width: 728px;
    max-height: 90px;
    object-fit: contain;
}

.ad-slot-sidebar img {
    width: 100%;
    height: auto;
}

.sticky-ad {
    position: sticky;
    top: 64px;
}
.screen-reader-text {
    overflow: visible !important;
}
#article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
#article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}
#article-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}
#article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}
#article-content a {
    color: #20519e;
    text-decoration: underline;
}
#article-content ul, #article-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
#article-content li {
    margin-bottom: 0.5rem;
}