/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-04rn7b0c4p] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-04rn7b0c4p] {
    flex: 1;
}

.content[b-04rn7b0c4p] {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 1.1rem;
}

#blazor-error-ui[b-04rn7b0c4p] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-04rn7b0c4p] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

 
.main-footer[b-04rn7b0c4p] {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px;
    border-top: 1px solid #333;
}

.footer-container[b-04rn7b0c4p] {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 3em;
}

.footer-logo[b-04rn7b0c4p] {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-links h4[b-04rn7b0c4p], .footer-contact h4[b-04rn7b0c4p] {
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: whitesmoke;
   
}

.footer-links ul[b-04rn7b0c4p] {
    list-style: none;
    padding: 0;
}

.footer-links li[b-04rn7b0c4p] {
    margin-bottom: 10px;
}

.footer-links a[b-04rn7b0c4p], .footer-contact a[b-04rn7b0c4p] {
    color: dimgrey;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

    .footer-links a:hover[b-04rn7b0c4p], .footer-contact a:hover[b-04rn7b0c4p] {
        color: #22cb8e;
    }

 
.back-to-top[b-04rn7b0c4p] {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 1000;
    transition: all 0.3s ease;
    pointer-events: all;
    opacity: 0; 
    visibility: hidden;
}
.map-wrapper[b-04rn7b0c4p] {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    line-height: 0;
}

.footer-address[b-04rn7b0c4p] {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #ffffff; 
    opacity: 0.9;
    display: block;
}
 
[data-theme='dark'] .map-wrapper[b-04rn7b0c4p] {
    filter: grayscale(20%) contrast(90%) brightness(80%);
    border: 1px solid var(--nav-border);
}

     
    .back-to-top.visible[b-04rn7b0c4p] {
        opacity: 1;
        visibility: visible;
    }

     
    .back-to-top:hover[b-04rn7b0c4p] {
        transform: translateY(-5px);  
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
    }

     
    .back-to-top:active[b-04rn7b0c4p] {
        transform: translateY(2px);
    }

 
[data-theme='dark'] .back-to-top[b-04rn7b0c4p] {
    background: rgba(0, 0, 0, 0.2);
}

[data-theme='light'] .back-to-top[b-04rn7b0c4p] {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

    [data-theme='light'] .back-to-top:hover[b-04rn7b0c4p] {
        background: rgba(0, 0, 0, 0.85);
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
body[b-xns8h2ynsv] {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background 0.3s ease, color 0.3s ease;
    margin: 0;
}

 
#header[b-xns8h2ynsv] {
    background: url(/media/headerImageNav.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;  
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 4rem;
}

    #header[b-xns8h2ynsv]::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4);  
        z-index: -1;  
    }

.header-container[b-xns8h2ynsv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 0.5rem;
}

.logo[b-xns8h2ynsv] {
    position: relative;
    top: 10%;
    display: flex;
}

    .logo img[b-xns8h2ynsv] {
        height: 2.5rem;
        width: auto;
        transition: transform 0.3s ease;
        filter: invert(1) brightness(75%);
    }

.nav-controls[b-xns8h2ynsv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle-btn[b-xns8h2ynsv],
.hamburger-btn[b-xns8h2ynsv] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.theme-toggle-btn[b-xns8h2ynsv] {
    filter: invert(1) brightness(75%);
    outline:none;
}

 
.bar[b-xns8h2ynsv] {
    width: 30px;
    height: 3px;
    background-color: white;
    display: block;
    position: relative;
    transition: background 0.3s;
}

    .bar[b-xns8h2ynsv]::before,
    .bar[b-xns8h2ynsv]::after {
        content: "";
        position: absolute;
        width: 30px;
        height: 3px;
        background-color: white;
        left: 0;
        transition: transform 0.3s, top 0.3s;
    }

    .bar[b-xns8h2ynsv]::before {
        top: -8px;
    }

    .bar[b-xns8h2ynsv]::after {
        top: 8px;
    }

    .bar.animate[b-xns8h2ynsv] {
        background-color: transparent;
    }

        .bar.animate[b-xns8h2ynsv]::before {
            top: 0;
            transform: rotate(45deg);
        }

        .bar.animate[b-xns8h2ynsv]::after {
            top: 0;
            transform: rotate(-45deg);
        }

 
.nav-menu[b-xns8h2ynsv] {
    position: fixed;
    top: 4rem;
    right: -100%;
    width: 100%;
    height: calc(100vh - 4rem);
    background-color: var(--menu-bg);
    transition: right 0.4s ease-in-out;
}

    .nav-menu.open[b-xns8h2ynsv] {
        right: 0;
    }

    .nav-menu ul[b-xns8h2ynsv] {
        list-style: none;
        padding: 2rem;
        margin: 0;
    }

    .nav-menu li a[b-xns8h2ynsv] {
        color: var(--text-color);
        font-size: 1.5rem;
        display: block;
        padding: 1rem 0;
        text-decoration: none;
        border-bottom: 1px solid var(--nav-border);
    }

        .nav-menu li a:hover[b-xns8h2ynsv] {
            opacity: 0.7;
        }

 
@media (min-width: 768px) {
    #header[b-xns8h2ynsv] {
        position: relative;
        height: 45vh;
        width: 100%;
        overflow: hidden;  
    }

    .header-container[b-xns8h2ynsv] {
        position: relative;
        bottom: 40%;
    }

    .nav-controls[b-xns8h2ynsv] {
        order: 1;
    }

    .hamburger-btn[b-xns8h2ynsv] {
        display: none;
    }

    .nav-menu[b-xns8h2ynsv] {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
    }

        .nav-menu ul[b-xns8h2ynsv] {
            display: flex;
            gap: 1rem;
            padding: 0;
            flex-direction: row;
        }

        .nav-menu li a[b-xns8h2ynsv] {
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            border-bottom: none;
            color: white;
        }

    .header-title[b-xns8h2ynsv] {
        position: absolute;
        top: calc(50% + 10rem);
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 10;
        color: white;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        pointer-events: none;  
    }

         
        .header-title[b-xns8h2ynsv]::before {
            content: 'WEBBHJÄLTARNA';
            display: block;
            font-size: 4rem;
            font-weight: 800;
            letter-spacing: 5px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);  
        }

         
        .header-title[b-xns8h2ynsv]::after {
            content: 'Vi fixar en snygg webbsida efter era behov från 14 990';
            display: block;
            font-size: 1.5rem;
            font-weight: 300;
        }

    .header-buttons[b-xns8h2ynsv] {
        display: flex;
        justify-content: center;
        align-items: center;  
        order: 1;
        gap: 2rem; 
        margin-top: 2rem; 
        pointer-events: all;

    }

         
        .header-buttons button[b-xns8h2ynsv],
        .header-buttons a[b-xns8h2ynsv] {
            padding: 12px 28px;
            border-radius: 12px;  
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
             
            background: rgba(255, 255, 255, 0.1);  
            color: white;
            backdrop-filter: blur(5px);  
             
            box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3), -2px -2px 10px rgba(255, 255, 255, 0.1);
        }

             
            .header-buttons button:hover[b-xns8h2ynsv],
            .header-buttons a:hover[b-xns8h2ynsv] {
                transform: translateY(-2px);
                background: rgba(255, 255, 255, 0.2);
                box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.4), -3px -3px 15px rgba(255, 255, 255, 0.2);
            }

             
            .header-buttons button:active[b-xns8h2ynsv],
            .header-buttons a:active[b-xns8h2ynsv] {
                transform: translateY(1px);
                box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.3), inset -2px -2px 8px rgba(255, 255, 255, 0.1);
            }
        
        .logo img[b-xns8h2ynsv] {
        height: 4rem;
    }
}

 
@media (max-width: 767px) {
    .header-title[b-xns8h2ynsv] {
        display: none;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-iue5ys5og8],
.components-reconnect-repeated-attempt-visible[b-iue5ys5og8],
.components-reconnect-failed-visible[b-iue5ys5og8],
.components-pause-visible[b-iue5ys5og8],
.components-resume-failed-visible[b-iue5ys5og8],
.components-rejoining-animation[b-iue5ys5og8] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-iue5ys5og8],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-iue5ys5og8],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-iue5ys5og8],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-iue5ys5og8],
#components-reconnect-modal.components-reconnect-retrying[b-iue5ys5og8],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-iue5ys5og8],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-iue5ys5og8],
#components-reconnect-modal.components-reconnect-failed[b-iue5ys5og8],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-iue5ys5og8] {
    display: block;
}


#components-reconnect-modal[b-iue5ys5og8] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-iue5ys5og8 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-iue5ys5og8 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-iue5ys5og8 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-iue5ys5og8]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-iue5ys5og8 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-iue5ys5og8 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-iue5ys5og8 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-iue5ys5og8 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-iue5ys5og8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-iue5ys5og8] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-iue5ys5og8] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-iue5ys5og8] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-iue5ys5og8] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-iue5ys5og8] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-iue5ys5og8] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-iue5ys5og8 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-iue5ys5og8] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-iue5ys5og8 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/AboutUs.razor.rz.scp.css */

.aboutButton[b-c0scpt8fw2] {
    padding: 12px 28px;
    border-radius: 12px;  
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
     
    background-color: var(--bg-color);  
    color: var(--text-color);
    backdrop-filter: blur(5px);  
     
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3), 0px 0px 10px rgba(255, 255, 255, 0.1);
}

.aboutButton:hover[b-c0scpt8fw2] {
    transform: translateY(-2px);
}

    .aboutButton:hover[b-c0scpt8fw2] {
        transform: translateY(-2px);
        box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.4), 0px 0px 15px rgba(255, 255, 255, 0.2);
    }

    .aboutButton:active[b-c0scpt8fw2] {
        transform: translateY(1px);
    }

.aboutContainer[b-c0scpt8fw2] {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3em;
    text-wrap: wrap;
}


    .aboutContainer p[b-c0scpt8fw2] {
        padding: 2em;
        max-width: 40em;
    }
/* /Components/Pages/BecomeAHero.razor.rz.scp.css */
.hero-recruitment-section[b-pbovqpco1o] {
    padding: 80px 0;
    background-color: var(--bg-color);  
}

