 .media-teaser {
	margin-top: 130px;
   width: 100%;
 }
  .media-teaser-new-label {
    color: rgb(0, 38, 100);
    padding: 6px;
    border-radius: 2px;
    border: 1px solid;
    width: 64px;
    height: 32px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    font-family: "Libre Franklin";
 }
 .media-teaser-image img{
    width:100%;
    height:auto
 }
 .media-teaser-content{
    display: flex;
    flex-direction: column;
    padding:40px 20px;
    gap:16px
 }
 .media-teaser-content .news-tag{
    border-radius: 2px;
    width: 46px;
    padding: 6px;
    font-size: 14px;
    font-weight:600
 }
 .media-teaser-content .title{
    font-size: 56px;
    font-weight: 600;
    line-height: 64px; 
 }
 .media-teaser-content .subtitle{
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
 }
 .media-teaser-content .description{
    color: #000;
    font-family: "Libre Franklin";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
 }

 .media-teaser-content .description ul{
   font-size: 1em;
   line-height: 2;
   list-style: none;
   /* list-style-position: inside; */
   padding-left: 18px;
   padding-top: 16px;
   list-style-type: initial;
 } 


 .media-teaser-content .tags-row{
    display:flex;
    padding:  8px 0px;
    align-items: flex-start;
    gap: 8px;
 }
 .media-teaser-content .tags-row .tag{
    padding: 6px;
    border-radius: 2px;
    white-space: nowrap;
    font-family: "Libre Franklin";
    font-weight:600;
    font-size:14px
 }
 .media-teaser-button{
    width:fit-content;
    color:white !important;
    display: flex;
    padding: 16px;
    align-items: center;
    gap: 4px;
    border-radius:  4px;
    cursor: pointer;
    font-size:14px;
    font-weight:600;
    line-height:20px;
    text-decoration: none !important;
 }
 .media-teaser-button:hover{
   opacity:0.8;
 }
@media only screen and (min-width:769px) {
	.media-teaser-image{
    padding-top: 50px;
    padding-bottom: 40px
	}
	.media-teaser-content{
    padding: 40px 0px 40px 20px;
	}
 
}
 @media only screen and (max-width:576px){
    .media-teaser-content .title{
        font-size:40px;
        line-height:44px;
        word-wrap: break-word;
    }
    .media-teaser-content .subtitle{
        font-size:20px;
        line-height:26px;
    }
    .media-teaser-content .description{
        font-size:14px;
    }
    .media-teaser-content .tags-row{
        overflow-x:auto
    }
    .media-teaser-content .tags-row::-webkit-scrollbar{
        scrollbar-width:none
    }
    .media-teaser-button{
        padding:12px
    }
 }
