      hr {
            border: 1px solid #ccc;
            margin: 0.5rem 0;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }
				a {
				    color: inherit;            
				    text-decoration: none;    
				    font-family: inherit;
				}
				
				a:visited {
				    color: inherit;         
				}
				
				a:hover {
				    color: #555;            
				    text-decoration: none; 
				}

        body {
            line-height: 1.6;
            background-color: #fff;
            color: #000;
        }

        header {
            background: #fff;
            color: #000;
            padding: 1rem;
            text-align: center;
            font-size: 2.5rem;
            letter-spacing: 0.05em;
            word-spacing: 0.1em;
            line-height: 1.2;
            font-family: 'Georgia', serif;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f4f4f4;
            padding: 1rem;
            max-width: 1600px;
            margin: auto;
        }

        .hamburger {
            font-size: 1.5rem;
            cursor: pointer;
        }

        .menu-items {
            list-style: none;
            display: none;
            flex-direction: column;
            gap: 1rem;
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            background: #f4f4f4;
            width: 100%;
            max-width: 1600px;
            padding: 1rem;
            z-index: 10;
             overflow-y: auto;
            max-height: 100vh;
        }

        .menu-items.active {
            display: flex;
        }

        .menu-items li {
            font-size: 1.2rem;
        }

        .menu-items li a {
            color: #000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .menu-items li a:hover {
            color: #444;
        }

        .menu-items-desktop {
            list-style: none;
            display: flex;
            gap: 2rem;
            margin-left: 2em;
            max-width: 100%;
            
        }

        .menu-items-desktop li {
            font-size: 1.2rem;
            white-space: nowrap;

           
            
        }

        .menu-items-desktop li a {
            color: #000;
            text-decoration: none;
            transition: color 0.3s ease;
           
        }

        .menu-items-desktop li a:hover {
            color: #444;
        }

        @media (max-width: 768px) {
            .menu-items-desktop {
                display: none;
            }
        }

        .container {
            max-width: 1600px;
            margin: auto;
            padding: 1rem;
        }

        .grid {
            display: grid;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .grid-full-width {
            grid-template-columns: 1fr;
            align-items: start;
        }
        .grid-full-width img {
    max-width: 100%;
    height: auto;
        }

      .grid-full-width .article img {
				max-width: 100%;
				height: auto;
        }
        .grid-two-columns {
            grid-template-columns: repeat(2, 1fr);
        }

        .grid-four-columns {
            grid-template-columns: repeat(4, 1fr);
        }

        .article {
            background: #fff;
            padding: 1rem;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

        .article:hover {
            transform: scale(1.02);
        }

        .article img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
        }

        .article-content {
        	width: 100%;
    			max-width: 100%;
        	display: flex;     
          flex-direction: row;       
          gap: 2rem;        
            
        }

        .article-content img {
    flex-basis: 60%; /* Bildet tar opp 60% av bredden */
    max-width: 100%;
    height: auto;
        }

        .article-content .text {

    flex-basis: 40%; /* Tekst tar opp de resterende 40% */
        }

        .article h2 {
            margin-top: 1rem;
            font-size: 1.5rem;
        }

        .article p {
            margin-top: 0.5rem;
        }
        
        .article .category {
        	font-size: 0.9rem;
        }

        footer {
            margin-top: 2rem;
            padding: 1rem;
            background: #f4f4f4;
            color: #000;
            text-align: center;
        }

        @media (max-width: 768px) {
            .grid-four-columns {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
              .article {
              	display: flex;     
           		 	flex-direction: row-reverse;
           		 	div {
           		 		 flex-grow: 1;
           		 		 margin-left: 1rem;
           		 		 h2 {
           		 		 font-size: 0.9rem;	
           		 		}
           		 		hr {
           		 			
           		 		}

           		 	}
           		 	 img {
                	width: 100px; height: 100px; object-fit: cover; 
                	flex-shrink: 0;
                }
                a {
                	flex-shrink: 0;
                }
           		}    


            }
            
            .grid-two-columns {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }

            .article-content {
                flex-direction: column;
                text-align: center;
            }

            .article-content img, .article-content .text {
                max-width: 100%;
            }
            header {
                font-size: 1.75rem;
            }

            .article h2 {
                font-size: 1.2rem;
            }
        }



  
            .search-bar {
            display: flex;
            justify-content: flex-end;
            gap: 0.5rem;
            width: 100%;
            white-space: nowrap;
        }

        .search-bar input {
            padding: 0.5rem;
            font-size: 1rem;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .search-bar button {
            padding: 0.5rem 1rem;
            font-size: 1rem;
            background-color: #333;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .search-bar button:hover {
            background-color: #555;
        }

        @media (max-width: 1024px) {
            .search-bar {
                display: flex;
                justify-content: flex-end;
                width: 100%;
                margin-top: 0rem;
            }
        }


  
  
            .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            background-color: #f4f4f4;
        }

        .footer-links {
            list-style: none;
            display: flex;
            gap: 1.5rem;
            padding: 0;
        }

        .footer-links li a {
            color: #000;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer-links li a:hover {
            color: #007acc;
        }

        footer p {
            text-align: center;
            padding: 1rem;
            background-color: #e4e4e4;
            margin: 0;
            font-size: 0.9rem;
        }
        
                    @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                align-items: center;
                padding: 1rem;
            }
            .footer-links {
                flex-direction: column;
                gap: 0.75rem;
            }
            .footer-links li a {
                font-size: 1rem;
            }
        }
        
        
