/*
Theme Name: TM24 News Clone
Author: TM24 News
Description: Exact clone of the tm24news.com design.
Version: 2.0
*/

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f9fafb; /* Light gray background */
}
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}
.ticker {
    display: inline-block;
    animation: ticker 25s linear infinite;
}
@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}
.hero-gradient {
    background: radial-gradient(circle at center, rgba(0,0,0,0.03) 0%, rgba(255,255,255,1) 50%);
}
