/* =========================
   LENKER I COVER-BLOKKER
   Fjerner understreking
   ========================= */

.wp-block-cover a,
.wp-block-cover a:hover {
    text-decoration: none !important;
}


/* =========================
   HOVEDOVERSKRIFT PÅ ARKIVSIDER
   (f.eks. kategori-sider)
   ========================= */

.wp-block-query-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: clamp(2.8rem, 6vw, 5rem);
    text-transform: uppercase !important;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1;
}


/* =========================
   INNLEGGSTITLER
   ========================= */

.wp-block-post-title,
.wp-block-latest-posts__post-title,
.wp-block-latest-posts__post-title a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: inherit !important;
    font-style: normal !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em;
}


/* =========================
   FORFATTERNAVN I "LATEST POSTS"
   ========================= */

.wp-block-latest-posts__post-author {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    font-style: normal !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em;
}


/* =========================
   STANDARD BRØDTEKST
   Gjelder alle avsnitt unntatt About-siden
   ========================= */

.wp-block-paragraph:not(.about-text) {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em;
}


/* =========================
   BILDE-HOVER
   Forsidekategorier, gallerier,
   featured images og latest posts
   ========================= */

.gallery-tile,
.wp-block-latest-posts__featured-image,
.wp-block-gallery .wp-block-image,
.wp-block-post-featured-image,
.wp-block-latest-posts__featured-image a,
.wp-block-post-featured-image a {
    overflow: hidden;
}

.wp-block-latest-posts__featured-image a,
.wp-block-post-featured-image a {
    display: block;
}

.gallery-tile img,
.wp-block-latest-posts__featured-image img,
.wp-block-gallery img,
.wp-block-post-featured-image img {
    transition: transform 0.5s ease;
}

.gallery-tile:hover img,
.wp-block-latest-posts__featured-image:hover img,
.wp-block-gallery img:hover,
.wp-block-post-featured-image:hover img {
    transform: scale(1.03);
}


/* =========================
   MENY-HOVER
   Zoom + animert understrek
   ========================= */

.wp-block-navigation-item__content {
    position: relative;
}

.wp-block-navigation-item__label {
    display: inline-block;
    transition: transform 0.2s ease;
}

.wp-block-navigation-item__content:hover .wp-block-navigation-item__label {
    transform: scale(1.08);
}

.wp-block-navigation-item__content::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.wp-block-navigation-item__content:hover::after {
    transform: scaleX(1);
}


/* =========================
   CONTACT-SIDEN
   GET IN TOUCH-seksjonen
   ========================= */

.jsphoto-contact-wrapper h1,
.jsphoto-contact-wrapper h2,
.jsphoto-contact-wrapper h3,
.jsphoto-contact-wrapper h4 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
}

.jsphoto-contact-wrapper p {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}


/* =========================
   ABOUT-SIDEN
   Intro-teksten under bildet
   ========================= */

.about-text,
.about-text p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}