.announcement-card-wrapper{
    display: inline-block;
    width: 100%;
    position: relative;
    height: 15rem;
    border-radius: 1rem;
    z-index: 200;
    background-color: white;
    z-index: 1;
    overflow: hidden;
	box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.09);
    /*box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;*/
    transition: 0.3s ease-in-out;
}

.announcement-card-overlay{
    white-space: wrap;
    padding:1rem;
    border-radius: 1rem;
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: absolute;
    bottom:0;
    left:0;
    background:transparent;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    color:black;
    z-index: 1;
    overflow: hidden;
}

.announcement-card-date {
    font-weight: bold;
    color: #6EA96E;
}

.announcement-card-title{
    border-bottom:1.5px solid #E8E8E8;
    padding: 0.5rem 0;
	line-height: 1.5rem;
    font-size: 14px;
}

.announcement-card-link-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top:0.5rem;
}

.announcement-card-link {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: #4e89a4;
    font-weight: bold;
}

.announcement-card-link img{
    width: 1.2rem;
}

.announcement-card-until {
    position: absolute;
    top: -1rem;
    right: -1rem;
    border-radius: 50%;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(to top, #3c7893, #7BC97A);
    color: white;
    z-index: -1;
    text-align: right;
    padding-top: 2.3rem;
    padding-right: 1.6rem;
    font-size: 11px;
    font-weight: bold;
    overflow: hidden;
    line-height: 0.9rem;
}



@media screen and (min-width: 787px){
    .announcement-card-wrapper{
        width: 48%;
        margin-left:1%;
        margin-right: 1%;
    }
}


@media screen and (min-width: 1024px){
    .announcement-card-wrapper{
        width: 23%;
        margin-left:1%;
        margin-right: 1%;
    }

    .announcement-card-title{
        font-size: 18px;
    }
}