.oaspeti {
    width: calc(100% / 3 * 2);
}

.oaspeti .poze-oaspeti {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.oaspeti .oaspeti-wrapper {
    width: calc(100% / 5);
    height: 100%;
    align-items: center;
    margin-top: var(--spacing-small);
    margin-bottom: var(--spacing-medium);
    padding: var(--spacing-xs);
}

.oaspeti a {
    display: flex;
    flex-direction: column;
}

.oaspeti a:hover {
    opacity: 0.7;
    transition: .3s ease;
}

.oaspeti img {
    border-radius: 6px;
    box-shadow: 0 16px 38px -12px rgb(0 0 0 / 56%), 
                0 4px 25px 0 rgb(0 0 0 / 12%), 
                0 8px 10px -5px rgb(0 0 0 / 20%);
    width: 100%;
    height: auto;
}

.oaspeti h6 {
    font-size: var(--fs-medium);
    color: var(--text-primary);
    text-align: center;
    line-height: 1.4;
    margin-top: var(--spacing-small);
    margin-bottom: var(--spacing-medium);
}

@media (max-width:768px) {
    .oaspeti {
        width: 100%;
    }
}

@media (max-width:480px) {
    .oaspeti .oaspeti-wrapper {
        width: calc(100% / 3);
    }
}