/*  SMALL PRODUCT CARDS START     */

.ss-card {
    display: flex;
    border: 1px solid #03243b;
    margin-top: 25px;
    transition: all .3s ease;
}

.ss-card:hover {
    border-color: rgba(2, 171, 245, .4);
    -webkit-box-shadow: 0 0 15px 0 rgba(2, 171, 245, .3);
    box-shadow: 0 0 15px 0 rgba(2, 171, 245, .3);
    outline: 0;
}

.ss-card-title {
    font-weight: bold;
}

.ss-card-cta {
    margin-bottom: 10px;
    bottom: 0;
    position: absolute;
    right: 0;
    margin-right: 30px;
}

.st-link .st-link__icon--arrow-small,
a .st-link__icon--arrow-small {
    width: 5px;
    height: 13px;
}

.st-link .st-link__icon--right,
a .st-link__icon--right {
    bottom: 0;
    right: -13px;
}

.st-card {
    width: calc(25% - 20px);
    /* 4 columns -> 25%  /  3 columns -> 33.33%    */
}

.st-card .st-card__focus:after {
    width: 55%;
}

.st-card__headline {
    font-size: 13px;
}

.st-card__image-t-container {
    height: 145px;
}

.st-card__image,
.st-meet-st .st-teaser-video .st-teaser-video__image {
    height: 145px;
}

.st-card-resources {
    width: calc(25% - 25px);
    max-width: inherit;
}


/* 
.st-card-resources-last {
    width: calc(25% - 25px);
} */

.st-card-resources-content {
    padding: 20px;
    margin-top: 40px;
    min-height: 180px;
}

.st-card-resources-content img {
    max-width: 100px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.st-card-resources-button {
    margin-top: 20px;
}

@media only screen and (max-width: 40em) {
    .st-card-resources,
    .st-card-resources-last {
        width: 90%;
    }
    .st-card-resources-content {
        margin-top: 10px;
        min-height: 100px;
    }
    .st-card-resources-button-a {
        margin-bottom: 0px;
    }
    .st-card-resources-button {
        margin-top: 0px;
    }
}

@media only screen and (min-width: 40.063em) and (max-width: 64em) {
    .st-card-resources,
    .st-card-resources-last {
        width: calc(33% - 30px);
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
    .st-card-resources-content {
        margin-top: 10px;
        min-height: 155px;
        margin-bottom: 20px;
    }
}

.ss-card-content {
    padding: 20px;
    height: 340px;
}

.ss-card-desc {
    margin-top: 10px;
    font-size: 14px;
}

.ss-card-title {
    margin-top: 15px;
    text-align: center;
}

.ss-card-image {
    display: grid;
    place-items: center;
    margin-top: 15px;
}

.ss-card-image img {
    max-height: 80px;
    width: auto;
}

.st-link {
    font-size: 13px;
}


/*      SMALL PRODUCT CARDS END   */