.card-details {
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 50px); 
    padding: 5px 10px;
    -webkit-transition: .2s all ease;
    transition: .2s all ease;
}

article.post-card {
	border: 1px solid #ddd;
    /*max-height: 190px;*/
    max-height: 210px;
    overflow: hidden;
}

@media (min-width: 576px){
	article.post-card {
	    /*max-height: 155px;*/
	    max-height: 180px;
	}	
}


@media (min-width: 635px){
	article.post-card {
	    /*max-height: 165px;*/
	    max-height: 200px;
	}	
}

@media (min-width: 700px){
	article.post-card {
	    /*max-height: 185px;*/
	    max-height: 210px;
	}	
}


@media (min-width: 992px){
	article.post-card {
	    /*max-height: 165px;*/
	    max-height: 189px;
	}	
}

@media (min-width: 1200px){
	article.post-card {
	    /*max-height: 190px;*/
	    max-height: 210px;
	}	
}

article.post-card h2{
    background-image: linear-gradient(90deg,#000000 50%,rgba(0,0,0,0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;	
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    font-size: 0.75rem;
	overflow: hidden;
	width: 320px;
}

article.post-card h2 a{
	font-size: 0.8rem;
	text-decoration: none;
	font-weight: 500;
	border-bottom: none;
	white-space: nowrap;
}

.card-details:hover {
	top: calc(100% - 69px);
}

.post-card__image {
	/*padding-bottom: 20px;*/
	padding-bottom: 30px;
}

/*.post-card__image:hover .card-details {*/
.post-card__image .card-details {
	top: calc(100% - 69px);
} 


.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: opacity 0.2s linear 0s;
	-webkit-transition: .2s all ease;
	background-color: #222;
}

.post-card__image:hover .overlay {
  opacity: 0.5;
}

.icon-mid-show-name {
    width: 30px;
    vertical-align: middle;
}

.post-card__image .mid-show-name {
    min-height: 40px;
    vertical-align: middle;
}
.post-card__image .bottom-show-name, .post-card__image .mid-show-name {
    font-size: 0.9rem;
    line-height: 16px;
    text-decoration: none;
    padding: 3px 8px 3px 0;
}


@media (min-width: 992px){
	.single .content-area, .category .content-area {
		width: 635px !important;
	}
}

@media (min-width: 1200px){
	.single .content-area, .category .content-area {
		width: 810px !important;
	}

	.b-related__items{
		margin: 0 auto !important;
	}
}


/* ===== Новые стили для спортивных карточек (добавить в конец файла) ===== */
.post-card__image.sport-image {
    padding-bottom: 0 !important;
}

.post-card__image.sport-image img {
    width: 100%;
    height: auto;
    display: block;
}

.card-details.sport-details {
    background: rgba(0,0,0,0.7) !important;
    color: #fff;
    top: auto !important;
    bottom: 0;
}

.sport-meta-container {
    display: flex;
    flex-direction: column;
}

.sport-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.card-details.sport-details .mid-show-name {
    color: #fff !important;
    background-image: none !important;
    -webkit-text-fill-color: #fff !important;
}

.card-details.sport-details h2 a {
    color: #fff !important;
    background-image: none !important;
    -webkit-text-fill-color: #fff !important;
}

/* Адаптация для спортивных карточек */
@media (min-width: 576px){
    .post-card[data-type="sport"], 
    .post-card[data-type="sport_duel"] {
        max-height: 210px !important;
    }
}