.contact {
	form {
    width: 100%; /* Gjør skjemaet responsivt */
    max-width: 600px; /* Begrens bredden på større skjermer */
    margin: 20px auto; /* Sentrer skjemaet */
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

label {
    font-size: 1rem;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

textarea {
    height: 150px;
    resize: vertical; /* Tillat justering av tekstområde vertikalt */
}

input[type="submit"] {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    form {
        padding: 15px;
    }

    input[type="submit"] {
        width: 100%;
    }
}
}

/* Full Article Container */
.article-full {
    max-width: 1280px;
    margin: 20px auto; /* Sentraliserer innholdet */
    padding: 20px;
    background-color: #fff; /* Hvit bakgrunn */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}
.article-full img {
	max-width: 100%;
	height: auto;
}
/* Overskrifter */
.article-full h2 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #222;
    font-weight: bold;
}

.article-full h3 {
    font-size: 1.4rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: #444;
    font-weight: bold;
}
.article-full h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: bold;
}
/* Avsnitt */
.article-full p {
    margin: 0.75rem 0;
    color: #555;
}

/* Lister */
.article-full ul, .article-full ol {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f1f5f8;  /* Lys blå-grå bakgrunnsfarge */
    border-radius: 5px;         /* Avrundede hjørner */
    list-style-position: inside; /* Plasserer listepunktet inni listen */
}

.article-full li {
    margin: 0.5rem 0;
    color: #333;                /* Mørkere tekstfarge for kontrast */
    line-height: 1.6;           /* Litt ekstra linjeavstand */
}

/* Stil for ordnede og uordnede lister */
.article-full ul {
    list-style-type: disc;      /* Standard punktmarkering */
}

.article-full ol {
    list-style-type: none;   /* Nummererte lister */
}

/* Style for <h2> inne i <ol> i .article-full */
.article-full ol li h2 {
    font-size: 1.5rem;          /* Juster fontstørrelse for å passe med listen */
    margin: 0.5rem 0;           /* Juster marginene rundt */
    list-style-type: none;      /* Fjerner listenummer/punktmerking fra <h2> */
    padding-left: 0;            /* Ingen innrykk for <h2> */
}

/* Style for <h2> inne i <ul> i .article-full */
.article-full ul li h2 {
    font-size: 1.5rem;          /* Juster fontstørrelse for å passe med listen */
    margin: 0.5rem 0;           /* Juster marginene rundt */
    list-style-type: none;      /* Fjerner punktmerking fra <h2> */
    padding-left: 0;            /* Ingen innrykk for <h2> */
}

/* Fjerner potensielle punktmerkinger for <h2> i lister i .article-full */
.article-full ol li h2::before,
.article-full ul li h2::before {
    content: "";  /* Ingen innhold før <h2> i lister */
}



/* Formatering av tekst */
.article-full b, .article-full strong {
    font-weight: bold;
    color: #222;
}

.article-full i, .article-full em {
    font-style: italic;
    color: #666;
}

.article-full u {
    text-decoration: underline;
    color: #333;
}

.article-full mark {
    background-color: #ffeb3b;
    color: #000;
    padding: 0.1rem 0.2rem;
    border-radius: 2px;
}

/* Sitat og kode */
.article-full blockquote {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #fef7e0; /* Lys gul bakgrunn */
    border-left: 5px solid #ffd966; /* Gul kantlinje for visuell markering */
    font-style: italic;
    color: #555;
    position: relative;
}

.article-full blockquote::before {
    content: "“"; /* Åpningssitat */
    font-size: 2rem;
    color: #ffd966;
    position: absolute;
    top: -10px;
    left: 10px;
}

.article-full q {
    quotes: "“" "”";
    color: #444;
}

.article-full q:before {
    content: open-quote;
}

.article-full q:after {
    content: close-quote;
}

.article-full code {
    font-family: "Courier New", Courier, monospace;
    background-color: #e9ecef;
    padding: 0.2rem 0.4rem;
    font-size: 0.95rem;
    border-radius: 3px;
    color: #c7254e;
}

.article-full pre {
    background-color: #f4f4f4;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Brukerinput */
.article-full kbd {
    font-family: "Courier New", Courier, monospace;
    background-color: #eee;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.95rem;
    color: #333;
}

/* Fotnoter og smal tekst */
.article-full small {
    font-size: 0.85rem;
    color: #777;
}

/* Horisontal linje */
.article-full hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 1.5rem 0;
}

/* Grunnleggende stil for tabeller i .article-full */
.article-full table {
    width: 100%;                    /* Full bredde for responsiv tilpasning */
    border-collapse: collapse;      /* Fjerner mellomrom mellom celler */
    margin: 1.5rem 0;               /* Avstand over og under tabellen */
    font-size: 0.9rem;              /* Liten, lesbar fontstørrelse */
}

.article-full th, .article-full td {
    padding: 0.75rem;               /* Jevn padding i cellene */
    text-align: left;               /* Venstrejustering for lesbarhet */
    border: 1px solid #ddd;         /* Lys grense rundt cellene */
}

.article-full th {
    background-color: #f4f4f4;      /* Lys grå bakgrunn for header-raden */
    font-weight: bold;              /* Fet skrift for å fremheve headeren */
    color: #333;                    /* Mørk tekstfarge for god kontrast */
}

.article-full tr:nth-child(even) {
    background-color: #f9f9f9;      /* Stripet bakgrunn for annenhver rad */
}

/* Gjør tabellen rullbar på små skjermer */
.article-full table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;            /* Forhindrer tekstbrudd i cellene */
}


