/*/*styles*/*/
body {
    font-family: 'Lora', serif;
    font-weight: 400; /* Regular */
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Bold */
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* SemiBold */
    font-style: italic; /* Italic */
}

.medium-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium */
}
.newsCardMain{
    color:white;
}
.newsCardMain h1{
    text-shadow: 2px 2px #000000;
}
.newsCardMain a{
    color:white;
    text-decoration: none;
}
.newsCardAside{
	padding:10px 0px;
	border-bottom: 1px solid #CCC;
}
.newsCardAside a{
	color: #0C0C0C;
	text-decoration: none !important;
}
.newsDevider{
	margin:0px 4px;
}
.linkOrange{
	color:orange !important;	
	text-decoration: none;
}
.linkOrange span small{
	color:orange !important;	
	text-decoration: none;
}
.linkWhite{
	color: white;
	text-decoration: none;
}
.linkWhite:link{
	color: white;
}
.linkWhite:hover{
	color: orange;
}
.linkWhite:active{
	color: white;
}
.linkWhite:visited{
	color: white;
}
.gradBlackBottom{
	background: linear-gradient(0deg,rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
.gray-i-link{
	font-style: italic;
	font-size: 0.8rem;
	color: #555555;
}
/*SCROLLTEXT*/

.scrolltext {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.scrolltext-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Контейнер должен иметь overflow: hidden */
.scrolltext-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Градиенты по краям для плавности */
.scrolltext-container::before,
.scrolltext-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.scrolltext-container::before {
    left: 0;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0));
}

.scrolltext-container::after {
    right: 0;
    background: linear-gradient(to left, #fff, rgba(255,255,255,0));
}