.main-title[b-pbovqpco1o] {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.divider-center[b-pbovqpco1o] {
    width: 60px;
    height: 4px;
    background: #1b6ec2;
    border: none;
    margin: 1.5rem auto;
    border-radius: 2px;
}

.image-container[b-pbovqpco1o] {
    margin-bottom: 2.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.recruitment-banner[b-pbovqpco1o] {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

    .recruitment-banner:hover[b-pbovqpco1o] {
        transform: scale(1.02);
    }

.hero-text-box[b-pbovqpco1o] {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lead-text[b-pbovqpco1o] {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.coffee-invite[b-pbovqpco1o] {
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
}

.coffee-icon[b-pbovqpco1o] {
    font-size: 1.8rem;
    color: #1b6ec2;
}

.cta-container[b-pbovqpco1o] {
    margin-top: 2rem;
}

.aboutButton[b-pbovqpco1o] {
    display: inline-flex !important;
    padding: 12px 28px;
    border-radius: 12px;  
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
     
    background-color: var(--bg-color);
    color: var(--text-color);
    backdrop-filter: blur(5px);  
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3), -2px -2px 10px rgba(255, 255, 255, 0.1);
}

    .aboutButton:hover[b-pbovqpco1o] {
        transform: translateY(-2px);
        box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.4), -3px -3px 15px rgba(255, 255, 255, 0.2);
    }
/* /Components/Pages/ContactUs.razor.rz.scp.css */
h2[b-1uyys11p9r] {
    margin-top: 2em;
}

.subtitle[b-1uyys11p9r]{
    text-align:center;
}

.contact-grid[b-1uyys11p9r] {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 30px;
    text-align: left;
    margin-top: 30px;
    vertical-align: middle;
    margin-bottom: 3em;
}

.contact-info[b-1uyys11p9r] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item[b-1uyys11p9r] {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item a[b-1uyys11p9r]{
color: dimgrey;
text-decoration: none;
transition: color 0.2s;
font-weight: 500;
}

    .info-item a:hover[b-1uyys11p9r] {
        color: #22cb8e;
    }

.info-item iconify-icon[b-1uyys11p9r] {
    font-size: 1.5rem;
    color: var(--text-color);
    flex-shrink: 0;
    margin-top: 2px;
}

    .info-item p[b-1uyys11p9r] {
        margin: 0;
    }

input[b-1uyys11p9r], textarea[b-1uyys11p9r] {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 0.8em;
    background-color: var(--bg-color);
    border: 1px solid;
    color: var(--text-color);
    transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

    [data-theme='dark'] input[b-1uyys11p9r],
    [data-theme='dark'] textarea[b-1uyys11p9r] {
        border-color: #444;
    }

    input[b-1uyys11p9r]::placeholder,
    textarea[b-1uyys11p9r]::placeholder {
        color: #888;
    }

    textarea[b-1uyys11p9r] {
        max-height: 400px;
        min-height: 100px;
    }

        input:focus[b-1uyys11p9r],
        textarea:focus[b-1uyys11p9r] {
            border-color: var(--accent-color);
            outline: none;
        }

    [data-theme='dark'] input:focus[b-1uyys11p9r],
    [data-theme='dark'] textarea:focus[b-1uyys11p9r] {
        border-color: var(--accent-color);
    }

    .form-group label[b-1uyys11p9r] {
        margin-bottom: 10px;
        color: var(--text-color);
        display: block;
    }

    .required[b-1uyys11p9r] {
        color: #e50000;
        font-weight: bold;
    }

    [data-theme='dark'] .required[b-1uyys11p9r] {
        color: #ff6b6b;
    }

    .invalid-input[b-1uyys11p9r] {
        border-color: #e50000 !important;
        animation: shake-b-1uyys11p9r 0.3s;
    }

    .error-message[b-1uyys11p9r] {
        color: #e50000;
        font-size: 0.85rem;
        display: block;
        margin-top: -0.5em;
        margin-bottom: 0.8em;
        font-weight: 400;
    }

    @keyframes shake-b-1uyys11p9r {
        0%, 100% {
            transform: translateX(0);
        }

        25% {
            transform: translateX(-5px);
        }

        75% {
            transform: translateX(5px);
        }
    }

    [data-theme='dark'] .error-message[b-1uyys11p9r] {
        color: #ff6b6b;
    }

    button[type="submit"][b-1uyys11p9r],
    .btn-send[b-1uyys11p9r] {
        padding: 12px 28px;
        border-radius: 12px;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        background-color: var(--bg-color);
        color: var(--text-color);
        backdrop-filter: blur(5px);
        box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3), -2px -2px 10px rgba(255, 255, 255, 0.1);
    }

        button[type="submit"]:hover[b-1uyys11p9r],
        .btn-send:hover[b-1uyys11p9r] {
            transform: translateY(-2px);
        }

        button[type="submit"]:disabled[b-1uyys11p9r],
        .btn-send:disabled[b-1uyys11p9r] {
            opacity: 0.6;
            cursor: not-allowed;
        }

    [data-theme='dark'] button[type="submit"][b-1uyys11p9r],
    [data-theme='dark'] .btn-send[b-1uyys11p9r] {
        box-shadow: 0px 0px 5px #888;
    }

    .success-message[b-1uyys11p9r] {
        background-color: #4caf50;
        color: white;
        padding: 12px 20px;
        border-radius: 8px;
        text-align: center;
        font-weight: 600;
        animation: slideIn-b-1uyys11p9r 0.3s ease;
    }

    @keyframes slideIn-b-1uyys11p9r {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    [data-theme='dark'] .success-message[b-1uyys11p9r] {
        background-color: #66bb6a;
    }

    @media (min-width: 768px) {
        .contact-grid[b-1uyys11p9r] {
            grid-template-columns: 1.5fr 1fr;
            align-items: center;
        }

        .contact-form-container[b-1uyys11p9r] {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1em 1em;
        }

        .form-group[b-1uyys11p9r] {
            width: 400px;
        }
    }

    .icon[b-1uyys11p9r] {
        font-size: 1.4rem;
        color: #1b6ec2;
        vertical-align: middle;
        margin-right: 12px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
    }
/* /Components/Pages/Error.razor.rz.scp.css */
article[b-71kr3v7pkp] {
    text-align: left;
    padding: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
/* /Components/Pages/Home.razor.rz.scp.css */
 

[b-gr0wdn2a0q] .content-section,
[b-gr0wdn2a0q] .contact-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    text-align: center;
}

[b-gr0wdn2a0q] .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

[b-gr0wdn2a0q] h2,
[b-gr0wdn2a0q] .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.alt-bg[b-gr0wdn2a0q] {
    background-color: var(--nav-border);
}

 

@media (min-width: 768px) {

    [b-gr0wdn2a0q] .content-section,
    [b-gr0wdn2a0q] .contact-section {
        padding: 120px 20px;
    }

    [b-gr0wdn2a0q] .container {
        max-width: 900px;
        margin: 0 auto;
    }

    [b-gr0wdn2a0q] h2,
    [b-gr0wdn2a0q] .section-title {
        font-size: 2.5rem;
    }
}
/* /Components/Pages/News/AlkosmartIRadio.razor.rz.scp.css */
 
.article-image-grid[b-35p6eelw9x] {
    display: grid;
    grid-template-columns: 1fr;  
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}

 
.image-item[b-35p6eelw9x] {
    width: 100%;
    text-align: center;
}

    .image-item img[b-35p6eelw9x] {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        object-fit: cover;
        display: block;  
    }

.image-caption[b-35p6eelw9x] {
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
}

 
.radio-link-box[b-35p6eelw9x] {
    background: rgba(27, 110, 194, 0.05);
    padding: 25px;
    border-radius: 12px;
    margin: 2.5rem 0;
    border-left: 5px solid #1b6ec2;
}

.radio-btn[b-35p6eelw9x] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: #1b6ec2;
    font-weight: 600;
    text-decoration: none;
}

    .radio-btn:hover[b-35p6eelw9x] {
        text-decoration: underline;
    }

 
[data-theme='dark'] .image-caption[b-35p6eelw9x] {
    color: #aaa;
}

[data-theme='dark'] .radio-link-box[b-35p6eelw9x] {
    background: rgba(255, 255, 255, 0.03);
    border-left-color: #4da3ff;
}

a[b-35p6eelw9x]{
    text-decoration:none;
}

 
@media (min-width: 768px) {
    .article-image-grid[b-35p6eelw9x] {
        grid-template-columns: 1fr 1fr;  
        gap: 40px;  
    }
}
/* /Components/Pages/News/AlltDuBehoverVetaOmGravmaskiner.razor.rz.scp.css */
 
.news-article-container[b-boj7mu558k] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}

.news-body[b-boj7mu558k] {
    line-height: 1.8;
    font-size: 1.1rem;
}

.main-title[b-boj7mu558k] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

 
.fact-grid[b-boj7mu558k] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 992px) {
    .fact-grid[b-boj7mu558k] {
         
        grid-template-columns: 1fr 1fr;
    }

    .full-width[b-boj7mu558k] {
        grid-column: 1 / -1;
    }

    .fact-item:not(.full-width)[b-boj7mu558k] {
        max-width: 500px;
        justify-self: center;
        width: 100%;
    }
}

 
.fact-item[b-boj7mu558k] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;  
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .fact-item:hover[b-boj7mu558k] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border-color: #1b6ec2;
    }

    .fact-item h3[b-boj7mu558k] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .fact-item.highlighted[b-boj7mu558k] {
        background: #fcfcfc;
        border-left: 5px solid #00bc98;
    }

 
.project-image[b-boj7mu558k] {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto 2.5rem auto;
}

 
.summary-box[b-boj7mu558k] {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 20px;
    background: #f0f7ff;
    border-left: 6px solid #1b6ec2;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

    .summary-box a[b-boj7mu558k] {
        transition: opacity 0.2s ease;
    }

        .summary-box a:hover[b-boj7mu558k] {
            opacity: 0.7;
        }

.article-footer[b-boj7mu558k] {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 2rem;
}

 
[data-theme="dark"] .fact-item[b-boj7mu558k] {
    background: #1e1e1e;
    border-color: #333333;
    color: #e0e0e0;
}

    [data-theme="dark"] .fact-item:hover[b-boj7mu558k] {
        border-color: #3a8ee6;
    }

    [data-theme="dark"] .fact-item h3[b-boj7mu558k] {
        color: #3a8ee6;
    }

[data-theme="dark"] .summary-box[b-boj7mu558k] {
    background: #1a2635 !important;
    color: #e0e0e0;
}

 
.dreamgrow-style[b-boj7mu558k] {
    font-family: 'Comfortaa', cursive;
    letter-spacing: -0.5px;
    font-size: 1.2rem;
}

.dream-thin[b-boj7mu558k] {
    font-weight: 300;
    color: #333;
}

.grow-bold[b-boj7mu558k] {
    font-weight: 700;
    color: #1b6ec2;
}
/* /Components/Pages/News/BilligtBraEllerBada.razor.rz.scp.css */
/* 1. CONTAINER & TYPOGRAFI
   Styr sidans maxbredd och huvudrubriken. */
.news-article-container[b-e44h46oivu] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title[b-e44h46oivu] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* 2. GRID-SYSTEM (Mobile First)
   En kolumn på mobilen, två kolumner på skärmar > 768px. */
.fact-grid[b-e44h46oivu] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fact-grid[b-e44h46oivu] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3. KORT & EFFEKTER (fact-item)
   Hanterar utseende, rundade hörn (24px) och "lyft-effekten" vid hover. */
.fact-item[b-e44h46oivu] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
}

    .fact-item:hover[b-e44h46oivu] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-color: #1b6ec2;
    }

    .fact-item h3[b-e44h46oivu] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* 4. SPECIAL-RUTOR
   Hanterar "highlighted" (grön kant) och full-width (över båda kolumnerna). */
    .fact-item.highlighted[b-e44h46oivu] {
        background: #fcfcfc;
        border-left: 5px solid #00bc98;
    }

.full-width[b-e44h46oivu] {
    grid-column: 1 / -1;
}

/* 5. BILDER (Chrillezcopy-stil)
   Snygg inramning med skugga och rundade hörn för huvudbilder och grafer. */
.project-image[b-e44h46oivu], .graph-wrapper img[b-e44h46oivu] {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255,255,255,0.05);
}

/* 6. BONUS & CTA
   Sektioner som sticker ut lite extra, t.ex. sammanfattningar eller citat. */
.bonus-section[b-e44h46oivu], .summary-box[b-e44h46oivu] {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 20px;
    background: #f0f7ff;
    border-left: 6px solid #1b6ec2;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* 7. DARK MODE
   Säkerställer läsbarhet när användaren har mörkt tema aktiverat. */
[data-theme="dark"] .fact-item[b-e44h46oivu] {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.05);
    color: #e0e0e0;
}

[data-theme="dark"] .bonus-section[b-e44h46oivu],
[data-theme="dark"] .summary-box[b-e44h46oivu] {
    background: #1a2635 !important;
    color: #e0e0e0;
}

.end-section[b-e44h46oivu] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}
/* /Components/Pages/News/ByggaPlattformarInteInnehall.razor.rz.scp.css */
 
