/****************************************************************************
* Number Teaser Item
*****************************************************************************/
.number_teaser_item {
    font-size: 1.25em;
}

.number_teaser_item .primary_title > *:not(p){
    font-size: 4.5em;
}



/****************************************************************************
* download_cat_item
*****************************************************************************/
.download_cat_item .item_content_inner {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    padding: 1rem; opacity: 0;
    background-color: var(--typo-color-green-one);
    transition: all .25s ease;
    pointer-events: none;
}

@media screen and (min-width:64em){
    .download_cat_item .item_inner:hover .item_content_inner,
	.download_cat_item .item_inner:focus .item_content_inner,
	.download_cat_item .item_inner:focus-within .item_content_inner{
        opacity: 1;
    }
}