/* Layout 4 profile boxes styling */
.layout-4 .profile-boxes-wrapper .dg-profile-boxes {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .layout-4 .profile-boxes-wrapper .dg-profile-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

.layout-4 .profile-box-item {
    background-color: white;
    border-radius: 0.375rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.layout-4 .profile-box-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
