/**
 * View More Button Styles
 */

.view-more-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    text-decoration: none;
    transition: all 0.3s;
}

.view-more-btn:hover {
    transform: translateX(5px);
}

.view-more-btn-text {
    color: #E09F5D;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 0;
}

.view-more-btn svg {
    display: block;
}
