.ragunda-blog-kort {
    background: #1d1d1d;
    padding: 80px 0;
    position: relative;
    border-radius: 12px;
}

.ragunda-blog-kort__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.ragunda-blog-kort__posts {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}



.ragunda-blog-kort__post {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    transition: all 0.3s ease;
}

.ragunda-blog-kort__post:last-child {
    padding-bottom: 0;
}

.ragunda-blog-kort__post:first-child {
    padding-top: 0;
}

.ragunda-blog-kort__post:hover {
    transform: translateY(-2px);
}

.ragunda-blog-kort__post-image {
    flex: 0 0 400px;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ragunda-blog-kort__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ragunda-blog-kort__post:hover .ragunda-blog-kort__image {
    transform: scale(1.05);
}

.ragunda-blog-kort__placeholder {
    width: 100%;
    height: 100%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 2rem;
}

.ragunda-blog-kort__post-content {
    flex: 1;
    display: flex;
    flex-direction: row;
    min-width: 0;
    justify-content: space-between;
    align-items: flex-start;
}

.ragunda-blog-kort__content-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: center;
}

.ragunda-blog-kort__category {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffc000;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.ragunda-blog-kort__post-title {
    font-family: 'Gotkin', var(--ragunda-font, Arial, sans-serif);
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    line-height: 1.6;
    color: #fffbe6;
}

.ragunda-blog-kort__excerpt {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ragunda-blog-kort__button {
    display: inline-block;
    border: 2px solid #ffc000;
    border-radius: 10px;
    padding: 0.6em 1.4em;
    background: #ffc000;
    color: #1d1d1d;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
    width: auto;
    margin-top: 0;
    box-shadow: none;
    text-align: left;
    align-self: flex-start;
}

.ragunda-blog-kort__button:hover,
.ragunda-blog-kort__button:focus {
    background: #1d1d1d;
    color: #ffc000;
    border-color: #ffc000;
    text-decoration: none !important;
    box-shadow: none;
}

.ragunda-blog-kort__button:after {
    display: none !important;
}

.ragunda-blog-kort__view-all {
    text-align: center;
    margin-top: 3rem;
}

.ragunda-blog-kort__view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #fffbe6;
    text-decoration: none !important;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.ragunda-blog-kort__view-all-link:hover {
    color: #ffc000;
    text-decoration: none !important;
}

.ragunda-blog-kort__view-all-icon {
    width: 40px;
    height: 40px;
    background: #ffc000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1d;
    border: 2px solid #1d1d1d;
    transition: all 0.3s ease;
}

.ragunda-blog-kort__view-all-link:hover .ragunda-blog-kort__view-all-icon {
    background: #1d1d1d;
    color: #ffc000;
    transform: translateX(4px);
}

.ragunda-blog-kort__no-posts {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-family: 'Inter', Arial, sans-serif;
}

@media (max-width: 768px) {
    .ragunda-blog-kort {
        border-radius: 0;
        margin-left: -2rem;
        margin-right: -2rem;
        width: calc(100% + 4rem);
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ragunda-blog-kort__container {
        padding: 0 1rem;
        width: 100%;
        max-width: none;
    }

    .ragunda-blog-kort__post {
        flex-direction: column;
        gap: 1rem;
    }

    .ragunda-blog-kort__post-image {
        flex: none;
        width: 100%;
        height: 200px;
    }

    .ragunda-blog-kort__title {
        font-size: 2rem;
    }

    .ragunda-blog-kort__posts {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ragunda-blog-kort {
        padding: 40px 0;
        border-radius: 0;
        margin-left: -2rem;
        margin-right: -2rem;
        width: calc(100% + 4rem);
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ragunda-blog-kort__container {
        padding: 0 1rem;
        width: 100%;
        max-width: none;
    }

    .ragunda-blog-kort__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .ragunda-blog-kort__posts {
        padding: 1.5rem;
    }

    .ragunda-blog-kort__post {
        gap: 0.8rem;
    }

    .ragunda-blog-kort__post-image {
        height: 180px;
    }

    .ragunda-blog-kort__post-title {
        font-size: 16px;
    }

    .ragunda-blog-kort__post-excerpt {
        font-size: 13px;
        line-height: 1.4;
    }

    .ragunda-blog-kort__read-more {
        font-size: 13px;
        padding: 0.4em 0.8em;
    }
} 