.richard-otherhero {
    padding: 50px 0;
    background: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.richard-otherhero.visible {
    opacity: 1;
    transform: translateY(0);
}

.richard-otherhero-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.richard-otherhero-content {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    transition-delay: 0.3s;
}

.richard-otherhero.visible .richard-otherhero-content {
    opacity: 1;
    transform: translateY(0);
}

.richard-otherhero-image {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    transition-delay: 0.5s;
}

.richard-otherhero.visible .richard-otherhero-image {
    opacity: 1;
    transform: translateY(0);
}

.richard-breadcrumbs {
    margin-bottom: 20px;
    gap: 10px;
}

.richard-breadcrumb-item {
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.richard-breadcrumb-item.current {
    color: #000;
}

.richard-otherhero-image-container {
    width: 100%;
    max-height: 530px;
    overflow: hidden;
}

.richard-otherhero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Nieuwe items styling */
.richard-otherhero-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.richard-otherhero-item {
    flex: 1;
}

.richard-otherhero-item-title {
    font-weight: bold;
    color: #45AC34;
    margin: 0 0 10px 0;
    font-size: 20px;
}

.richard-otherhero-item-description {
    font-size: 16px;
    color: #000;
    margin: 0;
}

@media (max-width: 768px) {
    .richard-otherhero-row {
        flex-direction: column;
    }
    
    .richard-otherhero-image {
        width: 100%;
    }

    .richard-otherhero-item {
        flex: 0 0 100%;
    }
} 
@media (max-width: 1980px) {
    .richard-otherhero-image-container {
        max-height: 400px;
    }
    .richard-otherhero{
        padding: 0px;
    }
}