.news-article-container[b-fk771m9m2o] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title[b-fk771m9m2o] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

 
.fact-grid[b-fk771m9m2o] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .fact-grid[b-fk771m9m2o] {
        grid-template-columns: 1fr 1fr;
    }

    .full-width[b-fk771m9m2o] {
        grid-column: 1 / -1;
    }

    .fact-item:not(.full-width)[b-fk771m9m2o] {
        max-width: 500px;
        justify-self: center;
        width: 100%;
    }
}

 
.fact-item[b-fk771m9m2o] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

    .fact-item:hover[b-fk771m9m2o] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .fact-item h3[b-fk771m9m2o] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .fact-item.highlighted[b-fk771m9m2o] {
        background: #fcfcfc;
        border-left: 5px solid #00bc98;
    }

 
.project-image[b-fk771m9m2o] {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto 2rem auto;
}

 
.summary-box[b-fk771m9m2o] {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 20px;
    background: #f0f7ff;
    border-left: 6px solid #1b6ec2;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.article-footer[b-fk771m9m2o] {
    text-align: center;
    margin-top: 4rem;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

    .article-footer iconify-icon[b-fk771m9m2o] {
        font-size: 1.8rem;
        color: #d32f2f;
        transition: transform 0.3s ease;
    }

    .article-footer:hover iconify-icon[b-fk771m9m2o] {
        transform: scale(1.2);
    }

 
[data-theme="dark"] .fact-item[b-fk771m9m2o] {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.1);
    color: #e0e0e0;
}

[data-theme="dark"] .summary-box[b-fk771m9m2o] {
    background: #1a2635 !important;
}
/* /Components/Pages/News/EnHemsidaForAllaEnheter.razor.rz.scp.css */
.ingress[b-6y6ipjm9eq] {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
}


.article-header-image[b-6y6ipjm9eq] {
    margin-bottom: 2.5rem;
}

.sharpen-image[b-6y6ipjm9eq] {
    width: 100%;
    border-radius: 12px;
    image-rendering: pixelated;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

 
.comparison-grid[b-6y6ipjm9eq] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 3rem 0;
}

