/* ==========================================================
   GLOBAL KOMPONENT: HJÄLTE-TEXT (Endast Visuell Stil)
   ========================================================== */

/* 1. Grundstil för <h2>-taggen */
.hero-style-text h2 { 
    text-align: left; 
    margin: 0; 
    font-family: 'Space Mono', monospace !important;
    font-weight: 700 !important;
    font-style: normal !important;
}

/* 2. Stil för textinnehållet med highlight */
.hero-style-text .hero-text-content {
    display: inline; 
    background-color: #fffcfa; 
    color: #121212 !important;
    padding: 0em 0.1em !important; 
    -webkit-box-decoration-break: clone; 
    box-decoration-break: clone;
    font-family: 'Space Mono', monospace !important; 
    font-weight: 700 !important;
    font-style: normal !important; 
    line-height: 1.6;
    overflow-wrap: break-word; 
    word-wrap: break-word; 
    word-break: break-word; 
    hyphens: auto;
}

/* Fallbacks (Behålls - Kritiska!) */
.hero-style-text { 
    position: absolute; 
    z-index: 100; 
    visibility: hidden; 
    opacity: 0; 
}

.hero-style-text .hero-text-content { 
    font-size: 1.5rem; 
}

@media (max-width: 767px) { 
    .hero-style-text { 
        text-align: center; 
    } 
    .hero-style-text h2 { 
        align-items: center; 
        text-align: center; 
        width: 100%; 
    }
}



/* ==========================================================
   POSITIONERING FÖR VÄGVISAR-TEXT PÅ STARTSIDAN
   ========================================================== */

/* Denna regel är mer specifik (två klasser) och kommer därför
   att vinna över den generella regeln .text-highlight { position: relative; } */
/* ==========================================================
   VÄGVISAR-KORT STYLING OCH POSITIONERING
   ========================================================== */

/* 1. Stilen för den osynliga länken (från .full-card-link) */
/* Denna gör HELA kortet klickbart */
.signpost-card .full-card-link a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Ligger under texten */
    text-indent: -9999px; /* Dölj eventuell länktext */
    font-size: 0;
}

/* 2. Stilen OCH positioneringen för den synliga texten */
.signpost-card .signpost-text {
    /* === Visuell Stil (Din kod) === */
    background-color: #ffffff;
    color: #121212 !important;
    font-family: 'Space Mono', monospace !important;
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 1.5;
    display: inline-block; /* Får bakgrunden att sitta tajt */
    padding: 0em 0.2em !important;
    border-radius: 0;
    font-size: 2rem;
    text-decoration: none;
    
    /* === Positionering (NYTT) === */
    position: absolute;
    bottom: 20px; /* 20px från botten (sätts nu i CSS) */
    left: 0;      /* 0px från vänster (kant-i-kant) */
    z-index: 2;   /* Ligger OVANPÅ länken */

    /* VIKTIGT: Gör texten "genomklickbar" */
    pointer-events: none; 

    /* Åsidosätt H2-standarder */
    margin: 0;
}
.signpost-text a {
    color: inherit !important;
    text-decoration: none;
}
/* ==========================================================
   GÖR HELA VÄGVISAR-KORTET KLICKBART
   ========================================================== */

/* 1. Stilen för den osynliga länken (från .full-card-link) */
/* Vi siktar in oss på <a>-taggen inuti */
.full-card-link a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Lägg den över bilden (z-index 1) men under texten (z-index 2) */
    z-index: 1; 

    /* Dölj eventuell text för skärmläsare (valfritt) */
    text-indent: -9999px;
    font-size: 0;
}
.signpost-card .signpost-text {
    /* === Visuell Stil (Din kod) === */
    background-color: #ffffff;
    color: #121212 !important;
    font-family: 'Space Mono', monospace !important;
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 1.5;
    display: inline-block; /* Får bakgrunden att sitta tajt */
    padding: 0em 0.2em !important;
    border-radius: 0;
    font-size: 1.5rem;
    text-decoration: none;
    
    /* === Positionering (NYTT) === */
    position: absolute;
    bottom: 20px; /* 20px från botten (sätts nu i CSS) */
    left: 0;      /* 0px från vänster (kant-i-kant) */
    z-index: 2;   /* Ligger OVANPÅ länken */

    /* VIKTIGT: Gör texten "genomklickbar" */
    pointer-events: none; 

    /* Åsidosätt H2-standarder */
    margin: 0;
}