.mrhost-blogg-wrapper {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* =========================
   Grid
========================= */

.blogg-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* =========================
   Blog card
========================= */

.blogg-item {
    background-color: #ffffff;
    border: 1px solid #d5dfff;
    border-radius: 8px;
    padding: 16px;
    font-family: "DM Sans", sans-serif;
    cursor: pointer;
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.blogg-item:hover {
    border-color: #7253ED;
}

.blogg-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* =========================
   Date
========================= */

.blogg-date {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

/* =========================
   Title
========================= */

.blogg-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1D1E20;
}

/* =========================
   Text
========================= */

.blogg-item p {
    font-size: 14px;
    color: #333;
    line-height: 1.4em;
    margin-bottom: 12px;
    flex-grow: 1;
}

/* =========================
   Button
========================= */

.blogg-button {
    align-self: flex-start;
    background-color: #673DE6;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 22px;
    color: #fff;
    display: inline-block;
    transition: 350ms;
}

.blogg-button:hover {
    background-color: #5025D1;
}

/* =========================
   Loader
========================= */

.blogg-loader {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #673DE6;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =========================
   Mobile
========================= */

@media (max-width:768px){

    .blogg-grid {
        grid-template-columns: 1fr;
        margin-top: 15px;
    }

}

/* =========================
   Button Spinner
========================= */

.btn-spinner {

    width:18px;
    height:18px;

    border:3px solid rgba(255,255,255,0.4);
    border-top:3px solid #fff;

    border-radius:50%;

    display:inline-block;

    animation:spin .8s linear infinite;

}

/* =========================
   No Data Message
========================= */

.no-data-message {
    grid-column: 1 / -1;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    padding: 60px 0;
}

/* mobil vänster */
@media (max-width:768px) {
    .no-data-message {
        text-align: left;
    }
}

/* =========================
   Load More Button
========================= */

.blogg-load-more-wrapper{
    grid-column: 1 / -1;
    display:flex;
    justify-content:center;
    margin-top:20px;
}

.blogg-load-more{
    margin-top: 30px;
    background-color:#673DE6;
    font-family:"DM Sans",sans-serif;
    font-size:16px;
    font-weight:600;
    border-radius:8px;
    padding:12px 30px;
    color:#fff;
    border:none;
    cursor:pointer;
    transition:350ms;
}

.blogg-load-more:hover{
    background-color:#5025D1;
}

.blogg-load-more-wrapper {
    display:none;
}