.breadcrumb {
    max-width: 1472px;
    margin: 24px auto;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    background-color: #ff69b430;
}

/** Arrangementer listet på langs i stedet for nedad **/

 .filtered-event-list__list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));  
            gap: 16px;
            padding: 2px;
            list-style: none;
        }
        .filtered-event-list__list-item {
            background: pink;
            padding: 2px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.2s;
            height:100%;
        }
        .filtered-event-list__list-item:hover {
            transform: scale(1.05);
        }
        .filtered-event-list__list-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 5px;
        }
        .content-list-item {
        	height:100%;
        	padding-bottom: 10px;
        	display:grid; 
        	row-gap: 2px;
        }       
        .content-list-item__title {
            font-size: 18px;
            margin: 10px 0 0 0;
            font-weight: bold;
        }
        .content-list-item__description {
            font-size: 14px;
            color: #555;
             margin: 10px 0 0 0;

        }
        .content-list-item__location {
             color: #555;
        }

        .filtered-event-list {
    max-width: 1440px;    
}

@media screen and (min-width: 769px) {
 .content-list-item__content {
    display: grid;
    grid-template-columns: 1fr 1fr 80px;
    grid-template-areas: 
        "tag tag date"
        "title title title"
        "description description description"
        "location . schedule";
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}
.content-list-item__title, .text-truncate {
    white-space: normal;
    margin-bottom:1.2rem;
   }   
}
@media screen and (max-width: 1024px) {
   .filtered-event-list .content-list-item {
   	    display:grid;
        grid-template-areas: "image" "content" ;
}
  .content-list-item__content-right-container {
        grid-area: schedule;
        grid-row: auto;
        grid-column: 3 / span 1;
        justify-content: flex-end;
        line-height: 16px;    
    }
}
@media screen and (min-width: 1024px) {
  .content-list-item {
        display:grid;
        grid-template-columns: 1fr 1fr 60px;
        grid-template-areas:
        "image" "content" "arrow";
        row-gap: 2px;
   }
       .content-list-item__content-right-container {
        grid-area: schedule;
        grid-row: 4 / span 1;
        grid-column: 3 / span 1;
        justify-content: unset;
        font-size: 12px;
        line-height:120%;
        margin-top: 16px;
        
    
    }
        
}
/** Mobil-skærm **/
@media screen and (max-width: 768px) { 
	 .filtered-event-list__list-item {
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
           
        }

.content-list-item {
    max-width: 768px;
    display: grid;
    grid-template-columns: 20% 1fr;
    background-color: #fff;
    grid-template-areas:
        "image"
        "content";
    grid-template-rows: auto;
    gap: 16px;
    margin: 0 auto;
    padding: 12px 16px;
    box-sizing: border-box;
    text-decoration: none;
}
.content-list-item__content-right-container {
    grid-area: schedule;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 12px;
    line-height: 18px;
   margin-top: 10px;
   
  }

  .content-list-item__pricing {
    margin-left: 0.5rem;
     }
 .content-list-item__location {
     color: #555;
    }
.content-list-item__title, .text-truncate {
    white-space: normal;
    margin-bottom:1.2rem;
   }   
 
   .content-list-item__description {
       display: none;
   
    }
}