.post-card.sports-post-card {
    height: 486px;
    overflow: hidden;
    width: calc(25% - 18px);
    border-radius: 12px;
    position: relative;
}
.sports-archive .post-card.sports.hidden {
    display: none;
}
.post-card.sports-post-card.simple-sport:before {
    background: rgba(119, 119, 119, 0.9);
}
@media only screen and (max-width: 1299px) {
    .post-card.sports-post-card {
        width: calc(33.33% - 18px);
    }
}
@media only screen and (max-width: 1024px) {
    .post-card.sports-post-card {
        width: calc(50% - 12px);
    }
}
@media only screen and (max-width: 767px) {
    .post-card.sports-post-card {
        width: 100%;
        height: 480px;
    }
}
.post-card.sports-post-card:hover:after {
    opacity: 1;
}
.post-card.sports-post-card:hover .post-card-image img {
    transform: scale(1.1);
}
.post-card.sports-post-card:before {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 1;
    content: "";
    border-radius: 12px;
}
.post-card.sports-post-card:after {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), linear-gradient(180deg, rgba(16, 53, 127, 0) 0%, #10357F 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
    content: "";
    transition: all 0.3s ease-in-out;
    opacity: 0;
    border-radius: 12px;
}
.post-card.sports-post-card .post-card-image {
    padding-top: 0;
    position: absolute;
    height: 100%;
}
.post-card.sports-post-card .post-card-image img {
    border-radius: 12px;
    position: relative;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-card.sports-post-card .post-card-content.sport-post-card-content {
    background-color: transparent !important;
    width: 100%;
    padding: 20px;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
}
.post-card.sports-post-card .post-card-content.sport-post-card-content h4 {
    color: #fff;
    margin-bottom: 0;
    text-align: center;
}
.post-card.sports-post-card .post-card-content.sport-post-card-content .sport-post-card-content-button {
    position: absolute;
    left: 0;
    bottom: 60px;
    width: 100%;
    text-align: center;
}
.post-card.sports-post-card .post-card-content.sport-post-card-content .sport-post-card-content-button button {
    font-size: 16px;
    line-height: 24px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    font-family: "Bjorn", sans-serif;
    font-weight: 700;
    background: transparent;
    border: none;
    transition: all 0.3s ease-in-out;
}
.post-card.sports-post-card .post-card-content.sport-post-card-content .sport-post-card-content-button button:hover {
    color: #FFD41c;
}
.post-card.sports-post-card .post-card-content.sport-post-card-content .sport-post-card-content-button button:hover span {
    background: #fff;
}
.post-card.sports-post-card .post-card-content.sport-post-card-content .sport-post-card-content-button button:hover span svg path {
    stroke: #FFD41c;
}
.post-card.sports-post-card .post-card-content.sport-post-card-content .sport-post-card-content-button button span {
    height: 26px;
    width: 26px;
    background: #FFD41c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    top: 1px;
    transition: all 0.3s ease-in-out;
}
.post-card.sports-post-card .post-card-content.sport-post-card-content .sport-post-card-content-button button span svg {
    position: relative;
    left: 0;
    bottom: 0;
    transform: translateX(0);
}
.post-card.sports-post-card .post-card-content.sport-post-card-content .sport-post-card-content-button button span svg path {
    transition: all 0.3s ease-in-out;
}