.custom-icons {
    list-style-type: none;  /* Ta bort standardpunktarna från listan */
    padding-left: 0;       /* Ta bort standardpadding från listan */
    display: flex;         /* Gör listan till en flex-container */
}

.custom-icons li {
    padding-right: 20px;  
    color: #78818b;
    font-size: 14px;
    display: flex;         /* Gör listelementen till flex-containers för att centrera ikonerna vertikalt */
    align-items: center;   /* Centrera ikonerna vertikalt */
}

.custom-icons li i {
    margin-right: 8px;     /* Lägg till lite utrymme mellan ikonen och texten */
}
.articles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 25px;
    align-items: stretch;
}

.articleinneholl {
padding-left:16px;
padding-right:16px;
}

.articlecard {
    background: white;
    width: 329px;
	border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.articlerubrik {
color: #191d34; 
font-size: 20px;
margin-bottom: 20px;
margin-top:10px;
font-weight: 500px;
}

.image-container {
    overflow: hidden;

}

.image-container img {
    width: 100%;         /* Byter till auto för att behålla bildens ursprungliga aspektförhållande */
  */  height: 100%;       /* Sätt höjden till 100% för att fylla hela .image-container */
    display: block;
    margin: 0 auto;     /* Centrera bilden horisontellt */
    transition: transform 0.3s ease;
    object-fit: cover;  /* Se till att bilden täcker hela .image-container utan att förlora sitt aspektförhållande */
    object-position: center; /* Centrera bilden både horisontellt och vertikalt */
}

.image-container:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .articles-container {
        padding-bottom: 20px;
		padding-left: 20px;
		padding-right: 20px;
        margin: auto;
    }
    .articlecard {
        width: 100%;        
    }
}

@media screen and (max-width: 992px) and (orientation: landscape) {
    .articlecard {
        width: 30%;
    }
	
	.image-container {
	height: 130px;background-repeat: no-repeat;
	}
	
	.hide-on-webbr {
	display:none;
	}
	
	.articlerubrik {
	font-size: 15px;
	}
	
}