.tv-container{
    padding-bottom: 50px;
	background-color: #FBFBFB !important;
}

.tv-title h1{
    font-family: 'Noto Sans Georgian', Arial, sans-serif;
}

.tv-post-grid{
	display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
  	margin-top: 40px;
}

.tv-post {
  	padding: 12px 23px 12px 23px;
    border-width: 1px;
    border-style: solid;
    border-color: #0a1a33 !important;
    border-radius: 14px;
}

.tv-post:hover{
    border-color: #EEB44A !important;
  	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


h3.tv-post-title {
    margin: 0 !important;
	font-family: Noto Sans Georgian !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
  	text-align: center;
}

.tv-post:hover h3.tv-post-title {
    color: #EEB44A;
}


@media only screen and (max-width: 1018px) {
  .tv-post-grid{
      grid-template-columns: repeat(4, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .tv-post-grid{
      grid-template-columns: repeat(2, 1fr);
  }
}


.tv-real-content{
	margin-top: 50px;
}


