 .media-teaser {
	margin-top: 130px;
   width: 100%;
 }
 
 .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 .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 (max-width:576px){
    .media-teaser-content .title{
        font-size:40px;
        line-height:44px
    }
    .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
    }
 }