.comparison-card[b-6y6ipjm9eq] {
    background: rgba(27, 110, 194, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(27, 110, 194, 0.1);
}

    .comparison-card iconify-icon[b-6y6ipjm9eq] {
        font-size: 3rem;
        color: #1b6ec2;
        margin-bottom: 15px;
    }

    .comparison-card h3[b-6y6ipjm9eq] {
        margin-bottom: 10px;
        font-size: 1.4rem;
    }

.highlight-box[b-6y6ipjm9eq] {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 0 5px #808080;
}

.cta-section[b-6y6ipjm9eq] {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: #1a1a1a;
    color: white;
    border-radius: 20px;
    margin-bottom: 20px;
}

.contact-btn[b-6y6ipjm9eq] {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 30px;
    background: #1b6ec2;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease;
}

    .contact-btn:hover[b-6y6ipjm9eq] {
        background: #155596;
    }

   

 
@media (min-width: 768px) {
    .comparison-grid[b-6y6ipjm9eq] {
        grid-template-columns: 1fr 1fr;
    }
}

 
[data-theme='dark'] .comparison-card[b-6y6ipjm9eq] {
    background: rgba(255, 255, 255, 0.03);
    border-color: #333;
}

[data-theme='dark'] .highlight-box[b-6y6ipjm9eq] {
    background: rgba(255, 255, 255, 0.05);
    color: #eee;
}
/* /Components/Pages/News/FemFaktaOmHurEraKunderAnvanderHemsidan.razor.rz.scp.css */
 
.news-article-container[b-3bx3qxiito] {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.news-body[b-3bx3qxiito] {
    line-height: 1.8;
    font-size: 1.1rem;
}

.fact-list[b-3bx3qxiito] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.fact-item[b-3bx3qxiito] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

    .fact-item:hover[b-3bx3qxiito] {
        transform: translateY(-4px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        border-color: #1b6ec2;
    }

@media (min-width: 768px) {
    .fact-list[b-3bx3qxiito] {
        grid-template-columns: repeat(2, 1fr);
    }

    .fact-item:nth-child(5)[b-3bx3qxiito] {
        grid-column: span 2;
        background: #fcfcfc;
        padding: 2rem;
    }
}

.fact-item h3[b-3bx3qxiito] {
    margin-top: 0;
    color: #1b6ec2;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.bonus-section[b-3bx3qxiito] {
    margin-top: 4rem;
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid #1b6ec2;
    background: #f0f7ff;
    margin-bottom: 2em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

 

[data-theme="dark"] .fact-item[b-3bx3qxiito] {
    background: #1e1e1e;  
    border-color: #333333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);  
    color: #e0e0e0;
}

    [data-theme="dark"] .fact-item:hover[b-3bx3qxiito] {
        border-color: #3a8ee6;  
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    [data-theme="dark"] .fact-item h3[b-3bx3qxiito] {
        color: #3a8ee6;  
    }

@media (min-width: 768px) {
    [data-theme="dark"] .fact-item:nth-child(5)[b-3bx3qxiito] {
        background: #252525;  
    }
}

[data-theme="dark"] .bonus-section[b-3bx3qxiito] {
    background: #1a2635;  
    border-left-color: #3a8ee6;
    color: #e0e0e0;
}

[data-theme="dark"] .news-meta[b-3bx3qxiito] {
    color: #aaaaaa;
}

[data-theme="dark"] .divider[b-3bx3qxiito] {
    opacity: 0.1;
    border-color: #ffffff;
}

.dreamgrow-style[b-3bx3qxiito] {
    font-family: 'Comfortaa', cursive;
    letter-spacing: -0.5px;
    font-size: 1.2rem;
}

.dream-thin[b-3bx3qxiito] {
    font-weight: 300;  
    color: #333;
}

.grow-bold[b-3bx3qxiito] {
    font-weight: 700;  
    color: #1b6ec2;  
}
/* /Components/Pages/News/ForstaIntrycketTips.razor.rz.scp.css */
.news-article-container[b-ipwu7wyw4r] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-article-img[b-ipwu7wyw4r] {
    max-width: 250px;
    display: block;
    margin: 0 auto 2.5rem auto;
}

.ingress[b-ipwu7wyw4r] {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
}

 
.comparison-grid[b-ipwu7wyw4r] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .comparison-grid[b-ipwu7wyw4r] {
        grid-template-columns: 1fr 1fr;
    }
}

.comparison-card[b-ipwu7wyw4r] {
    background: rgba(27, 110, 194, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(27, 110, 194, 0.1);
}

    .comparison-card iconify-icon[b-ipwu7wyw4r] {
        font-size: 3rem;
        color: #1b6ec2;
        margin-bottom: 15px;
    }

    .comparison-card h3[b-ipwu7wyw4r] {
        margin-bottom: 10px;
        font-size: 1.3rem;
        color: #1b6ec2;
    }

 
.highlight-box[b-ipwu7wyw4r] {
    padding: 2rem;
    background: #fff5f5;
    border-left: 5px solid #d32f2f;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

    .highlight-box h3[b-ipwu7wyw4r] {
        color: #d32f2f;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

 
.cta-section[b-ipwu7wyw4r] {
    margin-top: 4rem;
    text-align: center;
    padding: 3.5rem;
    background: #1a1a1a;
    color: white;
    border-radius: 20px;
}

.contact-btn[b-ipwu7wyw4r] {
    display: inline-block;
    padding: 12px 35px;
    background: #1b6ec2;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
}

.article-footer[b-ipwu7wyw4r] {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sharpen-image[b-ipwu7wyw4r] {
    border-radius: 12px;
    image-rendering: pixelated;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
/* /Components/Pages/News/InstagramOkaDinOrganiskaRackvidd.razor.rz.scp.css */
.ingress[b-uvogiz8wi6] {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-color);
}

 
.article-image-grid[b-uvogiz8wi6] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.icon-display[b-uvogiz8wi6] {
    text-align: center;
}

.big-icon[b-uvogiz8wi6] {
    font-size: 180px;
    filter: drop-shadow(4px 4px 10px rgba(0,0,0,0.2));
}

 
.factors-grid[b-uvogiz8wi6] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 2rem 0;
}

.factor-card[b-uvogiz8wi6] {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

    .factor-card iconify-icon[b-uvogiz8wi6] {
        font-size: 2.5rem;
        color: #1b6ec2;
        margin-bottom: 15px;
    }

    .factor-card h3[b-uvogiz8wi6] {
        margin-bottom: 10px;
        font-size: 1.3rem;
    }

.big-icon[b-uvogiz8wi6] {
    font-size: 5rem;
    width: auto;
    height: auto;
     
    filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.2));
    image-rendering: crisp-edges;
}

.sharpen-image[b-uvogiz8wi6] {
     
    image-rendering: -moz-crisp-edges;
     
    image-rendering: -webkit-optimize-contrast;
     
    image-rendering: crisp-edges;
     
    image-rendering: pixelated;
}

 
@media (min-width: 768px) {
    .article-image-grid[b-uvogiz8wi6] {
        grid-template-columns: 1fr 1fr;
    }

    .factors-grid[b-uvogiz8wi6] {
        grid-template-columns: repeat(3, 1fr);
    }
}

 
[data-theme='dark'] .factor-card[b-uvogiz8wi6] {
    background: rgba(255, 255, 255, 0.03);
    border-color: #333;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
}

    [data-theme='dark'] .factor-card h3[b-uvogiz8wi6] {
        color: #4da3ff;
    }
/* /Components/Pages/News/InstagramTips.razor.rz.scp.css */
 
.news-article-container[b-u2hlkb1tw5] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.ingress[b-u2hlkb1tw5] {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
}

 
.project-image[b-u2hlkb1tw5] {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.sharpen-image[b-u2hlkb1tw5] {
    image-rendering: pixelated;  
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

 
.comparison-grid[b-u2hlkb1tw5] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .comparison-grid[b-u2hlkb1tw5] {
        grid-template-columns: 1fr 1fr;
    }
}

.comparison-card[b-u2hlkb1tw5] {
    background: rgba(27, 110, 194, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(27, 110, 194, 0.1);
    transition: transform 0.3s ease;
}

    .comparison-card:hover[b-u2hlkb1tw5] {
        transform: translateY(-5px);
    }

    .comparison-card iconify-icon[b-u2hlkb1tw5] {
        font-size: 3rem;
        color: #1b6ec2;
        margin-bottom: 15px;
    }

    .comparison-card h3[b-u2hlkb1tw5] {
        margin-bottom: 10px;
        font-size: 1.4rem;
    }

 
.highlight-box[b-u2hlkb1tw5] {
    padding: 2rem;
    background: #f8f9fa;
    border-left: 5px solid #1b6ec2;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

 
.cta-section[b-u2hlkb1tw5] {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: #1a1a1a;
    color: white;
    border-radius: 20px;
}

.contact-btn[b-u2hlkb1tw5] {
    display: inline-block;
    padding: 12px 30px;
    background: #1b6ec2;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease;
}

    .contact-btn:hover[b-u2hlkb1tw5] {
        background: #155596;
    }

 
.article-footer[b-u2hlkb1tw5] {
    text-align: center;
    margin-top: 4rem;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

 
[data-theme='dark'] .comparison-card[b-u2hlkb1tw5] {
    background: rgba(255, 255, 255, 0.03);
    border-color: #333;
}

[data-theme='dark'] .highlight-box[b-u2hlkb1tw5] {
    background: rgba(255, 255, 255, 0.05);
    color: #eee;
}
/* /Components/Pages/News/JobbaMedOss.razor.rz.scp.css */
 
.news-article-container[b-ueuw0t7zlt] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title[b-ueuw0t7zlt] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
}

 
.fact-list[b-ueuw0t7zlt] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fact-list[b-ueuw0t7zlt] {
        grid-template-columns: repeat(2, 1fr);
    }
}

 
.fact-item[b-ueuw0t7zlt] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

    .fact-item:hover[b-ueuw0t7zlt] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-color: #00bc98;
    }

    .fact-item h3[b-ueuw0t7zlt] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .fact-item.highlighted[b-ueuw0t7zlt] {
        border-left: 5px solid #00bc98;
        background: #fcfcfc;
    }

 
.bonus-section[b-ueuw0t7zlt] {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid #0077b5;
    background: #f0f7ff;
}

.linkedin-btn[b-ueuw0t7zlt] {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 20px;
    background: #0077b5;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: filter 0.2s;
}

    .linkedin-btn:hover[b-ueuw0t7zlt] {
        filter: brightness(1.1);
    }

 
[data-theme="dark"] .fact-item[b-ueuw0t7zlt] {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.1);
    color: #e0e0e0;
}

[data-theme="dark"] .bonus-section[b-ueuw0t7zlt] {
    background: #10161d;
    color: #e0e0e0;
}

 
.btn-contact[b-ueuw0t7zlt] {
    transition: transform 0.2s ease;
}

    .btn-contact:hover[b-ueuw0t7zlt] {
        transform: scale(1.05);
    }
/* /Components/Pages/News/KillerClownsTrygghet.razor.rz.scp.css */
 
.news-article-container[b-d42af25g26] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.ingress[b-d42af25g26] {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
}

 
.article-header-image[b-d42af25g26] {
    margin-bottom: 2.5rem;
    display:flex;
    justify-content:center;
    align-content:center;
}

.sharpen-image[b-d42af25g26] {
    width: 100%;
    border-radius: 12px;
    max-width: 300px;
    height: auto;
     
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

 
.comparison-grid[b-d42af25g26] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 3rem 0;
}

.comparison-card[b-d42af25g26] {
    background: rgba(27, 110, 194, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(27, 110, 194, 0.1);
    transition: transform 0.2s ease;
}

    .comparison-card:hover[b-d42af25g26] {
        transform: translateY(-5px);
    }

    .comparison-card iconify-icon[b-d42af25g26] {
        font-size: 3rem;
        color: #1b6ec2;
        margin-bottom: 15px;
    }

    .comparison-card h3[b-d42af25g26] {
        margin-bottom: 10px;
        font-size: 1.4rem;
        color: #1b6ec2;
    }

 
.highlight-box[b-d42af25g26] {
    padding: 2rem;
    background: #f8f9fa;
    border-left: 5px solid #1b6ec2;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

 
.cta-section[b-d42af25g26] {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: #1a1a1a;
    color: white;
    border-radius: 20px;
}

.contact-btn[b-d42af25g26] {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 30px;
    background: #1b6ec2;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease;
}

    .contact-btn:hover[b-d42af25g26] {
        background: #155596;
    }

 
@media (min-width: 768px) {
    .comparison-grid[b-d42af25g26] {
        grid-template-columns: 1fr 1fr;
    }
}

 
[data-theme='dark'] .comparison-card[b-d42af25g26] {
    background: rgba(255, 255, 255, 0.03);
    border-color: #333;
}

    [data-theme='dark'] .comparison-card h3[b-d42af25g26] {
        color: #3a8ee6;
    }

[data-theme='dark'] .highlight-box[b-d42af25g26] {
    background: rgba(255, 255, 255, 0.05);
    color: #eee;
}

[data-theme='dark'] .cta-section[b-d42af25g26] {
    background: #0d0d0d;
    border: 1px solid #333;
}
/* /Components/Pages/News/KonstenAttForenkla.razor.rz.scp.css */
.highlight-text[b-ww716zqre9] {
    font-size: 1.25rem;
    color: #800000;  
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.article-header-image[b-ww716zqre9] {
    margin-bottom: 2.5rem;
}

.sharpen-image[b-ww716zqre9] {
    width: 100%;
    border-radius: 12px;
    image-rendering: pixelated;  
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.quote-box[b-ww716zqre9] {
    background: rgba(0,0,0,0.03);
    padding: 20px;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    border: 1px dashed #ccc;
}

.summary-box[b-ww716zqre9] {
    margin-top: 3rem;
    padding: 25px;
    background: #fdfdfd;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid #eee;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.02);
}

    .summary-box iconify-icon[b-ww716zqre9] {
        font-size: 3rem;
        color: #1b6ec2;
    }

 
[data-theme='dark'] .highlight-text[b-ww716zqre9] {
    color: #ff8a8a;
}

[data-theme='dark'] .summary-box[b-ww716zqre9] {
    background: rgba(255,255,255,0.03);
    border-color: #333;
}
/* /Components/Pages/News/News.razor.rz.scp.css */
.container[b-3429hahb7o]{
    margin-top:3em;
    margin-bottom: 3em;
}

.news-grid[b-3429hahb7o] {
    display: grid;
     
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
    text-align: left;  
}

.news-card[b-3429hahb7o] {
    background: var(--card-bg, rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .news-card:hover[b-3429hahb7o] {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

.news-content[b-3429hahb7o] {
    padding: 1.5rem;
}

.news-meta[b-3429hahb7o] {
    font-size: 0.8rem;
    color: #888;
    display: block;
    margin-bottom: 0.5rem;
}

.news-content h3[b-3429hahb7o] {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: normal;
}

.news-content p[b-3429hahb7o] {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.read-more[b-3429hahb7o] {
    color: dimgrey;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

    .read-more:hover[b-3429hahb7o] {
        color: #22cb8e;
    }

 
.pagination[b-3429hahb7o] {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.page-numbers button[b-3429hahb7o] {
    padding: 0.5rem 1rem;
    border: 1px solid #22cb8e;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    cursor: pointer;
    margin: 0 4px;
}

    .page-numbers button:hover[b-3429hahb7o] {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
    }


    .page-numbers button.active[b-3429hahb7o] {
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: white;
    }

input[type='text'][b-3429hahb7o] {
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s ease;
    background-color: var(--bg-color);
    color: var(--text-color);
    border-color: var(--text-muted);
}

        input[type='text']:focus[b-3429hahb7o] {
            border: 1px solid var(--accent-color);
        }

        input[type='text'][b-3429hahb7o]::placeholder {
            color: var(--text-color);
        }

        .empty-news[b-3429hahb7o] {
            grid-column: 1/-1;
            justify-self: center;
            box-shadow: 0 15px 45px rgba(0,0,0,0.2);
        }
/* /Components/Pages/News/NuKorViTavling.razor.rz.scp.css */
 
.news-article-container[b-w2ylragf4h] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title[b-w2ylragf4h] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
}

 
.fact-list[b-w2ylragf4h] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fact-list[b-w2ylragf4h] {
        grid-template-columns: repeat(2, 1fr);
    }
}

 
.fact-item[b-w2ylragf4h] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

    .fact-item:hover[b-w2ylragf4h] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-color: #1b6ec2;
    }

    .fact-item h3[b-w2ylragf4h] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

     
    .fact-item.highlighted[b-w2ylragf4h] {
        background: #fcfcfc;
        border-left: 4px solid #00bc98;
    }

.full-width[b-w2ylragf4h] {
    grid-column: 1 / -1;
}

 
.bonus-section[b-w2ylragf4h] {
    margin: 2rem 0;
    padding: 2rem;
    background: #fffbf0;
    border-radius: 12px;
    border-left: 6px solid #e67e22;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

 
.btn-contact[b-w2ylragf4h] {
    transition: transform 0.2s ease;
}

    .btn-contact:hover[b-w2ylragf4h] {
        transform: scale(1.05);
    }

 
[data-theme="dark"] .fact-item[b-w2ylragf4h] {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.05);
    color: #e0e0e0;
}

[data-theme="dark"] .bonus-section[b-w2ylragf4h] {
    background: #231a10 !important;
    color: #e0e0e0;
}


.source-quote[b-w2ylragf4h] {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
    background: #fff9c4;  
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 12px;
    border-left: 4px solid #fbc02d;
    font-style: italic;
}

 
[data-theme="dark"] .source-quote[b-w2ylragf4h] {
    background: rgba(251, 192, 45, 0.1);
    color: #eee;
}
/* /Components/Pages/News/NyinflyttadeSciencePark.razor.rz.scp.css */
 
.news-article-container[b-fp34s01643] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title[b-fp34s01643] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
}

 
.fact-list[b-fp34s01643] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fact-list[b-fp34s01643] {
        grid-template-columns: repeat(2, 1fr);
    }
}

 
.fact-item[b-fp34s01643] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

    .fact-item:hover[b-fp34s01643] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-color: #1b6ec2;
    }

    .fact-item h3[b-fp34s01643] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

     
    .fact-item.highlighted[b-fp34s01643] {
        background: #fcfcfc;
        border-left: 4px solid #00bc98;
    }

 
.bonus-section[b-fp34s01643] {
    margin: 2rem 0;
    padding: 2rem;
    background: #f0f7ff;
    border-radius: 12px;
    border-left: 6px solid #1b6ec2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

    .bonus-section h3[b-fp34s01643] {
        margin-top: 0;
        color: #1b6ec2;
    }

 
.btn-contact[b-fp34s01643] {
    transition: transform 0.2s, filter 0.2s;
}

    .btn-contact:hover[b-fp34s01643] {
        transform: scale(1.05);
        filter: brightness(1.1);
    }

 
[data-theme="dark"] .fact-item[b-fp34s01643] {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.05);
    color: #e0e0e0;
}

[data-theme="dark"] .bonus-section[b-fp34s01643] {
    background: #1a2635 !important;
    color: #e0e0e0;
}

 
.brand-link[b-fp34s01643] {
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease, text-decoration 0.2s ease;
}

    .brand-link:hover[b-fp34s01643] {
        opacity: 0.8;
        text-decoration: underline;
    }

 
.science-park[b-fp34s01643] {
    color: rgb(235, 177, 0);  
}

.seekly[b-fp34s01643] {
    color: #00bc98;  
}

.webbkomfort[b-fp34s01643] {
    color: #0056b3;  
}
/* /Components/Pages/News/OmDuHade86400.razor.rz.scp.css */
 
.fact-grid[b-fw9vulwgkb] {
    display: grid;
    grid-template-columns: 1fr;  
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .fact-grid[b-fw9vulwgkb] {
         
        grid-template-columns: 2fr 1fr;
    }

         
        .fact-grid.reverse-layout[b-fw9vulwgkb] {
            grid-template-columns: 1fr 2fr;
        }
}

 
.summary-box[b-fw9vulwgkb] {
    margin-top: 3rem;
    padding: 25px;
    background: #fdfdfd;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid #eee;
     
    grid-column: 1 / -1;
}

 
.highlight-text[b-fw9vulwgkb] {
    font-size: 1.25rem;
    color: #800000;  
    font-weight: 500;
    margin: 2.5rem 0;
    text-align: center;
}

.fact-item[b-fw9vulwgkb] {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.2s ease;
}

    .fact-item:hover[b-fw9vulwgkb] {
        transform: translateY(-5px);
    }

    .fact-item.highlighted[b-fw9vulwgkb] {
        border-left: 6px solid #1b6ec2;
        background: #fcfdff;
    }

.quote-box[b-fw9vulwgkb] {
    background: rgba(0,0,0,0.03);
    padding: 25px;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    border: 1px dashed #ccc;
     
    grid-column: 1 / -1;
}

.sharpen-image[b-fw9vulwgkb] {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

 
[data-theme='dark'] .fact-item[b-fw9vulwgkb] {
    background: #1a1a1a;
    border-color: #333;
}

[data-theme='dark'] .summary-box[b-fw9vulwgkb] {
    background: rgba(255,255,255,0.03);
    border-color: #333;
}
/* /Components/Pages/News/ProduktivHostTipsOkadProduktivitet.razor.rz.scp.css */
 
.news-article-container[b-6fwt1uz7x4] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}

.news-body[b-6fwt1uz7x4] {
    line-height: 1.8;
    font-size: 1.1rem;
}

.main-title[b-6fwt1uz7x4] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

 
.fact-grid[b-6fwt1uz7x4] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 992px) {
    .fact-grid[b-6fwt1uz7x4] {
         
        grid-template-columns: 1fr 1fr;
    }

    .full-width[b-6fwt1uz7x4] {
        grid-column: 1 / -1;
    }

    .fact-item:not(.full-width)[b-6fwt1uz7x4] {
        max-width: 500px;
        justify-self: center;
        width: 100%;
    }
}

 
.fact-item[b-6fwt1uz7x4] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;  
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .fact-item:hover[b-6fwt1uz7x4] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border-color: #1b6ec2;
    }

    .fact-item h3[b-6fwt1uz7x4] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .fact-item.highlighted[b-6fwt1uz7x4] {
        background: #fcfcfc;
        border-left: 5px solid #00bc98;
    }

 
.project-image[b-6fwt1uz7x4] {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto 2.5rem auto;
}

 
.summary-box[b-6fwt1uz7x4] {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 20px;
    background: #f0f7ff;
    border-left: 6px solid #1b6ec2;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.article-footer[b-6fwt1uz7x4] {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

 
[data-theme="dark"] .fact-item[b-6fwt1uz7x4] {
    background: #1e1e1e;
    border-color: #333333;
    color: #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

    [data-theme="dark"] .fact-item:hover[b-6fwt1uz7x4] {
        border-color: #3a8ee6;
    }

    [data-theme="dark"] .fact-item h3[b-6fwt1uz7x4] {
        color: #3a8ee6;
    }

[data-theme="dark"] .summary-box[b-6fwt1uz7x4] {
    background: #1a2635 !important;
    color: #e0e0e0;
}

[data-theme="dark"] .news-meta[b-6fwt1uz7x4] {
    color: #aaaaaa;
}

 
.dreamgrow-style[b-6fwt1uz7x4] {
    font-family: 'Comfortaa', cursive;
    letter-spacing: -0.5px;
    font-size: 1.2rem;
}

.dream-thin[b-6fwt1uz7x4] {
    font-weight: 300;
    color: #333;
}

.grow-bold[b-6fwt1uz7x4] {
    font-weight: 700;
    color: #1b6ec2;
}
/* /Components/Pages/News/SeoSemSea.razor.rz.scp.css */
 
.fact-list[b-1ogz8ilx6q] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.fact-item[b-1ogz8ilx6q] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

 
@media (min-width: 768px) {
    .fact-list[b-1ogz8ilx6q] {
        grid-template-columns: repeat(2, 1fr);
    }

    .fact-item:nth-child(5)[b-1ogz8ilx6q] {
        grid-column: span 2;
        background: #f8f9fa;
        border-left: 5px solid #1b6ec2;
    }
}

 
[data-theme="dark"] .fact-item[b-1ogz8ilx6q] {
    background: #1e1e1e;
    border-color: #333;
    color: #e0e0e0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

    [data-theme="dark"] .fact-item:nth-child(5)[b-1ogz8ilx6q] {
        background: #1a2635;
        border-left-color: #3a8ee6;
    }

    [data-theme="dark"] .fact-item h3[b-1ogz8ilx6q] {
        color: #3a8ee6;
    }
/* /Components/Pages/News/SmileSaljtips.razor.rz.scp.css */
 
.news-article-container[b-hmxvqn3y3i] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title[b-hmxvqn3y3i] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
}

 
.fact-list[b-hmxvqn3y3i] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fact-list[b-hmxvqn3y3i] {
        grid-template-columns: repeat(2, 1fr);
    }
}

 
.fact-item[b-hmxvqn3y3i] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

    .fact-item:hover[b-hmxvqn3y3i] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-color: #1b6ec2;
    }

    .fact-item h3[b-hmxvqn3y3i] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

     
    .fact-item.highlighted[b-hmxvqn3y3i] {
        background: #fcfcfc;
        border-left: 4px solid #00bc98;
    }

.full-width[b-hmxvqn3y3i] {
    grid-column: 1 / -1;
}

 
.bonus-section[b-hmxvqn3y3i] {
    margin: 2rem 0;
    padding: 2rem;
    background: #f0f7ff;
    border-radius: 12px;
    border-left: 6px solid #1b6ec2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

    .bonus-section h3[b-hmxvqn3y3i] {
        margin-top: 0;
        color: #1b6ec2;
    }

 
.project-image[b-hmxvqn3y3i] {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

 
.article-footer[b-hmxvqn3y3i] {
    text-align: center;
    margin-top: 4rem;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

 
[data-theme="dark"] .fact-item[b-hmxvqn3y3i] {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.05);
    color: #e0e0e0;
}

[data-theme="dark"] .bonus-section[b-hmxvqn3y3i] {
    background: #1a2635 !important;
    color: #e0e0e0;
}

[data-theme="dark"] .fact-item h3[b-hmxvqn3y3i] {
    color: #3a8ee6;
}
/* /Components/Pages/News/SokesDrivenSkribent.razor.rz.scp.css */
.news-article-container[b-vk30mc5mcb] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.news-image-wrapper img[b-vk30mc5mcb] {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.intro-box[b-vk30mc5mcb] {
    background: #fdfdfd;
    padding: 2rem;
    border-radius: 20px;
    border: 1px dashed #ccc;
    margin-bottom: 2rem;
    text-align: center;
}

 
.split-grid[b-vk30mc5mcb] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .split-grid[b-vk30mc5mcb] {
        grid-template-columns: repeat(2, 1fr);
    }
}

 
.paper-card[b-vk30mc5mcb] {
    background: #fff;
    padding: 2.5rem;
    border-radius: 4px;  
    box-shadow: 5px 5px 0px #1b6ec2;  
    border: 1px solid #eee;
    position: relative;
}

    .paper-card.dark-accent[b-vk30mc5mcb] {
        box-shadow: 5px 5px 0px #00bc98;
    }

.card-tag[b-vk30mc5mcb] {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #333;
    color: #fff;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.paper-card h3[b-vk30mc5mcb] {
    margin-bottom: 1.5rem;
    color: #1b6ec2;
    font-weight: 800;
}

.paper-card ul[b-vk30mc5mcb] {
    list-style: none;
    padding: 0;
}

.paper-card li[b-vk30mc5mcb] {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

    .paper-card li iconify-icon[b-vk30mc5mcb] {
        color: #00bc98;
    }

 
.skills-chips[b-vk30mc5mcb] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

    .skills-chips span[b-vk30mc5mcb] {
        background: #f0f0f0;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 0.85rem;
        color: #555;
    }

 
.contact-card[b-vk30mc5mcb] {
    background: #1b6ec2;
    color: white;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
}

.contact-links[b-vk30mc5mcb] {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

    .contact-links a[b-vk30mc5mcb] {
        color: white;
        text-decoration: none;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.1);
        padding: 10px 20px;
        border-radius: 50px;
    }

        .contact-links a:hover[b-vk30mc5mcb] {
            background: rgba(255,255,255,0.2);
        }

 
[data-theme='dark'] .paper-card[b-vk30mc5mcb] {
    background: #1e1e1e;
    border-color: #333;
}

[data-theme='dark'] .intro-box[b-vk30mc5mcb] {
    background: #1a1a1a;
    border-color: #444;
}
/* /Components/Pages/News/TackForEnGrymExjobbskvall.razor.rz.scp.css */
/* 1. Container och Typografi 
   Hanterar sidans bredd och den stora rubriken. */
.news-article-container[b-i084n0uune] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title[b-i084n0uune] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 2. Asymmetriskt Grid-system (Mobile First)
   En kolumn på mobilen, hoppar till 2fr 1fr på desktop (992px+). */
.fact-grid[b-i084n0uune] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 992px) {
    .fact-grid[b-i084n0uune] {
         
        grid-template-columns: 2fr 1fr;
    }

     
    .full-width[b-i084n0uune] {
        grid-column: 1 / -1;
    }
}

/* 3. Kort-effekter (fact-item)
   Hanterar de rundade hörnen (24px) och "lyftet" när man hovrar. */
.fact-item[b-i084n0uune] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

    .fact-item:hover[b-i084n0uune] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-color: #1b6ec2;
    }

    .fact-item h3[b-i084n0uune] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* 4. Markerade kort (Highlighted)
   Ger den gröna accentkanten som används i intron och viktiga punkter. */
    .fact-item.highlighted[b-i084n0uune] {
        background: #fcfcfc;
        border-left: 5px solid #00bc98;
    }

/* 5. Bild-styling (Project Image)
   Samma stil som i dina projekt-cases: stora runda hörn och mjuk skugga. */
.project-image[b-i084n0uune] {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto 2rem auto;
}

/* 6. Sammanfattning (Summary Box)
   Används längst ner för avslutande ord eller kontaktinfo. */
.summary-box[b-i084n0uune] {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 20px;
    background: #f0f7ff;
    border-left: 6px solid #1b6ec2;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* 7. Dark Mode stöd
   Färger som kickar in automatiskt när mörkt tema används. */
[data-theme="dark"] .fact-item[b-i084n0uune] {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.1);
    color: #e0e0e0;
}

[data-theme="dark"] .summary-box[b-i084n0uune] {
    background: #1a2635 !important;
    border-color: #1b6ec2;
}
/* /Components/Pages/News/TogglStartupTips.razor.rz.scp.css */
 
.news-article-container[b-nl42oer2zc] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title[b-nl42oer2zc] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
}

 
.fact-list[b-nl42oer2zc] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fact-list[b-nl42oer2zc] {
        grid-template-columns: repeat(2, 1fr);
    }
}

 
.fact-item[b-nl42oer2zc] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

    .fact-item:hover[b-nl42oer2zc] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-color: #1b6ec2;
    }

    .fact-item h3[b-nl42oer2zc] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

     
    .fact-item.highlighted[b-nl42oer2zc] {
        background: #fcfcfc;
        border-left: 4px solid #00bc98;
    }

 
.bonus-section[b-nl42oer2zc] {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid #1b6ec2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

    .bonus-section h3[b-nl42oer2zc] {
        margin-top: 0;
        color: #333;
    }

 
.project-image[b-nl42oer2zc] {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;
    border-radius: 16px;
}

 
[data-theme="dark"] .fact-item[b-nl42oer2zc] {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.05);
    color: #e0e0e0;
}

[data-theme="dark"] .bonus-section[b-nl42oer2zc] {
    background: #2c2100 !important;  
    color: #e0e0e0;
}

    [data-theme="dark"] .bonus-section h3[b-nl42oer2zc] {
        color: #fbc02d;
    }

[data-theme="dark"] .fact-item h3[b-nl42oer2zc] {
    color: #3a8ee6;
}

 
.btn-contact[b-nl42oer2zc] {
    transition: transform 0.2s, filter 0.2s;
}

    .btn-contact:hover[b-nl42oer2zc] {
        transform: scale(1.05);
        filter: brightness(1.1);
    }
/* /Components/Pages/News/Top5MobilaWebbplatser2018.razor.rz.scp.css */
.article-layout[b-6e19u3o2m7] {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.section-subtitle[b-6e19u3o2m7] {
    margin: 3rem 0 2rem;
    font-size: 1.8rem;
    text-align: center;
}

 
.showcase-grid[b-6e19u3o2m7] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.showcase-card[b-6e19u3o2m7] {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    border: 1px solid transparent;  
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

    .showcase-card img[b-6e19u3o2m7] {
        width: 100%;
        height: 280px;
        object-fit: cover;
        object-position: center;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

 
[data-theme='dark'] .showcase-card[b-6e19u3o2m7] {
    background-color: #1e1e1e;
    border: 1px solid #333;
     
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

    [data-theme='dark'] .showcase-card img[b-6e19u3o2m7] {
        border-bottom: 1px solid #333;
    }

    [data-theme='dark'] .showcase-card h3[b-6e19u3o2m7] {
        color: #4da3ff;
    }

    [data-theme='dark'] .showcase-card p[b-6e19u3o2m7] {
        color: #e0e0e0;
    }

     
    [data-theme='dark'] .showcase-card:hover[b-6e19u3o2m7] {
        border-color: #444;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);  
    }

.card-text[b-6e19u3o2m7] {
    padding: 25px;
}

    .card-text h3[b-6e19u3o2m7] {
        margin-top: 0;
        font-size: 1.4rem;
        color: var(--text-color);
    }


.checklist-box[b-6e19u3o2m7] {
    background: #f8f9fa;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #1b6ec2;
    margin: 50px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

[data-theme='dark'] .checklist-box[b-6e19u3o2m7] {
    background-color: #2d2d2d;
    border: 1px solid #444;
    border-left: 6px solid #1b6ec2;
    color: #ffffff;
}

    [data-theme='dark'] .checklist-box h3[b-6e19u3o2m7] {
        color: #4da3ff;
    }

a[b-6e19u3o2m7] {
    text-decoration: none;
}

 
@media (min-width: 768px) {
    .showcase-grid[b-6e19u3o2m7] {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .featured[b-6e19u3o2m7] {
        grid-column: span 2;
        max-width: 100%;
    }

        .featured img[b-6e19u3o2m7] {
            height: 350px;
        }
}
/* /Components/Pages/News/TreTipsStartaEget.razor.rz.scp.css */
.fact-list[b-0r3x5lricy] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

 
.fact-item[b-0r3x5lricy] {
    background: #ffffff;  
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    color: #333;
    transition: all 0.3s ease;
}

    .fact-item.full-width[b-0r3x5lricy] {
        grid-column: span 2;
    }

.cta-box[b-0r3x5lricy] {
    border-left: 6px solid #FFB300;
    background-color: #fffdf5;
}

 
[data-theme="dark"] .fact-item[b-0r3x5lricy] {
    background: #1e1e1e;  
    border-color: #333;
    color: #e0e0e0;  
}

    [data-theme="dark"] .fact-item.highlighted[b-0r3x5lricy] {
        background: #1a222d;
    }

[data-theme="dark"] .cta-box[b-0r3x5lricy] {
    background-color: #24211a;
    border-left-color: #FFB300;
}

.footer-brand[b-0r3x5lricy] {
    font-weight: bold;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .fact-list[b-0r3x5lricy] {
        grid-template-columns: 1fr;
    }

    .fact-item.full-width[b-0r3x5lricy] {
        grid-column: span 1;
    }
}
/* /Components/Pages/News/VadArRedCapesIT.razor.rz.scp.css */
 
.news-article-container[b-f64ikwzou1] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.news-body[b-f64ikwzou1] {
    line-height: 1.8;
    font-size: 1.1rem;
}

 
.fact-list[b-f64ikwzou1] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fact-list[b-f64ikwzou1] {
        grid-template-columns: repeat(2, 1fr);
    }
}

 
.fact-item[b-f64ikwzou1] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;  
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

    .fact-item:hover[b-f64ikwzou1] {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        border-color: #1b6ec2;
    }

    .fact-item.highlighted[b-f64ikwzou1] {
        border-left: 6px solid #00bc98;
        background: #fcfcfc;
    }

    .fact-item h3[b-f64ikwzou1] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
    }

 
.news-image-wrapper img[b-f64ikwzou1] {
    max-width: 100%;
    height: auto;
    display: block;
}

 
.bonus-section[b-f64ikwzou1] {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 24px;
    border-left: 6px solid #1b6ec2;
    background: #f0f7ff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

 
[data-theme='dark'] .fact-item[b-f64ikwzou1] {
    background: #1e1e1e;
    border-color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

    [data-theme='dark'] .fact-item.highlighted[b-f64ikwzou1] {
        background: #252525;
    }

[data-theme='dark'] .bonus-section[b-f64ikwzou1] {
    background: #1a2635;
    color: #e0e0e0;
}

[data-theme='dark'] .back-link[b-f64ikwzou1] {
    background: #333;
    color: #eee;
}

[data-theme='dark'] .main-title[b-f64ikwzou1] {
    color: #fff;
}
/* /Components/Pages/News/VadGooglarSverigePa.razor.rz.scp.css */
.minimal-search-container[b-un47igwotd] {
    padding: 20px 0;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.search-input-wrapper[b-un47igwotd] {
    display: flex;
    align-items: center;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 0 18px;
    height: 48px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(32,33,36,0.1);
}

.search-icon[b-un47igwotd] {
    color: #9aa0a6;
    font-size: 22px;
    margin-right: 12px;
}

.dynamic-search-text[b-un47igwotd] {
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #202124;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.cursor[b-un47igwotd] {
    animation: blink-b-un47igwotd 1s step-end infinite;
}

@keyframes blink-b-un47igwotd {
    from, to {
        color: transparent;
    }

    50% {
        color: #1b6ec2;
    }
}
.voice-icons[b-un47igwotd] {
    margin-left: auto;
    display: flex;
    gap: 12px;
    color: #4285F4;
    font-size: 1.3rem;
}

.ingress[b-un47igwotd] {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.fact-box[b-un47igwotd] {
    background: rgba(27, 110, 194, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin: 2.5rem 0;
    border-left: 5px solid #1b6ec2;
    transition: transform 0.3s ease;
}

.fact-header[b-un47igwotd] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.fact-icon[b-un47igwotd] {
    font-size: 1.8rem;
    color: #1b6ec2;
}

.fact-box h3[b-un47igwotd] {
    margin: 0;
    font-size: 1.3rem;
    color: #1b6ec2;
}

 
[data-theme='dark'] .fact-box[b-un47igwotd] {
    background: rgba(255, 255, 255, 0.03);
}

    [data-theme='dark'] .fact-box h3[b-un47igwotd],
    [data-theme='dark'] .fact-icon[b-un47igwotd] {
        color: #4da3ff;
    }

.info-link-box[b-un47igwotd] {
    background: rgba(27, 110, 194, 0.05);
    padding: 25px;
    border-radius: 0 12px 12px 0;
    margin-top: 3rem;
    border-left: 5px solid #1b6ec2;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

    .info-link-box iconify-icon[b-un47igwotd] {
        font-size: 2.5rem;
        color: #1b6ec2;
        flex-shrink: 0;
    }

 
[data-theme='dark'] .search-input-wrapper[b-un47igwotd] {
    background: #202124;
    border-color: #5f6368;
}

[data-theme='dark'] .dynamic-search-text[b-un47igwotd] {
    color: #e8eaed;
}

[data-theme='dark'] .info-link-box[b-un47igwotd],
[data-theme='dark'] .fact-box[b-un47igwotd] {
    background: rgba(255, 255, 255, 0.03);
}
/* /Components/Pages/News/VagaValjaVag.razor.rz.scp.css */
 
.news-article-container[b-p3c1kc5rzr] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title[b-p3c1kc5rzr] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
}

 
.fact-list[b-p3c1kc5rzr] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fact-list[b-p3c1kc5rzr] {
        grid-template-columns: repeat(2, 1fr);
    }
}

 
.fact-item[b-p3c1kc5rzr] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

    .fact-item:hover[b-p3c1kc5rzr] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-color: #1b6ec2;
    }

    .fact-item h3[b-p3c1kc5rzr] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

     
    .fact-item.highlighted[b-p3c1kc5rzr] {
        background: #fcfcfc;
        border-left: 4px solid #00bc98;
    }

.full-width[b-p3c1kc5rzr] {
    grid-column: 1 / -1;
}

 
.bonus-section[b-p3c1kc5rzr] {
    margin: 2rem 0;
    padding: 2rem;
    background: #f0f7ff;
    border-radius: 12px;
    border-left: 6px solid #1b6ec2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.project-image[b-p3c1kc5rzr] {
    width: 100%;
    max-width: 450px;  
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
     
    image-rendering: pixelated;
}
 
.btn-contact[b-p3c1kc5rzr] {
    transition: transform 0.2s, filter 0.2s;
}

    .btn-contact:hover[b-p3c1kc5rzr] {
        transform: scale(1.05);
        filter: brightness(1.1);
    }

 
[data-theme="dark"] .fact-item[b-p3c1kc5rzr] {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.05);
    color: #e0e0e0;
}

[data-theme="dark"] .bonus-section[b-p3c1kc5rzr] {
    background: #1a2635 !important;
    color: #e0e0e0;
}

[data-theme="dark"] .fact-item h3[b-p3c1kc5rzr] {
    color: #3a8ee6;
}
/* /Components/Pages/News/VillDuBorjaDinSaljkarriarIdag.razor.rz.scp.css */
 
.ingress[b-632y2h4t8e] {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.footer-tagline[b-632y2h4t8e] {
    margin-top: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.heart-icon[b-632y2h4t8e] {
    color: #ff4d6d;
    font-size: 20px;
    vertical-align: middle;
}

 
.sharpen-image[b-632y2h4t8e] {
    width: 100%;
    border-radius: 12px;
    image-rendering: pixelated;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-bottom: 2rem;
}

 
.perks-grid[b-632y2h4t8e] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 2rem 0;
}

.perk-card[b-632y2h4t8e] {
    background: rgba(27, 110, 194, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(27, 110, 194, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .perk-card:hover[b-632y2h4t8e] {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .perk-card h3[b-632y2h4t8e] {
        color: #1b6ec2;
        margin: 15px 0 10px 0;
    }

     
    .perk-card iconify-icon[b-632y2h4t8e] {
        font-size: 3.5rem;  
        color: #1b6ec2;
        display: inline-block;
    }

.fact-icon[b-632y2h4t8e] {
    font-size: 2rem;
    color: #1b6ec2;
}

.info-link-box iconify-icon[b-632y2h4t8e] {
    font-size: 2rem;
    color: #1b6ec2;
}

 
.contact-card[b-632y2h4t8e] {
    background-color: var(--bg-color);
    color: var(--text-color);
    box-shadow: 0 0 6px 6px rgba(77, 163, 255, 0.3);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    margin-top: 4rem;
}

.contact-methods[b-632y2h4t8e] {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.contact-link[b-632y2h4t8e] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4da3ff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border: 1px solid rgba(77, 163, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .contact-link:hover[b-632y2h4t8e] {
        background: rgba(77, 163, 255, 0.1);
    }

 
@media (min-width: 768px) {
    .perks-grid[b-632y2h4t8e] {
        grid-template-columns: 1fr 1fr;
    }
}

 
[data-theme='dark'] .perk-card[b-632y2h4t8e] {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

    [data-theme='dark'] .perk-card h3[b-632y2h4t8e],
    [data-theme='dark'] .fact-icon[b-632y2h4t8e] {
        color: #4da3ff;
    }
/* /Components/Pages/News/WebbhjaltarnaUppmarksammasIJP.razor.rz.scp.css */
 
.news-article-container[b-8ov8br82u0] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.news-body[b-8ov8br82u0] {
    line-height: 1.8;
    font-size: 1.1rem;
}

 
.fact-list[b-8ov8br82u0] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fact-list[b-8ov8br82u0] {
        grid-template-columns: repeat(2, 1fr);
    }
}

 
.fact-item[b-8ov8br82u0] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;  
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fact-item:hover[b-8ov8br82u0] {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #1b6ec2;
}

.fact-item.highlighted[b-8ov8br82u0] {
    border-left: 6px solid #00bc98;
    background: #fcfcfc;
}

.fact-item h3[b-8ov8br82u0] {
    margin-top: 0;
    color: #1b6ec2;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

 
.news-image-wrapper img[b-8ov8br82u0] {
    max-width: 100%;
    height: auto;
    display: block;
}

 
.bonus-section[b-8ov8br82u0] {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 24px;
    border-left: 6px solid #1b6ec2;
    background: #f0f7ff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

 
.back-link[b-8ov8br82u0] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
}

.back-link:hover[b-8ov8br82u0] {
    background: #1b6ec2;
    color: #fff;
    transform: translateX(-5px);
}

 
[data-theme='dark'] .fact-item[b-8ov8br82u0] {
    background: #1e1e1e;
    border-color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme='dark'] .fact-item.highlighted[b-8ov8br82u0] {
    background: #252525;
}

[data-theme='dark'] .bonus-section[b-8ov8br82u0] {
    background: #1a2635;
    color: #e0e0e0;
}

[data-theme='dark'] .back-link[b-8ov8br82u0] {
    background: #333;
    color: #eee;
}

[data-theme='dark'] .main-title[b-8ov8br82u0] {
    color: #fff;
}
/* /Components/Pages/News/WordpressFordelar.razor.rz.scp.css */
 
.news-article-container[b-hj931r9pjx] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title[b-hj931r9pjx] {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingress[b-hj931r9pjx] {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #444;
}

 
.comparison-grid[b-hj931r9pjx] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .comparison-grid[b-hj931r9pjx] {
        grid-template-columns: 1fr 1fr;
    }
}

.comparison-card[b-hj931r9pjx] {
    background: rgba(33, 117, 155, 0.05);  
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(33, 117, 155, 0.1);
    transition: all 0.3s ease;
}

    .comparison-card:hover[b-hj931r9pjx] {
        transform: translateY(-5px);
        background: rgba(33, 117, 155, 0.08);
    }

    .comparison-card iconify-icon[b-hj931r9pjx] {
        font-size: 2.8rem;
        color: #21759b;
        margin-bottom: 15px;
    }

    .comparison-card h3[b-hj931r9pjx] {
        margin-bottom: 10px;
        font-size: 1.25rem;
        color: #21759b;
    }

 
.highlight-box[b-hj931r9pjx] {
    padding: 2rem;
    background: #f8f9fa;
    border-left: 5px solid #1b6ec2;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

.cta-section[b-hj931r9pjx] {
    margin-top: 4rem;
    text-align: center;
    padding: 3.5rem;
    background: #1a1a1a;
    color: white;
    border-radius: 20px;
}

.contact-btn[b-hj931r9pjx] {
    display: inline-block;
    padding: 12px 35px;
    background: #1b6ec2;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: background 0.3s ease;
}

    .contact-btn:hover[b-hj931r9pjx] {
        background: #155596;
    }

.article-footer[b-hj931r9pjx] {
    text-align: center;
    margin-top: 4rem;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

 
[data-theme='dark'] .comparison-card[b-hj931r9pjx] {
    background: rgba(255, 255, 255, 0.03);
    border-color: #333;
}

[data-theme='dark'] .highlight-box[b-hj931r9pjx] {
    background: rgba(255, 255, 255, 0.05);
    color: #eee;
}
/* /Components/Pages/NotFound.razor.rz.scp.css */
.not-found-icon[b-0xsuiaygne] {
    color: var(--accent-color);
}

.btn-primary-hero[b-0xsuiaygne], .btn-outline-hero[b-0xsuiaygne] {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 12px;
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
    text-decoration: none;
}

    .btn-primary-hero:hover[b-0xsuiaygne], .btn-outline-hero:hover[b-0xsuiaygne] {
        background-color: #28936c;
        color: white;
    }

    ol li[b-0xsuiaygne]{
        text-align: left;
    }
/* /Components/Pages/PreviousProjects/ChrillezCopy.razor.rz.scp.css */
 
.news-article-container[b-awwccy5kok] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title[b-awwccy5kok] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
}

 
.fact-list[b-awwccy5kok] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fact-list[b-awwccy5kok] {
        grid-template-columns: repeat(2, 1fr);
    }
}

 
.fact-item[b-awwccy5kok] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

    .fact-item:hover[b-awwccy5kok] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-color: #1b6ec2;
    }

    .fact-item h3[b-awwccy5kok] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

     
    .fact-item.highlighted[b-awwccy5kok] {
        background: #fcfcfc;
        border-left: 4px solid #00bc98;
    }

 
.bonus-section[b-awwccy5kok] {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid #1b6ec2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

 
[data-theme="dark"] .fact-item[b-awwccy5kok] {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.05);
    color: #e0e0e0;
}

[data-theme="dark"] .bonus-section[b-awwccy5kok] {
    background: #1a2635 !important;  
    color: #e0e0e0;
}

[data-theme="dark"] .fact-item h3[b-awwccy5kok] {
    color: #3a8ee6;
}

 
.btn-contact:hover[b-awwccy5kok] {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.project-image[b-awwccy5kok] {
    width: 100%;
    max-width: 900px;  
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;  
    border-radius: 16px;  
}
/* /Components/Pages/PreviousProjects/Gaiusnu.razor.rz.scp.css */
 
.fact-list[b-emo6z1d0ti] {
    display: grid;
    grid-template-columns: 1fr;  
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .fact-list[b-emo6z1d0ti] {
        grid-template-columns: repeat(2, 1fr);  
    }
}

 
.project-card[b-emo6z1d0ti] {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
}


    .project-card:hover[b-emo6z1d0ti] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

 
.full-width[b-emo6z1d0ti] {
    grid-column: 1 / -1;
}

 
.main-title[b-emo6z1d0ti] {
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.news-body p[b-emo6z1d0ti] {
    line-height: 1.75;
    margin-bottom: 1.5rem;
    color: #444;
}

 
.news-body a[b-emo6z1d0ti] {
    color: #1b6ec2;
    text-decoration: none;
    transition: opacity 0.2s;
}

    .news-body a:hover[b-emo6z1d0ti] {
        opacity: 0.8;
        text-decoration: underline;
    }

 
[data-theme='dark'] .project-card[b-emo6z1d0ti] {
    background-color: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme='dark'] .news-body p[b-emo6z1d0ti],
[data-theme='dark'] .news-body h3[b-emo6z1d0ti] {
    color: #e0e0e0;
}

 
.windows-browser[b-emo6z1d0ti] {
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    height: 450px;
}

.win-header[b-emo6z1d0ti] {
    background: #f3f3f3;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px 0 0; 
    border-bottom: 1px solid #ddd;
}

.win-tab[b-emo6z1d0ti] {
    background: #fff;
    padding: 10.5px 25px;
    font-size: 0.8rem;
    border-radius: 0 8px 0 0;
    border: 1px solid #ddd;
    border-left: none; 
    border-bottom: none;
    display: flex;
    align-items: center;
    color: #333;
    margin-left: 0; 
}

.win-controls[b-emo6z1d0ti] {
    display: flex;
    gap: 15px;
    padding-bottom: 10px;
    color: #555;
    font-size: 1.1rem;
}

.win-close:hover[b-emo6z1d0ti] {
    color: #e81123;
}

.win-address-bar[b-emo6z1d0ti] {
    background: #fff;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
}

.win-nav-icons[b-emo6z1d0ti] {
    display: flex;
    gap: 10px;
    color: #888;
}

.win-url-box[b-emo6z1d0ti] {
    flex-grow: 1;
    background: #f0f2f5;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

 
.scroll-window[b-emo6z1d0ti] {
    height: 550px;  
    overflow-y: scroll;
    overflow-x: hidden;
    background: #fafafa;
}

    .scroll-window img[b-emo6z1d0ti] {
        width: 100%;
        height: auto;
    }

     
    .scroll-window[b-emo6z1d0ti]::-webkit-scrollbar {
        width: 10px;
    }

    .scroll-window[b-emo6z1d0ti]::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .scroll-window[b-emo6z1d0ti]::-webkit-scrollbar-thumb {
        background: #ccc;
    }

        .scroll-window[b-emo6z1d0ti]::-webkit-scrollbar-thumb:hover {
            background: #999;
        }
/* /Components/Pages/PreviousProjects/Hallbarhetsteamet.razor.rz.scp.css */
 
.news-article-container[b-90p9pm468v] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title[b-90p9pm468v] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
}

 
.fact-list[b-90p9pm468v] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fact-list[b-90p9pm468v] {
        grid-template-columns: repeat(2, 1fr);
    }
}

 
.fact-item[b-90p9pm468v] {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

    .fact-item:hover[b-90p9pm468v] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-color: #00bc98;  
    }

    .fact-item h3[b-90p9pm468v] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

     
    .fact-item.highlighted[b-90p9pm468v] {
        border-left: 5px solid #00bc98;
    }

 
.bonus-section[b-90p9pm468v] {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid #1b6ec2;
    background: #f0f7ff;
}

 
[data-theme="dark"] .fact-item[b-90p9pm468v] {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.1);
    color: #e0e0e0;
}

[data-theme="dark"] .bonus-section[b-90p9pm468v] {
    background: #1a2635;
    color: #e0e0e0;
}

 
.btn-contact[b-90p9pm468v] {
    transition: transform 0.2s ease;
}

    .btn-contact:hover[b-90p9pm468v] {
        transform: scale(1.05);
    }

.project-image[b-90p9pm468v] {
    width: 100%;
    max-width: 900px;  
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;  
    border-radius: 16px;  
}
/* /Components/Pages/PreviousProjects/Jimmyisaksson.razor.rz.scp.css */
 
.news-article-container[b-2r90cmket2] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title[b-2r90cmket2] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
}

 
.fact-list[b-2r90cmket2] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fact-list[b-2r90cmket2] {
        grid-template-columns: repeat(2, 1fr);
    }
}

 
.fact-item[b-2r90cmket2] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.fact-item:hover[b-2r90cmket2] {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #1b6ec2;
}

.fact-item h3[b-2r90cmket2] {
    margin-top: 0;
    color: #1b6ec2;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

 
.fact-item.highlighted[b-2r90cmket2] {
    background: #fcfcfc;
    border-left: 5px solid #00bc98;
}

.bonus-section[b-2r90cmket2] {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid #1b6ec2;
    background: #f0f7ff;
}

 
[data-theme="dark"] .fact-item[b-2r90cmket2] {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.1);
    color: #e0e0e0;
}

[data-theme="dark"] .bonus-section[b-2r90cmket2] {
    background: #1a2635;
    color: #e0e0e0;
}

 
.btn-contact[b-2r90cmket2] {
    transition: transform 0.2s ease;
}

.btn-contact:hover[b-2r90cmket2] {
    transform: scale(1.05);
}

.project-image[b-2r90cmket2] {
    width: 100%;
    max-width: 900px;  
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;  
    border-radius: 16px;  
}
/* /Components/Pages/PreviousProjects/Jrentse.razor.rz.scp.css */
 
.project-card[b-lf235p8uqg] {
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 2rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .project-card:hover[b-lf235p8uqg] {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        border-color: #1b6ec2;
    }

    .project-card h3[b-lf235p8uqg] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.3rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }

.main-title[b-lf235p8uqg] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

 
.fact-list[b-lf235p8uqg] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fact-list[b-lf235p8uqg] {
        grid-template-columns: repeat(2, 1fr);
    }
}

 
[data-theme='dark'] .project-card[b-lf235p8uqg] {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.05);
    color: #e0e0e0;
}

    [data-theme='dark'] .project-card h3[b-lf235p8uqg] {
        color: #3a8ee6;
    }

    [data-theme='dark'] .project-card:hover[b-lf235p8uqg] {
        border-color: #3a8ee6;
    }

 
.btn-contact:hover[b-lf235p8uqg] {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.project-image[b-lf235p8uqg] {
    width: 100%;
    max-width: 900px;  
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;  
    border-radius: 16px;  
}
/* /Components/Pages/PreviousProjects/PreviousProjects.razor.rz.scp.css */
 
.fact-list[b-fblx1gehly] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .fact-list[b-fblx1gehly] {
        grid-template-columns: repeat(2, 1fr);
    }
}


.news-article-container[b-fblx1gehly]{
    margin-top: 3em;
    margin-bottom: 4em
}
 
.project-card[b-fblx1gehly] {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .project-card:hover[b-fblx1gehly] {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

     
    .project-card.full-width[b-fblx1gehly] {
        grid-column: 1 / -1;
    }

 
.project-image-container[b-fblx1gehly] {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

    .project-image-container.large[b-fblx1gehly] {
        height: 320px;
    }

    .project-image-container img[b-fblx1gehly] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.project-card:hover .project-image-container img[b-fblx1gehly] {
    transform: scale(1.05);
}

 
.project-content[b-fblx1gehly] {
    padding: 1.5rem;
}

    .project-content h3[b-fblx1gehly] {
        margin: 0 0 0.75rem 0;
        font-size: 1.25rem;
    }

    .project-content p[b-fblx1gehly] {
        margin: 0;
        color: #666;
        line-height: 1.6;
    }

 
.project-link[b-fblx1gehly] {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

 
[data-theme='dark'] .project-card[b-fblx1gehly] {
    background-color: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

[data-theme='dark'] .project-content p[b-fblx1gehly] {
    color: #aaa;
}
/* /Components/Pages/PreviousProjects/Tolkompetens.razor.rz.scp.css */
 
.fact-list[b-5kbe51aowe] {
    display: grid;
    grid-template-columns: 1fr;  
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .fact-list[b-5kbe51aowe] {
        grid-template-columns: repeat(2, 1fr);  
    }
}

 
.project-card[b-5kbe51aowe] {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;  
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);  
    position: relative;
    display: flex;
    flex-direction: column;
}

    .project-card.full-width[b-5kbe51aowe] {
        grid-column: 1 / -1;  
    }

 
.news-body p[b-5kbe51aowe] {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.news-body a[b-5kbe51aowe] {
    color: #1b6ec2;
    text-decoration: none;
    font-weight: 600;
}

    .news-body a:hover[b-5kbe51aowe] {
        text-decoration: underline;
    }

 
@media (max-width: 768px) {
    .main-title[b-5kbe51aowe] {
        font-size: 1.8rem;
    }
}

 
.news-body blockquote[b-5kbe51aowe] {
    border-left: 4px solid #1b6ec2;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

 
[data-theme='dark'] .project-card[b-5kbe51aowe] {
    background-color: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme='dark'] .news-body p[b-5kbe51aowe],
[data-theme='dark'] .news-body li[b-5kbe51aowe],
[data-theme='dark'] .news-body h3[b-5kbe51aowe] {
    color: #e0e0e0;
}
/* /Components/Pages/PreviousProjects/ViktorDahl.razor.rz.scp.css */
.fact-list[b-cr71urd6qe] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .fact-list[b-cr71urd6qe] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.project-card[b-cr71urd6qe] {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

    .project-card.full-width[b-cr71urd6qe] {
        grid-column: 1 / -1;
    }

[data-theme='dark'] .project-card[b-cr71urd6qe] {
    background-color: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.1);
}
/* /Components/Pages/PreviousProjects/Volentos.razor.rz.scp.css */

 
.news-article-container[b-5be0n2xyfc] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title[b-5be0n2xyfc] {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
}

 
.fact-list[b-5be0n2xyfc] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fact-list[b-5be0n2xyfc] {
        grid-template-columns: repeat(2, 1fr);
    }
}

 
.fact-item[b-5be0n2xyfc] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

    .fact-item:hover[b-5be0n2xyfc] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-color: #1b6ec2;
    }

    .fact-item h3[b-5be0n2xyfc] {
        margin-top: 0;
        color: #1b6ec2;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

     
    .fact-item.highlighted[b-5be0n2xyfc] {
        background: #fcfcfc;
        border-left: 4px solid #00bc98;
    }

.bonus-section[b-5be0n2xyfc] {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid #1b6ec2;
    background: #f0f7ff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

 
[data-theme="dark"] .fact-item[b-5be0n2xyfc] {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.1);
    color: #e0e0e0;
}

    [data-theme="dark"] .fact-item h3[b-5be0n2xyfc] {
        color: #3a8ee6;
    }

[data-theme="dark"] .bonus-section[b-5be0n2xyfc] {
    background: #1a2635;
    color: #e0e0e0;
}

 
.btn-contact[b-5be0n2xyfc] {
    transition: transform 0.2s ease, filter 0.2s ease;
}

    .btn-contact:hover[b-5be0n2xyfc] {
        transform: scale(1.05);
        filter: brightness(1.1);
    }

.project-image[b-5be0n2xyfc] {
    width: 100%;
    max-width: 900px;  
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;  
    border-radius: 16px;  
}

/* /Components/Pages/PreviousProjects/Westecse.razor.rz.scp.css */
 
.fact-list[b-01gobethtw] {
    display: grid;
    grid-template-columns: 1fr;  
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .fact-list[b-01gobethtw] {
        grid-template-columns: repeat(2, 1fr);  
    }
}

 
.project-card[b-01gobethtw] {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;  
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);  
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

    .project-card:hover[b-01gobethtw] {
        transform: translateY(-5px);
    }

    .project-card.full-width[b-01gobethtw] {
        grid-column: 1 / -1;  
    }

    .project-card h3[b-01gobethtw] {
        color: #1b6ec2;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }

 
.news-body p[b-01gobethtw] {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.news-body a[b-01gobethtw] {
    color: #1b6ec2;
    text-decoration: none;
    font-weight: 600;
}

    .news-body a:hover[b-01gobethtw] {
        text-decoration: underline;
    }

 
@media (max-width: 768px) {
    .main-title[b-01gobethtw] {
        font-size: 1.8rem;
    }
}

 
.news-body blockquote[b-01gobethtw] {
    border-left: 4px solid #1b6ec2;
    padding-left: 1.5rem;
    margin: 1rem 0;
    font-style: italic;
    color: #555;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
}


 
[data-theme='dark'] .project-card[b-01gobethtw] {
    background-color: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme='dark'] .news-body p[b-01gobethtw],
[data-theme='dark'] .news-body li[b-01gobethtw],
[data-theme='dark'] .news-body h3[b-01gobethtw] {
    color: #e0e0e0;
}

[data-theme='dark'] .news-body blockquote[b-01gobethtw] {
    background: #252525;
    color: #bbb;
}

[data-theme='dark'] .back-link[b-01gobethtw] {
    background: #333;
    color: #eee;
}

.project-image[b-01gobethtw] {
    width: 200%;
    max-width: 200%;
    box-sizing: border-box;  
    background: #ffffff;
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 auto 2rem auto;
}

    .project-image img[b-01gobethtw] {
        height: auto;
        display: block;
        border-radius: 16px;
    }
/* /Components/Pages/WebHeroes.razor.rz.scp.css */
 

.who-we-are-section[b-qe4yt4vvn8] {
    padding: 40px 15px;  
}

.main-title[b-qe4yt4vvn8] {
    font-size: 2.5rem;  
    letter-spacing: 2px;
    color: var(--colortitle, #222);
    text-align: center;
    margin-bottom: 20px;
}

    .main-title span[b-qe4yt4vvn8] {
        font-weight: 900;
    }

.section-title[b-qe4yt4vvn8] {
    font-size: 1.8rem;  
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--colortitle, #222);
    text-align: center;
    margin-bottom: 30px;
}

.fact-list[b-qe4yt4vvn8] {
    display: grid;
    grid-template-columns: 1fr;  
    gap: 1.25rem;
    margin: 2rem 0;
}

.fact-item[b-qe4yt4vvn8] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

    .fact-item h3[b-qe4yt4vvn8] {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        color: #111;
    }

        .fact-item h3 iconify-icon[b-qe4yt4vvn8] {
            font-size: 1.3rem;
        }

    .fact-item.highlighted[b-qe4yt4vvn8] {
        border-left: 6px solid #1b6ec2;
    }

 
@media (min-width: 768px) {
    .who-we-are-section[b-qe4yt4vvn8] {
        padding: 60px 0;
    }

    .section-title[b-qe4yt4vvn8] {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }

    .fact-list[b-qe4yt4vvn8] {
        grid-template-columns: repeat(2, 1fr);  
        gap: 1.5rem;
    }

    .fact-item[b-qe4yt4vvn8] {
        padding: 1.5rem;
    }

        .fact-item.full-width[b-qe4yt4vvn8] {
            grid-column: span 2;
        }

        .fact-item:hover[b-qe4yt4vvn8] {
            transform: translateY(-4px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            border-color: #1b6ec2;
        }
}

 
[data-theme='dark'] .fact-item[b-qe4yt4vvn8] {
    background-color: #1e1e1e;
    border-color: #333;
    color: #e0e0e0;
}

    [data-theme='dark'] .fact-item h3[b-qe4yt4vvn8] {
        color: #fff;
    }

    [data-theme='dark'] .fact-item[style*="background-color: #f8f9fa"][b-qe4yt4vvn8] {
        background-color: #252525 !important;
        border-color: #444;
    }
/* /Components/Pages/WhoAreWe.razor.rz.scp.css */
.who-are-we-section[b-ni0tx3plaj] {
    padding: 80px 0;
}

.hero-subtitle[b-ni0tx3plaj] {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto;
    color: var(--text-color);
    opacity: 0.85;
}

 
.team-card[b-ni0tx3plaj] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: var(--bg-color);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 8px 8px 10px rgba(0,0,0,0.05), 0px 0px 10px rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.member-image-wrapper[b-ni0tx3plaj] {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 18px;
    max-width: 300px;
}

    .member-image-wrapper img[b-ni0tx3plaj] {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background-color: #f0f0f0;
        border-radius: 18px;
    }    
    .role-tag[b-ni0tx3plaj] {
    display: inline-block;
    padding: 4px 12px;
    background: #1b6ec215;
    color: #1b6ec2;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

        .member-bio[b-ni0tx3plaj] {
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .member-quote[b-ni0tx3plaj] {
            font-style: italic;
            border-left: 3px solid #1b6ec2;
            padding-left: 20px;
            color: var(--text-color);
            opacity: 0.9;
            margin: 0;
        }

.team-footer[b-ni0tx3plaj] {
    text-align: center;
    margin-top: 3rem;
}

.aboutButton[b-ni0tx3plaj] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-color);
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

    .aboutButton:hover[b-ni0tx3plaj] {
        transform: translateY(-3px); 
        box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        background: #ffffff;
    }

/* Specifik färg för LinkedIn vid hover */
.linkedin-btn:hover[b-ni0tx3plaj] {
    border-color: #0077b5;
    color: #0077b5;
}

/* Specifik färg för Mail vid hover */
.email-btn:hover[b-ni0tx3plaj] {
    border-color: #1b6ec2;
    color: #1b6ec2;
}

        @media (max-width: 768px) {
            .team-card[b-ni0tx3plaj] {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .member-quote[b-ni0tx3plaj] {
                border-left: none;
                border-top: 3px solid #1b6ec2;
                padding: 20px 0 0 0;
            }
        }