.article-full .article-body {


}

/* Justering for mindre skjermer */
@media (max-width: 600px) {
    .article-full {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .article-full h2 {
        font-size: 1.75rem;
    }

    .article-full h3 {
        font-size: 1.25rem;
    }
}

.tag-list {
    display: flex;
    flex-wrap: wrap;          /* Gjør at tags brytes til flere linjer */
    gap: 0.5rem;               /* Mellomrom mellom hver tag */
    margin-top: 1.5rem;        /* Litt avstand fra hovedinnholdet */
    padding: 0;
    list-style: none;          /* Fjerner punktmerking fra listen */
    
}

.tag-list li {
    margin: 0;
     list-style-type: none;
}

.tag-list a {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    color: #007acc;             /* Farge på tekst (tilpass gjerne) */
    background-color: #e3f2fd;  /* Lys blå bakgrunn for kontrast */
    border-radius: 20px;        /* Avrundede kanter som gir knappfølelse */
    text-decoration: none;      /* Fjerner understrekning */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover-effekt */
}

.tag-list a:hover {
    background-color: #007acc;  /* Mørkere blå bakgrunn ved hover */
    color: #fff;                /* Hvit tekst ved hover for kontrast */
}
.article-meta {
    font-size: 0.9em;             /* Litt mindre skriftstørrelse for en diskret stil */
    color: #555;                  /* En dempet gråfarge for å unngå at det dominerer */
    margin-bottom: 1em;           /* Litt avstand under teksten */
    font-family: Arial, sans-serif; /* Ryddig sans-serif font */
}

.article-meta span {
    margin-right: 0.5em;          /* Litt avstand mellom elementene */
}

.article-meta .publish-date,
.article-meta .author,
.article-meta .read-time {
    display: inline-block;        /* Viser dem på én linje */
}

.article-meta .author::before {
    content: "|";                 /* Skillelinje før forfatter */
    margin-right: 0.5em;
    color: #ccc;                  /* Lys grå skillefarge */
}

.article-meta .read-time::before {
    content: "|";                 /* Skillelinje før lesetid */
    margin-right: 0.5em;
    color: #ccc;
}
@media (max-width: 768px) {
    .article-meta {
        font-size: 0.75em;          /* Mindre skriftstørrelse på små skjermer */
        gap: 0.3em;                /* Mindre mellomrom mellom elementer */
    }
    .article-meta .author::before,
    .article-meta .read-time::before {
        content: "";               /* Fjern skillelinjer på små skjermer */
    }
}

/* Container for word forms */
.word_forms {
    list-style-type: none; /* Fjern standard punktmerking */
    margin: 0; /* Fjern standard marg */
    padding: 0; /* Fjern standard padding */
    background-color: #f0f8ff; /* Lys blå bakgrunn */
    border: 1px solid #cce7ff; /* Lys blå ramme */
    border-radius: 5px; /* Runde kanter */
    padding: 10px; /* Indre avstand */
    font-family: Arial, sans-serif; /* Moderne font */
}

/* Individuelle elementer i listen */
.word_forms li {
    padding: 8px; /* Indre avstand for hvert element */
    margin-bottom: 5px; /* Avstand mellom elementene */
    border-bottom: 1px solid #e0e0e0; /* Tynn linje mellom elementene */
    font-size: 16px; /* Standard skriftstørrelse */
    color: #333; /* Mørk grå tekst */
    display: flex; /* Lar deg justere layout for ikoner osv. */
    align-items: center; /* Sentraliserer innhold vertikalt */
}

/* Siste element i listen skal ikke ha en linje under */
.word_forms li:last-child {
    border-bottom: none;
}

/* Fremhev typene med fet tekst */
.word_forms li span.form_type {
    font-weight: bold; /* Gjør formtypen fet */
    color: #0056b3; /* Blå farge for formtypen */
    margin-left: auto; /* Plasser formtypen til høyre */
}

/* Fjern hover-effekt */
.word_forms li:hover {
    background-color: transparent; /* Ingen bakgrunnsendring */
    cursor: default; /* Standard musepeker (ingen håndikon) */
}

/* Valgfritt: Ikon eller symbol foran hver form */
.word_forms li:before {
    content: '•'; /* Punkt foran hvert element */
    color: #0056b3; /* Blå farge for punktet */
    font-size: 20px; /* Gjør punktet større */
    margin-right: 10px; /* Avstand mellom punkt og tekst */
    line-height: 1;
}

@media (max-width: 600px) {
    .word_forms li {
        padding: 5px;
        font-size: 14px;
    }

    .word_forms li:before {
        font-size: 16px;
    }
}
