/**
 * Alez Core — استایل خبر متمرکز (تیکر + کادر).
 */

/* تیکر: خط متن متحرک */
.alez-ticker{display:flex;align-items:stretch;background:#111;color:#fff;font-size:13.5px;overflow:hidden;direction:rtl;}
.alez-ticker__label{flex:0 0 auto;background:var(--alez-main,#d81f1c);color:#fff;font-weight:800;
	display:flex;align-items:center;padding:0 14px;white-space:nowrap;}
.alez-ticker__viewport{flex:1;overflow:hidden;position:relative;}
.alez-ticker__track{display:inline-flex;gap:40px;white-space:nowrap;padding:8px 0;
	animation:alez-ticker-move 30s linear infinite;}
.alez-ticker:hover .alez-ticker__track{animation-play-state:paused;}
.alez-ticker__item{color:#fff;padding:0 8px;}
.alez-ticker__item:hover{color:#ffd;text-decoration:underline;}
@keyframes alez-ticker-move{
	from{transform:translateX(0);}
	to{transform:translateX(50%);} /* چون آیتم‌ها دوبار تکرار شده‌اند، RTL */
}

/* کادر خبری */
.alez-news-box{display:grid;gap:12px;margin:16px 0;}
.alez-news-box__item{background:#fff;border:1px solid #ececec;border-inline-start:4px solid var(--alez-main,#d81f1c);
	border-radius:12px;padding:14px 16px;direction:rtl;text-align:right;}
.alez-news-box__title{margin:0 0 6px;font-size:16px;font-weight:800;color:#2b2b2b;}
.alez-news-box__text{margin:0;color:#555;line-height:1.9;}
.alez-news-box__more{display:inline-block;margin-top:8px;color:var(--alez-main,#d81f1c);font-weight:700;font-size:13px;}

@media (prefers-reduced-motion:reduce){
	.alez-ticker__track{animation:none;}
}
