/* Main nes sections */

.main_news_wrap {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.top_vesti_wrapper {
	display: grid;
    grid-template-columns: minmax(0, 30%) minmax(0, 1fr);
    grid-gap: 30px;
    width: 75%;
    padding: 30px 0 0;
}

.top_vesti_wrapper img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.top_vesti_wrapper .news-secondary .thumbnail img {
	max-height: 170px;
}

.news-secondary .meta-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.post_comment {
	display: flex;
	align-items: center;
	font-size: 15px;
}

.post_comment svg {
	margin-left: 5px;
}

/* Primary news */

.main_primary_news h3 {
	font-size: 40px;
	color: #333333;
	line-height: 46px;
	font-family: 'Inter-Black';
	margin-top: 20px;
	margin-bottom: 20px;
}

.main_primary_news .pinned-trim-words {
	font-size: 18px;
	line-height: 25px;
	color: #333333;
}
.main_primary_news .pinned-trim-words ul{
	list-style-type: disc;
}
.main_primary_news .pinned-trim-words ol{
	list-style-type: decimal;
}
.main_primary_news .pinned-trim-words ol,
.main_primary_news .pinned-trim-words ul{
	padding-left: 24px;
	margin: 0;
}
.main_primary_news .pinned-trim-words ol li,
.main_primary_news .pinned-trim-words ul li{
	font-family: "Inter-Bold";
	font-size: 16px;
	line-height: 1.375;
}
.main_primary_news .pinned-trim-words ol li:not(:last-child),
.main_primary_news .pinned-trim-words ul li:not(:last-child){
	margin-bottom: 14px;
}

.main_primary_news .thumbnail {
	position: relative;
}

.main_primary_news .main_news_allert {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	color: #fff;
	text-transform: uppercase;
	background: #D7162F;
	height: 40px;
	padding-left: 15px;
}

.main_primary_news .main_news_allert span {
    background: #333333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_primary_news .main_news_allert p {
	margin: 0;
	font-size: 15px;
	padding: 10px 15px;
	font-family: 'Inter-SemiBold';
}

.pulse {
  --pulseColor: rgba(209, 167, 160, 0.65);
  --pulseTransparent: rgba(209, 167, 160, 0);
  --pulseSize: 15px;

  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 var(--pulseColor);
  animation: pulsing 2s infinite;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.pulse:hover {
  --pulseSize: 30px;
}

.pulse:active {
  transform: scale(1.5);
}

@keyframes pulsing {
  0% {
    box-shadow: 0 0 0 0 var(--pulseColor);
  }
  70% {
    box-shadow: 0 0 0 var(--pulseSize) var(--pulseTransparent);
  }
  100% {
    box-shadow: 0 0 0 0 var(--pulseTransparent);
  }
}

/* secondary news */

.news-secondary h3 {
	font-size: 18px;
	color: #333333;
	font-family: 'Inter-Bold';
	line-height: 21px;
	margin-top: 10px;
}

.secondary-wrapper .news-secondary:first-child {
	border-bottom: 1px solid #D5D5D5;
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.meta-info {
	font-size: 12px;
	font-family: 'Inter-SemiBold';
	color: #7E7E7E;
}

.main_primary_news .meta-info {
	display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.all-news-link {
	width: 22.5%;
	border-top: 1px solid #D5D5D5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.all-news-link a {
	width: 120px;
	border: 1px solid #D5D5D5;
    font-size: 14px;
    color: #7E7E7E;
    padding: 7px 15px;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.all-news-link a svg {
	margin-left: 5px;
}

/* Right news */

.right_news {
	width: 25%;
	padding-left: 30px;
	padding-top: 25px;
}


/* Tabs */

.tabs-nav {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #D5D5D5;
    margin-bottom: 20px;
}

.tabs-content .tab-panel {
    display: none;
}

.tabs-content .tab-panel.active {
    display: block;
}

.tabs-nav .tab-btn {
    cursor: pointer;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #333333;
    font-family: 'Inter-SemiBold';
    text-transform: uppercase;
    padding: 0;
    flex: 1;
    padding-bottom: 10px;
    border-bottom: 4px solid transparent;
}

.tabs-nav .tab-btn.active {
	border-bottom: 4px solid #D7162F;
}

.tab-post .content {
	display: flex;
}

.tab-panel .meta-info {
	text-align: center;
	font-size: 16px;
	color: #D7162F;
	min-width: 60px;
	line-height: 1;
	margin-right: 10px;
}

.tab-panel h4 {
	margin: 0;
	font-size: 14px;
	color: #333333;
	font-family: 'Inter-Bold';
}

.tab-panel .tab-post {
	border-bottom: 1px solid #D5D5D5;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.news-tabs-wrapper .btn-view-all {
	width: 140px;
	border: 1px solid #D5D5D5;
    font-size: 14px;
    color: #7E7E7E;
    padding: 7px 15px;
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.news-tabs-wrapper .btn-view-all svg {
	margin-left: 5px;
}

/* Baner */

.baner {
	text-align: center;
	background: #F2F2F2;
	padding: 20px 0;
	margin: 50px 0;
}

/* Rec po rec */

.word-for-word {
	padding: 50px 0;
}

.word-for-word .heading {
	border-top: 1px solid #D7162F;
}

.word-for-word .heading h2,
.top_vesti_list_sport .heading h2,
.word-for-word-one-news .heading h2,
.top_vesti_list_ekonomija .heading h2 {
	font-size: 30px;
	color: #333333;
	font-family: 'Inter-Bold';
}

.word-for-word .heading h2 span,
.word-for-word-one-news .heading h2 span {
	font-family: 'Inter-Regular';
	color: #D7162F;
}


.word-for-word .word-for-word-list {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.word-for-word .word-for-word-list .thumbnail img {
	width: 100%;
	aspect-ratio: 1;
	height: 380px;
	object-fit: cover;
}

.word-for-word .word-for-word-list h4 {
	font-size: 24px;
	color: #333333;
	line-height: 28px;
	font-family: 'Inter-Bold';
	margin: 20px 0 10px;
	min-height: 85px;
}

.word-for-word .word-for-word-list .pinned-trim-words {
	color: #333333;
	line-height: 22px;
}


/* Sport news */

.top_vesti_wrapper.top_vesti_wrapper_sport,
.top_vesti_wrapper.top_vesti_wrapper_ekonomija {
	grid-template-columns: minmax(0, 66.7%) minmax(0, 1fr);
	padding-top: 0;
}

.right_news_sport .tab-panel .meta-info {
	color: #44B41B;
}

.right_news_sport .tabs-nav .tab-btn.active {
	border-bottom: 4px solid #44B41B;
}

.top_vesti_list_sport .heading h2 span {
	color: #44B41B;
}

.top_vesti_list_sport .heading {
    border-top: 1px solid #44B41B;
    display: flex;
    align-items: center;
}

.subcategories-nav {
	margin-left: 50px;
}

.subcategories-nav a {
	margin-right: 20px;
	font-size: 14px;
	color: #333333;
	font-family: 'Inter-Bold';
}

.top_vesti_list_sport .subcategories-nav a:hover {
	color: #44B41B;
}

.right_news.right_news_sport,
.right_news.right_news_ekonomija {
	padding-top: 0;
}

.word-for-word-one-news .heading {
	border-top: 1px solid #D7162F;
}

.word-for-word-one-news {
	padding: 50px 0;
}

.word-for-word-one-news .rec-po-rec-vest {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
	grid-gap: 30px;
}

.word-for-word-one-news .rec-po-rec-vest-thumbnail img {
	width: 100%;
	aspect-ratio: 1;
	height: 480px;
	object-fit: cover;
}

.word-for-word-one-news .rec-po-rec-vest h3 {
	margin-top: 0;
	font-size: 24px;
	font-family: 'Inter-Bold';
	color: #333333;
}

.word-for-word-one-news .rec-po-rec-vest .pinned-trim-words {
	color: #333333;
	line-height: 22px;
}

.word-for-word-one-news .meta-info {
	margin-top: 30px;
}

/* Ekonomija */

.top_vesti_list_ekonomija .heading {
    border-top: 1px solid #1646D7;
    display: flex;
    align-items: center;
}

.top_vesti_list_ekonomija .subcategories-nav a:hover {
    color: #1646D7;
}

.top_vesti_list_ekonomija .heading h2 span {
	color: #1646D7;
	font-family: 'Inter-Regular';
}

.right_news_ekonomija .tab-panel .meta-info {
    color: #1646D7;
}

.right_news_ekonomija .tabs-nav .tab-btn.active {
    border-bottom: 4px solid #1646D7;
} 

/* Responsive */

@media only screen and (max-width: 1600px) {
	.main_primary_news h3 {
	    font-size: 35px;
	    line-height: 40px;
	}
}

@media only screen and (max-width: 991px) {
	.top_vesti_wrapper {
		width: 100%;
	}
	.right_news,
	.right_news.right_news_sport, 
	.right_news.right_news_ekonomija {
	    width: 100%;
	    padding-left: 0;
	    padding-top: 40px;
	}
	.all-news-link {
		display: none;
	}
	.word-for-word .word-for-word-list h4 {
	    font-size: 22px;
	    line-height: 24px;
	    min-height: 75px;
	}
}

@media only screen and (max-width: 768px) {
	.top_vesti_wrapper,
	.top_vesti_wrapper.top_vesti_wrapper_sport, 
	.top_vesti_wrapper.top_vesti_wrapper_ekonomija {
		grid-template-columns: 1fr;
		overflow: hidden;
	}
	.top_vesti_wrapper .main_primary_news {
		order: 1;
	}
	.top_vesti_wrapper .secondary-wrapper {
		order: 2;
	}
	.top_vesti_wrapper .news-secondary .thumbnail img {
	    max-height: inherit;
	    height: 300px;
	}
	.word-for-word .word-for-word-list {
	    grid-template-columns: repeat(1, 1fr);
	}
	.subcategories-nav {
	    margin-left: 20px;
	    white-space: nowrap;
	    overflow: scroll;
	}
	.word-for-word .heading h2, 
	.top_vesti_list_sport .heading h2, 
	.word-for-word-one-news .heading h2, 
	.top_vesti_list_ekonomija .heading h2 {
		white-space: nowrap;
	}
	.top_vesti_wrapper_sport .secondary-wrapper,
	.top_vesti_wrapper_ekonomija .secondary-wrapper {
		display: flex;
		gap: 20px;
	}

	.top_vesti_wrapper_sport .secondary-wrapper .news-secondary, 
	.top_vesti_wrapper_ekonomija .secondary-wrapper .news-secondary {
		border-bottom: none;
	    padding-bottom: 0;
	    margin-bottom: 0;
	}

	.word-for-word-one-news .rec-po-rec-vest {
		grid-template-columns: repeat(1, 1fr);
	}

	.baner {
	    margin: 50px 0 0;
	}


}

@media only screen and (max-width: 600px) {
	.top_vesti_wrapper_sport .secondary-wrapper,
	.top_vesti_wrapper_ekonomija .secondary-wrapper {
		gap: 0;
	}
	.top_vesti_wrapper_sport .secondary-wrapper,
	.top_vesti_wrapper_ekonomija .secondary-wrapper {
		display: flex;
	    overflow: scroll;
	    white-space: nowrap;
	    column-gap: 20px;
	    margin-right: -20px;
	    padding-right: 20px;
	    padding-left: 20px;
	}
	.top_vesti_wrapper_sport .secondary-wrapper .news-secondary,
	.top_vesti_wrapper_ekonomija .secondary-wrapper .news-secondary {
		width: 70%;
		min-width: 70%;
		white-space: nowrap;
	}
	.top_vesti_wrapper_sport .secondary-wrapper .news-secondary h3,
	.top_vesti_wrapper_ekonomija .secondary-wrapper .news-secondary h3 {
		white-space: break-spaces;
		padding-left: 0;
	}
	.top_vesti_wrapper_sport .meta-info, 
	.top_vesti_wrapper_ekonomija .meta-info {
		padding: 0 20px;
	}

	.top_vesti_wrapper {
  		padding-top: 0 !important;
  	}
	.top_vesti_list .container {
	  	padding: 0;
	}
	.top_vesti_wrapper img,
	.word-for-word-one-news .rec-po-rec-vest-thumbnail img {
	    height: 210px;
	}
    .top_vesti_wrapper .main_primary_news h3,
    .top_vesti_wrapper .main_primary_news .pinned-trim-words {
  	    padding: 0 20px;
    }
    .main_primary_news h3 {
      font-size: 32px;
      line-height: 36px;
    }
    .main_primary_news .pinned-trim-words ol li, .main_primary_news .pinned-trim-words ul li {
    	font-size: 15px;
    }
    .top_vesti_wrapper .main_primary_news .pinned-trim-words p,
    .main_primary_news .pinned-trim-words {
  	  font-size: 16px;
    }
    .main_primary_news .pinned-trim-words ol, .main_primary_news .pinned-trim-words ul {
      padding-left: 20px;
      margin: 0;
	}
	.main_primary_news .main_news_allert p {
      font-size: 13px;
	}
	.secondary-wrapper .news-secondary .thumbnail img {
		height: 240px;
	}	
	.secondary-wrapper .news-secondary h3,
	.secondary-wrapper .news-secondary .meta-info {
		padding: 0 20px;
	}
	.top_vesti_wrapper_sport .secondary-wrapper .meta-info,
	.top_vesti_wrapper_ekonomija .secondary-wrapper .meta-info {
		padding: 0;
	}
	.news-secondary h3 {
	    margin-top: 20px;
	    font-size: 20px;
	}
	.secondary-wrapper .news-secondary:first-child {
		border-bottom: none;
		margin-bottom: 10px;
	}
	.word-for-word .container {
		padding: 0;
	}
	.word-for-word h4,
	.word-for-word .pinned-trim-words {
		padding: 0 20px;
	}
	.word-for-word .word-for-word-list .thumbnail img {
		height: 240px;
	}
	.top_vesti_wrapper.top_vesti_wrapper_sport .news-secondary h3, 
	.top_vesti_wrapper.top_vesti_wrapper_ekonomija .news-secondary h3 {
		font-size: 18px;
	}
	.subcategories-nav {
		display: none;
	}
	.top_vesti_list_ekonomija .heading,
	.top_vesti_list_sport .heading,
	.word-for-word .heading {
		padding-left: 20px;
	}
	.word-for-word .heading h2, 
	.top_vesti_list_sport .heading h2, 
	.word-for-word-one-news .heading h2, 
	.top_vesti_list_ekonomija .heading h2 {
		font-size: 25px;
	}
	.tab-post .content {
	    padding-right: 10px;
	}

}
